...
Speed test:
Start an iperf UDP server: # iperf –u –p <listening port> –s # iperf –u –p 80 –s
Then on the client: # iperf –u –p <listening port> –s # iperf –u -p 80 –c 10.1.0.3 –b 200m
Run an iperf UDP stream with at specific rate (in Mbps):
Code Block | ||
---|---|---|
| ||
# iperf –u –c-p <server<listening @>port> -p–c <server port>IP@> -b <X>m -d # iperf –u –p <listening port> –s -u : UDP packet , best for bandwitdh test -c it's the Client side -s it's the Server side -p destination port number on the client side ( or listening port number on the server side) -b for bandwidth ( default 1m) -d for dualtest ( bi-directional) >> becarefull at the ID number in the report |
Start an iperf UDP server: # iperf –u –p <listening port> –s # iperf –u –p 80 –s
Then on the client: # iperf –u –p <listening port> –s # iperf –u -p 80 –c 10.1.0.3 –b 200m
Single test: Client to Server
...