summaryrefslogtreecommitdiffstats
path: root/etc/inc/config.inc
diff options
context:
space:
mode:
authorErmal Luçi <eri@pfsense.org>2009-06-08 17:57:15 +0000
committerErmal Luçi <eri@pfsense.org>2009-06-08 17:57:15 +0000
commit83bdca55920ca6ab3d848f0993d57a1f9b85098f (patch)
tree19bf46f0ddb0566af0bc8994ee9ba2df8e9deab4 /etc/inc/config.inc
parentef0269508610f837212ec2d0ecd2435f126d61a9 (diff)
downloadpfsense-83bdca55920ca6ab3d848f0993d57a1f9b85098f.zip
pfsense-83bdca55920ca6ab3d848f0993d57a1f9b85098f.tar.gz
Do not use tags for vlan interface names since there might be same vlan tags on different parent interfaces and this will break configs and will hide the reason it does not work. Thanks-to: smos@
Diffstat (limited to 'etc/inc/config.inc')
-rw-r--r--etc/inc/config.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/inc/config.inc b/etc/inc/config.inc
index 6dd751d..5d8661a 100644
--- a/etc/inc/config.inc
+++ b/etc/inc/config.inc
@@ -810,12 +810,12 @@ EOD;
if (is_array($config['vlans']['vlan']) && count($config['vlans']['vlan'])) {
echo "\n\nVLAN interfaces:\n\n";
- foreach ($config['vlans']['vlan'] as $vlan) {
+ foreach ($config['vlans']['vlan'] as $vlanid => $vlan) {
- echo sprintf("% -8s%s\n", "vlan{$vlan['tag']}",
+ echo sprintf("% -8s%s\n", "vlan{$vlanid}",
"VLAN tag {$vlan['tag']}, interface {$vlan['if']}");
- $iflist['vlan' . $vlan['tag']] = array();
+ $iflist['vlan' . $vlanid] = array();
}
}
@@ -1146,7 +1146,7 @@ EOD;
echo "Enter the VLAN tag (1-4094): ";
$vlan['tag'] = chop(fgets($fp));
- $vlan['vlanif'] = "vlan{$vlan['tag']}";
+ $vlan['vlanif'] = "vlan{$vlanif}";
if (!is_numericint($vlan['tag']) || ($vlan['tag'] < 1) || ($vlan['tag'] > 4094)) {
echo "\nInvalid VLAN tag '{$vlan['tag']}'\n";
continue;
OpenPOWER on IntegriCloud