Posts Tagged ‘tcpdump’

To view incoming and outgoing packets on port 80
tcpdump -i eth0 tcp port 80
To view outbound traffic over port 80
tcpdump -i eth1 tcp dst port 80 and src host 192.168.0.10
To suppress verbose output, you just want to view source/destination
tcpdump -q -i eth1 tcp dst port 80 and src host 192.168.0.10

Tuesday, October 12th, 2010 at 13:13 | 1 comment
Categories: Uncategorized
Tags: ,
TOP