Server side:
Build:
12345wget ftp://ftp.netperf.org/netperf/netperf-2.7.0.tar.gztar xf netperf-2.7.0.tar.gzcd netperf-2.7.0./configure --build=aarch64-unknown-linux-gunmake && make installInit:
1234ifconfig eth2 <server ip>ethtool -C eth2 rx-usecs 30 rx-frames 30 tx-usecs 30 tx-frames 30service iptables stopservice network-manager stopRun:
1Netserver
Client side:
Build:
12345wget ftp://ftp.netperf.org/netperf/netperf-2.7.0.tar.gztar xf netperf-2.7.0.tar.gzcd netperf-2.7.0./configure --build=aarch64-unknown-linux-gunmake && make installInit:
1234ifconfig eth2 <client ip>ethtool -C eth2 rx-usecs 30 rx-frames 30 tx-usecs 30 tx-frames 30service iptables stopservice network-manager stopRun:
1234netperf -t TCP_STREAM -H <server ip> -l 60 --m 2048netperf -t TCP_RR -H <server ip> -l 60 --r 64,1024netperf -t TCP_CRR -H <server ip> -l 60 --r 64,1024netperf -t UDP_RR -H <server ip> -l 60 --r 64,1024