Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 417 Bytes

File metadata and controls

21 lines (14 loc) · 417 Bytes

Networking

Wireshark

Capture for 30 seconds

sudo tshark -i eth0 -a duration:30 -w dump.ncap

Capture only port 9443, treat the traffic as http, and filter the source host

tshark -i eth0 -d tcp.port==9443,http -f "src host x.x.x.x" -w dump.ncap

Capture only this host (on either end, as sender or receiver)

tshark -i eth0 -f "host x.x.x.x" -w dump.ncap