Anyone have any experience that can assist? Im sure its simple but im a bit of a noob with this..
Run one copy of iperf as server or daemon.Cable Guy wrote:Hey, im trying to do some low level network testing using to raspberry Pi 2's to test wifi throughput over the lan. I am attempting to use Iperf but cant seem to get them to connect to each other.
Anyone have any experience that can assist? Im sure its simple but im a bit of a noob with this..
Code: Select all
pi@raspberrypi ~ $ hostname -I
192.168.1.17
pi@raspberrypi ~ $ iperf -s
------------------------------------------------------------
Server listening on TCP port 5001
TCP window size: 85.3 KByte (default)
------------------------------------------------------------
[ 4] local 192.168.1.17 port 5001 connected with 192.168.1.12 port 56454
[ ID] Interval Transfer Bandwidth
[ 4] 0.0-10.0 sec 112 MBytes 93.9 Mbits/sec
Code: Select all
pi@RPi2B ~/text2speech $ iperf -c 192.168.1.17 ## note the target is the IP address of the 'server' node
------------------------------------------------------------
Client connecting to 192.168.1.17, TCP port 5001
TCP window size: 43.8 KByte (default)
------------------------------------------------------------
[ 3] local 192.168.1.12 port 56454 connected with 192.168.1.17 port 5001
[ ID] Interval Transfer Bandwidth
[ 3] 0.0-10.0 sec 112 MBytes 94.2 Mbits/sec
pi@RPi2B ~/text2speech $