The list of network interfaces where tcpdump can capture traffic:
1 |
tcpdump -D |
Capture traffic on eth0:
1 |
tcpdump -i eth0 |
Capture traffic on all available network interfaces (does not work in promiscuous mode. Linux kernel 2.2 and up is needed):
1 |
tcpdump -i any |