tcpdumpの基本的な使用方法はこちら ## 名前解決をしない tcpdump -n src 192.168.100.1 and dst 192.168.100.2 ## インターフェイスを指定する tcpdump -i eth1 ## 特定のホストを除外する tcpdump -i eth0 not host 192.168.100.5 ## 複数ホストを除外する tcpdump -i eth0 not host 192.168.100.5 and not host 192.168.100.6 ## ネットワークを指定する tcpdump net 192.168.100.0/24 ## ネットワークを除外する tcpdump not net 192.168.100.0/24 ## 特定ポートを指定する tcpdump -i eth0 not host 192.168.100.5 and