Wireshark
- http://packetlife.net/library/cheat-sheets/
- Wireshark 工具
- How I use Wireshark https://news.ycombinator.com/item?id=17344342
- https://www.wireshark.org/tools/
Filter
- Display
- Capture
dst host <name/ip>
src host <name/ip>
host <name/ip>
dst port <port>
src port <port>
port <port>
icmp
udp
tcp
rtsp
rtp
and &&
or ||
not !
Remote
- https://www.wireshark.org/docs/man-pages/sshdump.html
- Provide interfaces to capture from a remote host through SSH using a remote capture binary.
- tshark
ssh [email protected] tcpdump -U -s0 'not port 22' -i eth0 -w - | wireshark -k -i -
mkfifo /tmp/remote
wireshark -k -i /tmp/remote
ssh root@firewall "tcpdump -s 0 -U -n -w - -i eth0 not port 22" > /tmp/remote