diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-06-25 19:35:50 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-06-25 19:35:50 +0000 |
commit | 49fc684adecfa4ed31196f5dbf7f2ce4d5375143 (patch) | |
tree | 112bc73a4edb4b7c04e43fa1014b4362fdc22727 /usr | |
parent | 4c7856cfc583cdaa7526919ba831443eed5c1abc (diff) | |
download | pfsense-49fc684adecfa4ed31196f5dbf7f2ce4d5375143.zip pfsense-49fc684adecfa4ed31196f5dbf7f2ce4d5375143.tar.gz |
Increase acks queue instead of default.
Break out the pointy hat.
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/wizards/traffic_shaper_wizard.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr/local/www/wizards/traffic_shaper_wizard.inc b/usr/local/www/wizards/traffic_shaper_wizard.inc index 0f6d147..b4202d9 100644 --- a/usr/local/www/wizards/traffic_shaper_wizard.inc +++ b/usr/local/www/wizards/traffic_shaper_wizard.inc @@ -86,7 +86,7 @@ function step2_stepsubmitphpaction() { if ($config['shaper']['schedulertype'] == "hfsc") { $queue['realtime'] = "on"; $queue['realtime3'] = "1%"; - $queue['bandwidth'] = 5; + $queue['bandwidth'] = 1; $queue['bandwidthtype'] = '%'; $queue['qlimit'] = 500; } elseif ($config['shaper']['schedulertype'] == "cbq") { @@ -107,7 +107,7 @@ function step2_stepsubmitphpaction() { if ($config['shaper']['schedulertype'] == "hfsc") { $queue['realtime'] = "on"; $queue['realtime3'] = "1%"; - $queue['bandwidth'] = 5; + $queue['bandwidth'] = 1; $queue['bandwidthtype'] = '%'; $queue['qlimit'] = 500; } elseif ($config['shaper']['schedulertype'] == "cbq") { @@ -127,7 +127,7 @@ function step2_stepsubmitphpaction() { if ($config['shaper']['schedulertype'] == "hfsc") { $queue['realtime'] = "on"; $queue['realtime3'] = "10%"; - $queue['bandwidth'] = 1; + $queue['bandwidth'] = 5; $queue['bandwidthtype'] = '%'; } elseif ($config['shaper']['schedulertype'] == "cbq") { $queue['borrow'] = "on"; @@ -146,7 +146,7 @@ function step2_stepsubmitphpaction() { if ($config['shaper']['schedulertype'] == "hfsc") { $queue['realtime'] = "on"; $queue['realtime3'] = "10%"; - $queue['bandwidth'] = 1; + $queue['bandwidth'] = 5; $queue['bandwidthtype'] = '%'; } elseif ($config['shaper']['schedulertype'] == "cbq") { $queue['borrow'] = "on"; |