pci查询+iperf3

$ lspci -mn | grep 8086

  • Service iperf命令:

    • iperf3 -s -i 1 -p 16001

  • Client iperf命令:

    • tcp带宽测试:iperf3 -c 6.6.6.8 -i 1 -p 16001 -l 64k -t 30

    • udp带宽测试:iperf3 -c 6.6.6.8 -i 1 -p 16001 -l 65000 -t 30 -u -b 25g

    • tcp pps测试:iperf3 -c 6.6.6.8 -i 1 -p 16001 -l 64 -t 30

    • Udp pps测试:iperf3 -c 6.6.6.8 -i 1 -p 16001 -l 64 -t 30 -u -b 25g

你可能感兴趣的:(java,前端,服务器)