Tag Archives: LINUX

Capture raw traffic using tcpdump

tcpdump is a powerful command-line packet analyzer, its an excellent way to capture raw traffic and then run it through various tools later. Example to use tcpdump &  exclude my ssh session traffic. tcpdump -i eth0  -s 1500 port not 22 Example to skip additional ports including ssh port: tcpdump -i eth0  -s 1500 port… Read More »