Created
February 19, 2024 19:31
-
-
Save BlackthornYugen/04276636e8ccd9c83d254391def7be39 to your computer and use it in GitHub Desktop.
capture jellyfin http
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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