本文主要是介绍iperf bind,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
同時在eth0(ethernet) and eth1(moca)上面執行iperf
device 1:
ifconfig eth0 192.168.100.101
ifconfig eth1 192.168.200.101
device 2:
ifconfig eth0 192.168.100.102
ifconfig eth0 192.168.200.102
device1(server)
iperf -s -i 10 -B 192.168.100.101 -p 7000 &
iperf -s -i 10 -B 192.168.200.101 -p 7500 &
device2(client)
iperf -c 192.168.100.101 -r -i 15 -t 99 -p 7000 &
iperf -c 192.168.200.101 -r -i 15 -t 99 -p 7500 &
这篇关于iperf bind的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!