linux网络监控常见命令

时间:2020-12-29 16:10:58
1. iftop -i eth1 
   查看网卡inteface上流量


2. iftop -P -n -N -i eth1
   查看某端口的流量


3. netstat -ap | grep 8080
   查看8080端口占用情况


4. 网络带宽测速
  UDP测速:服务器端:iperf -u -s ;客户端 iperf -u -c 192.168.1.1 -b 100M 
  TCP测速:服务器端:iperf    -s ;客户端 iperf    -c 192.168.1.1 -b 100M