diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-04-02 02:43:37 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-04-02 02:43:37 +0000 |
commit | 8846f8302958ed8dddc86a8460bff2c05be95254 (patch) | |
tree | 4e5f9e41e8465ea6499694ceb0cb75d1e6245a0f /usr | |
parent | b660a423941c792d8109bb24e4c5b250d964fc83 (diff) | |
download | pfsense-8846f8302958ed8dddc86a8460bff2c05be95254.zip pfsense-8846f8302958ed8dddc86a8460bff2c05be95254.tar.gz |
Set interface variables
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/wizards/traffic_shaper_wizard.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/usr/local/www/wizards/traffic_shaper_wizard.xml b/usr/local/www/wizards/traffic_shaper_wizard.xml index 6524d2b..b07721e 100644 --- a/usr/local/www/wizards/traffic_shaper_wizard.xml +++ b/usr/local/www/wizards/traffic_shaper_wizard.xml @@ -2083,6 +2083,11 @@ /* Sort rules by queue priority */ sort_rule_by_queue_priority(); + $downq = "q" . convert_friendly_interface_to_friendly_descr($config['ezshaper']['step2']['inside_int']); + $upq = "q" . convert_friendly_interface_to_friendly_descr($config['ezshaper']['step2']['outside_int']); + $downint = strtolower($config['ezshaper']['step2']['inside_int']); + $upint = strtolower($config['ezshaper']['step2']['outside_int']); + /* install default p2p catch all rule if user has enabled option (MUST BE LAST!) */ if($config['ezshaper']['step4']['p2pcatchall'] == "on") { $othersplist = array(); |