I am using iperf for testing ethernet performance. It has several capabilities which I am using:
measuring maximal bandwidth
for example with
iperf -c 192.168.0.1
statistics of packet loss for a given bandwidth,
for example with
iperf -uVZc 192.168.0.1 -b400m
I am surprised to see that the bandwidth it measures for a link is a bandwidth which includes loss packets (if I run the second example on the same bandwidth which it gives as maximal bandwidth, then I get packet loss of 30%)
So, I am not sure, whct is the actual meaning of bandwidth in iperf terms ?
Thank you.