iperf: Meaning of columns in UDP measurement

Viewed 12

I call iperf automaticly in a python script for the server and the client and save the output in a csv file:

server.cmd('iperf -s -p 5202 -u -t 50 -y C > result/iperf_server_output.csv') client.cmd('iperf -c 10.1.1.2 -p 5202 -i 1 -u -b 100m -t 20 -y C > result/iperf_client_output.csv')

result/iperf_server_output.csv stays empty, and result/iperf_client_output.csv looks like this:

20220921142402,10.1.1.1,55922,10.1.1.2,5202,1,0.0-1.0,12502350,100018800,0.000,0,8505,0.000,0 20220921142403,10.1.1.1,55922,10.1.1.2,5202,1,1.0-2.0,12499410,99995280,0.000,0,8503,0.000,0 20220921142404,10.1.1.1,55922,10.1.1.2,5202,1,2.0-3.0,12499410,99995280,0.000,0,8503,0.000,0 20220921142405,10.1.1.1,55922,10.1.1.2,5202,1,3.0-4.0,12500880,100007040,0.000,0,8504,0.000,0 20220921142406,10.1.1.1,55922,10.1.1.2,5202,1,4.0-5.0,12499410,99995280,0.000,0,8503,0.000,0 20220921142407,10.1.1.1,55922,10.1.1.2,5202,1,5.0-6.0,12499410,99995280,0.000,0,8503,0.000,0 20220921142408,10.1.1.1,55922,10.1.1.2,5202,1,6.0-7.0,12502350,100018800,0.000,0,8505,0.000,0 20220921142409,10.1.1.1,55922,10.1.1.2,5202,1,7.0-8.0,12497940,99983520,0.000,0,8502,0.000,0 20220921142410,10.1.1.1,55922,10.1.1.2,5202,1,8.0-9.0,12500880,100007040,0.000,0,8504,0.000,0 20220921142411,10.1.1.1,55922,10.1.1.2,5202,1,9.0-10.0,12500880,100007040,0.000,0,8504,0.000,0 20220921142412,10.1.1.1,55922,10.1.1.2,5202,1,10.0-11.0,12499410,99995280,0.000,0,8503,0.000,0 20220921142413,10.1.1.1,55922,10.1.1.2,5202,1,11.0-12.0,12499410,99995280,0.000,0,8503,0.000,0 20220921142414,10.1.1.1,55922,10.1.1.2,5202,1,12.0-13.0,12499410,99995280,0.000,0,8503,0.000,0 20220921142415,10.1.1.1,55922,10.1.1.2,5202,1,13.0-14.0,12499410,99995280,0.000,0,8503,0.000,0 20220921142416,10.1.1.1,55922,10.1.1.2,5202,1,14.0-15.0,12500880,100007040,0.000,0,8504,0.000,0 20220921142417,10.1.1.1,55922,10.1.1.2,5202,1,15.0-16.0,12500880,100007040,0.000,0,8504,0.000,0 20220921142418,10.1.1.1,55922,10.1.1.2,5202,1,16.0-17.0,12499410,99995280,0.000,0,8503,0.000,0 20220921142419,10.1.1.1,55922,10.1.1.2,5202,1,17.0-18.0,12499410,99995280,0.000,0,8503,0.000,0 20220921142420,10.1.1.1,55922,10.1.1.2,5202,1,18.0-19.0,12500880,100007040,0.000,0,8504,0.000,0 20220921142421,10.1.1.1,55922,10.1.1.2,5202,1,19.0-20.0,12500880,100007040,0.000,0,8504,0.000,0 20220921142421,10.1.1.1,55922,10.1.1.2,5202,1,0.0-20.0,250005840,100001255,0.000,0,-1,-0.000,0

Now I want to plot the Bitrate with pandas, but I don't know what each column means.

0 Answers
Related