3.11.5 Iperf Demo

This application demonstrates how a user can run iperf application on WINC1500 device in Bypass mode.

  1. Configure the wifi parameters using "wifi set" command.

    wifi_config
  2. Enter the command "appdemo start 1" to set the DUT(Device Under Test) in station mode. It will connect to the wifi network and the IP address will be displayed on the terminal.

    iperf_connected
  3. The user should enter the iperf commands in the terminal window (for DUT) and in the iperf application which is available in the PC.

    ProtocolPCDUTCommand on PCCommand on DUT
    UDPClientServeriperf -u -c <Server_IP_Address> -t <time_peroid> -i <time_interval> -u -b <bandwidth>, e.g.: iperf -u -c 192.168.43.27 -b 20M -i 1 -t 10iperf -s -u -i <time_interval>, e.g.: iperf -s -u -i 1
    UDPServerClientiperf -s -u -i <time_interval>, e.g.: iperf -s -u -i 1iperf -u -c <Server_IP_Address> -t <time_peroid> -i <time_interval> -u -b <bandwidth>, e.g.: iperf -u -c 192.168.43.87 -b 20M -i 1 -t 10
    TCPClientServeriperf -c <Server_IP_Address> -t <time_peroid> -i <time_interval> e.g: iperf -c 192.168.43.27 -i 1 -t 10iperf -s -i <time_interval>, e.g: iperf -s -i 1
    TCPServerClientiperf -s -i <time_interval>, e.g: iperf -s -i 1iperf -c <Server_IP_Address> -t <time_peroid> -x <bandwidth>, e.g: iperf -c 192.168.43.87 -x 10M -t 10