aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-08-13 23:09:49 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-08-13 23:09:49 +0000
commit302053445c0c75c670643bbd7b9aa78e164f02bd (patch)
tree38db6bb715b4359a85fb47ef0e52b816ab753b03
parent9694747f7742b10aa929b7a3edad87493fcb7a21 (diff)
downloadpfsense-packages-302053445c0c75c670643bbd7b9aa78e164f02bd.tar.gz
pfsense-packages-302053445c0c75c670643bbd7b9aa78e164f02bd.tar.bz2
pfsense-packages-302053445c0c75c670643bbd7b9aa78e164f02bd.zip
Set pipes up first
-rw-r--r--packages/per-user-bandwidth-distribution.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/per-user-bandwidth-distribution.xml b/packages/per-user-bandwidth-distribution.xml
index c58c8b00..18b28f18 100644
--- a/packages/per-user-bandwidth-distribution.xml
+++ b/packages/per-user-bandwidth-distribution.xml
@@ -44,11 +44,11 @@
<custom_add_php_command>
$fd = fopen("/usr/local/etc/rc.d/per_user_bandwidth_distribution.sh","w");
fwrite($fd, "/sbin/kldload dummynet");
+ fwrite($fd, "/sbin/ipfw pipe 1 config mask src-ip 0x000000ff bw {$_POST['bandwidth']}{$_POST['bandwidthtype']}");
+ fwrite($fd, "/sbin/ipfw pipe 2 config mask dst-ip 0x000000ff bw {$_POST['bandwidth']}{$_POST['bandwidthtype']}");
fwrite($fd, "/sbin/ipfw add 10 pipe 1 ip from any to any out via {$wanif}");
fwrite($fd, "/sbin/ipfw add 10 pipe 2 ip from any to any in via {$wanif}");
fwrite($fd, "/sbin/ipfw add allow all from any to any");
- fwrite($fd, "/sbin/ipfw pipe 1 config mask src-ip 0x000000ff bw {$_POST['bandwidth']}{$_POST['bandwidthtype']}");
- fwrite($fd, "/sbin/ipfw pipe 2 config mask dst-ip 0x000000ff bw {$_POST['bandwidth']}{$_POST['bandwidthtype']}");
fclose($fd);
mwexec("chmod a+rx /usr/local/etc/rc.d/per_user_bandwidth_distribution.sh");
</custom_add_php_command>