From 55eddd7accf2c5f9b0f52b22a010c4c4b7c130d1 Mon Sep 17 00:00:00 2001 From: Bill Marquette Date: Fri, 6 Feb 2009 19:18:00 -0600 Subject: mv packages to config dir to match web layout --- config/iperf.xml | 161 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 161 insertions(+) create mode 100644 config/iperf.xml (limited to 'config/iperf.xml') diff --git a/config/iperf.xml b/config/iperf.xml new file mode 100644 index 00000000..29469d33 --- /dev/null +++ b/config/iperf.xml @@ -0,0 +1,161 @@ + + + + + + . + 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: Client + yes + true + + iperf + Run iperf in client or server mode. +
Diagnostics
+ iperf.xml +
+ + iperf + iperf + + + + Client + /pkg_edit.php?xml=iperf.xml + + + + Server + /pkg_edit.php?xml=iperfserver.xml + + + + http://www.pfsense.com/packages/config/iperfserver.xml + + + + Server + hostname + Enter the IP address or hostname that iperf will connect to. + input + + + Port + port + Enter the port that iperf will connect to. (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 bize + window + Enter the desired socket buffer size, if needed. + input + + + UDP Bandwidth + udpbandwidth + Enter the UDP bandwidth to send at in bits/sec. (default is 1Mbit/sec) + 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 {$_POST['interval']}"; + if($_POST['length'] != "") $iperf_options .= " -l {$_POST['length']}"; + if($_POST['window'] != "") $iperf_options .= " -w {$_POST['window']}"; + if($_POST['udpbandwidth'] != "") $iperf_options .= " -b {$_POST['udpbandwidth']}"; + if($_POST['port'] != "") $iperf_options .= " -p {$_POST['port']}"; + $iperf_options .= " -c {$_POST['hostname']}"; + system("/usr/local/bin/iperf" . $iperf_options); + +
+ -- cgit v1.2.3