在使用iftop命令時,可以通過指定過濾器來過濾網絡流量。過濾器的格式為expression
,可以根據源IP地址、目標IP地址、端口號等信息來過濾。
以下是一些常用的過濾器示例:
sudo iftop -i eth0 -f "src host 192.168.1.10"
sudo iftop -i eth0 -f "dst host 192.168.1.20"
sudo iftop -i eth0 -f "src port 80"
sudo iftop -i eth0 -f "dst port 443"
sudo iftop -i eth0 -f "src host 192.168.1.30 and dst port 22"
通過設置不同的過濾器,可以根據自己的需求來查看特定的網絡流量信息。