Skip to content

Instantly share code, notes, and snippets.

@BlackthornYugen
Created February 19, 2024 19:31
Show Gist options
  • Save BlackthornYugen/04276636e8ccd9c83d254391def7be39 to your computer and use it in GitHub Desktop.
Save BlackthornYugen/04276636e8ccd9c83d254391def7be39 to your computer and use it in GitHub Desktop.
capture jellyfin http
docker run --interactive --detach --name watch-jellyfin --network container:jellyfin alpine /bin/sh -c "
apk add --no-cache tcpdump;
tcpdump -i any -A 'tcp port (8920 or 8096) and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' --snapshot-length=1024
"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment