per-user-bandwidth-distribution 1.0.1 Services: Per User Bandwidth pkg_edit.php?xml=per-user-bandwidth-distribution.xml&id=0 Per User Bandwidth Enforce a fair use bandwidth policy
Services
pkg_edit.php?xml=per-user-bandwidth-distribution.xml&id=0
PerUserBandwidth per_user_bandwidth_distribution.sh installedpackages->package->$packagename->configuration->settings Bandwidth bandwidth Enter the bandwidth you would like to distribute fairly among the clients: input Bandwidth Type bandwidthtype select $fd = fopen("/usr/local/etc/rc.d/per_user_bandwidth_distribution.sh","w"); fwrite($fd, "# This file was automatically generated by the pfSense\n"); fwrite($fd, "# package manager system\n\n"); fwrite($fd, "/sbin/kldload ipfw\n"); fwrite($fd, "/sbin/kldload dummynet\n"); fwrite($fd, "/sbin/ipfw delete 10\n"); fwrite($fd, "/sbin/ipfw pipe 1 config mask src-ip 0x000000ff bw {$_POST['bandwidth']}{$_POST['bandwidthtype']}\n"); fwrite($fd, "/sbin/ipfw pipe 2 config mask dst-ip 0x000000ff bw {$_POST['bandwidth']}{$_POST['bandwidthtype']}\n"); fwrite($fd, "/sbin/ipfw add 10 pipe 1 ip from any to any out via {$wanif}\n"); fwrite($fd, "/sbin/ipfw add 10 pipe 2 ip from any to any in via {$wanif}\n"); fwrite($fd, "/sbin/ipfw add 10 allow all from any to any\n"); fclose($fd); mwexec("chmod a+rx /usr/local/etc/rc.d/per_user_bandwidth_distribution.sh"); mwexec_bg("/usr/local/etc/rc.d/per_user_bandwidth_distribution.sh"); mwexec("/sbin/ipfw delete 10"); mwexec("/sbin/kldunload dummynet"); mwexec("/sbin/kldunload ipfw");