From 07cf2c4b20230ddedee1bf9dddc1e7cd407385f5 Mon Sep 17 00:00:00 2001 From: Renato Botelho Date: Thu, 5 Feb 2015 10:02:24 -0200 Subject: Packages repo cleanup: - Drop support for pfSense < 2 - Remove archive/, old files can be reached using git - Remove old and unused packages - Move stale files from config subdir to a package subdir --- config/iperf.xml | 161 ------------------------------------------------------- 1 file changed, 161 deletions(-) delete mode 100644 config/iperf.xml (limited to 'config/iperf.xml') diff --git a/config/iperf.xml b/config/iperf.xml deleted file mode 100644 index 3b17f549..00000000 --- a/config/iperf.xml +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - . - 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 - iperf network performance testing daemon/client - - - - Client - /pkg_edit.php?xml=iperf.xml&id=0 - - - - Server - /pkg_edit.php?xml=iperfserver.xml&id=0 - - - - https://packages.pfsense.org/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 size - 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 " . escapeshellarg($_POST['interval']); - if($_POST['length'] != "") $iperf_options .= " -l " . escapeshellarg($_POST['length']); - if($_POST['window'] != "") $iperf_options .= " -w " . escapeshellarg($_POST['window']); - if($_POST['udpbandwidth'] != "") $iperf_options .= " -b " . escapeshellarg($_POST['udpbandwidth']); - if($_POST['port'] != "") $iperf_options .= " -p " . escapeshellarg($_POST['port']); - $iperf_options .= " -c " . escapeshellarg($_POST['hostname']); - system("/usr/local/bin/iperf" . $iperf_options); - -
\ No newline at end of file -- cgit v1.2.3