Useful tcpdump command to see traffic on a network

A useful tcpdump command is the following:

tcpdump port 554 -xX -s 0 -l | tee tcpdump.out

When you want to see the specific messages of a protocol, in this case RTSP running on default port 554, this command shows you the output in “human” readable form.

The -s 0 shows the whole packet. The -x also shows the packet in hex.

Comments are closed.