summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorBill Marquette <billm@pfsense.org>2005-09-22 01:28:11 +0000
committerBill Marquette <billm@pfsense.org>2005-09-22 01:28:11 +0000
commit34175b60303f660fb951493024abc8a61269bb02 (patch)
tree759724023fefbf7007fe7dd39f626a4f74919c08 /usr
parent06ad079be0407ecc1def6b23e8745c6bd488ff53 (diff)
downloadpfsense-34175b60303f660fb951493024abc8a61269bb02.zip
pfsense-34175b60303f660fb951493024abc8a61269bb02.tar.gz
Ranges when we're looking for individual ports is wrong
Diffstat (limited to 'usr')
-rw-r--r--usr/local/www/wizards/traffic_shaper_wizard.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr/local/www/wizards/traffic_shaper_wizard.xml b/usr/local/www/wizards/traffic_shaper_wizard.xml
index bee9339..cd743fa 100644
--- a/usr/local/www/wizards/traffic_shaper_wizard.xml
+++ b/usr/local/www/wizards/traffic_shaper_wizard.xml
@@ -433,8 +433,8 @@
/* Panasonic Hybrid PBX */
if( $_POST['provider'] == "Panasonic") {
- $voiplist[] = array('Panasonic1', 'udp', '8000-8063', '8000-8063', 'both');
- $voiplist[] = array('Panasonic2', 'udp', '9300-9301', '9300-9301', 'both');
+ $voiplist[] = array('Panasonic1', 'udp', '8000', '8063', 'both');
+ $voiplist[] = array('Panasonic2', 'udp', '9300', '9301', 'both');
$voiplist[] = array('Panasonic3', 'udp', '2747', '2747', 'both');
}
@@ -934,8 +934,8 @@
if($_POST['unreal'] != "") {
/* Unreal Tournament */
- $gamesplist[] = array('ur1', 'udp', '7777-7787', '7777-7787', 'both');
- $gamesplist[] = array('ur2', 'tcp', '7777-7787', '7777-7787', 'both');
+ $gamesplist[] = array('ur1', 'udp', '7777', '7787', 'both');
+ $gamesplist[] = array('ur2', 'tcp', '7777', '7787', 'both');
}
/* XXX: add some more games before this line!! */
@@ -1483,7 +1483,7 @@
if($_POST['vnc'] != "") {
/* Simple network management protocol */
- $othersplist[] = array('VNC', 'tcp', '5900-5930', '5900-5930', 'both', $_POST['vnc']);
+ $othersplist[] = array('VNC', 'tcp', '5900', '5930', 'both', $_POST['vnc']);
}
/* XXX: add some more protocols here! */
OpenPOWER on IntegriCloud