Greg Latuszek
Greg Latuszek
### Why we need it? If we face interactive command like openssl: https://www.openssl.org/docs/manmaster/man1/openssl.html https://wiki.openssl.org/index.php/Command_Line_Utilities (search "interactive mode") then we may end up with something that may be started in multiple...
iperf may be run in simultaneous downlink/uplink mode using `--dualtest` option In such case client side starts iperf server process as well and server side establishes second client socket. If...
Currently iperf just returns parsed output as dict Would be great to have API like ```python throughput =iperf.final_bandwith(unit="Mbits/sec") transfered =iperf.total_transfer(unit="MBytes") ``` It should take last record of report (the one...
let's assume you have 2 unix devices. You take iperf command ```python svr = unix1.get_cmd("iperf", cmd_params={'options': '-s -i 1') run_client = unix2.get_cmd("iperf", cmd_params={'options': '-c {} -i 1 -t 10'.format(server_ip)) ```...