summaryrefslogtreecommitdiffstats
path: root/src/usr/local
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2017-08-01 11:40:41 -0400
committerjim-p <jimp@pfsense.org>2017-08-01 11:40:41 -0400
commitd08c13875483a81b6393f0127abe719e5734dea4 (patch)
tree787e02626b2d8891f734fe0ce80e586b427a8ed4 /src/usr/local
parentc71df82d1f7d249660cf09c66f91d6aac48a8e21 (diff)
downloadpfsense-d08c13875483a81b6393f0127abe719e5734dea4.zip
pfsense-d08c13875483a81b6393f0127abe719e5734dea4.tar.gz
Fix VLAN Priority set pf syntax. Fixes #7744
Diffstat (limited to 'src/usr/local')
-rw-r--r--src/usr/local/www/firewall_rules_edit.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/usr/local/www/firewall_rules_edit.php b/src/usr/local/www/firewall_rules_edit.php
index e880537..3a462c3 100644
--- a/src/usr/local/www/firewall_rules_edit.php
+++ b/src/usr/local/www/firewall_rules_edit.php
@@ -1626,7 +1626,16 @@ $section->addInput(new Form_Checkbox(
$pconfig['nosync']
))->setHelp('This does NOT prevent the rule from being overwritten on Slave.');
-$vlanprio = array("" => "none", "be" => "BE", "bk" => "BK", "ee" => "EE", "ca" => "CA", "vi" => "VI", "vo" => "VO", "ic" => "IC", "nc" => "NC");
+$vlanprio = array(
+ "" => "none",
+ "bk" => "Background (BK, 0)",
+ "be" => "Best Effort (BE, 1)",
+ "ee" => "Excellent Effort (EE, 2)",
+ "ca" => "Critical Applications (CA, 3)",
+ "vi" => "Video (VI, 4)",
+ "vo" => "Voice (VO, 5)",
+ "ic" => "Internetwork Control (IC, 6)",
+ "nc" => "Network Control (NC, 7)");
$section->addInput(new Form_Select(
'vlanprio',
OpenPOWER on IntegriCloud