. All rights reserved. */ /* ========================================================================== */ /* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* ========================================================================== */ ]]> Describe your package here Describe your package requirements here Currently there are no FAQ items provided. iperf 1.7.0 iperf: Server yes true iperf Run iperf in client or server mode.
Diagnostics
iperf.xml
Client /pkg_edit.php?xml=iperf.xml&id=0 Server /pkg_edit.php?xml=iperfserver.xml&id=0 Port port Enter the port that iperf will listen for connections on. (default 5001) input Protocol protocol Choose whether to use TCP or UDP here. (default is TCP) select Output format format Choose to display output in bits/sec or bytes/sec. (default is bits) select Interval interval Enter the desired interval between bandwidth, jitter and loss reports here. (default is 0 for no periodic reports) input Buffer length length Enter the length of buffers to read or write here. (default 8KB for TCP, 1470B for UDP) input Socket buffer size window Enter the desired socket buffer size, if needed. input mwexec("killall iperf"); $iperf_options = ""; if($_POST['protocol'] == "udp") $iperf_options .= " -u"; if($_POST['format'] == "bytes") $iperf_options .= " -f A"; if($_POST['interval'] != "") $iperf_options .= " -i " . escapeshellarg($_POST['interval']); if($_POST['length'] != "") $iperf_options .= " -l " . escapeshellarg($_POST['length']); if($_POST['window'] != "") $iperf_options .= " -w " . escapeshellarg($_POST['window']); if($_POST['port'] != "") $iperf_options .= " -p " . escapeshellarg($_POST['port']); $iperf_options .= " -s"; mwexec_bg("/usr/local/bin/iperf" . $iperf_options);