diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-12-29 00:14:54 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-12-29 00:14:54 +0000 |
commit | 898f914434725c3083d1b4a15441bf03bb0ccc3e (patch) | |
tree | af5c2d853b332b2fee9649e2a137c9ce80363698 | |
parent | 5e99d81a691ede6a7345c4430ca427cd819e8872 (diff) | |
download | pfsense-898f914434725c3083d1b4a15441bf03bb0ccc3e.zip pfsense-898f914434725c3083d1b4a15441bf03bb0ccc3e.tar.gz |
Call interfaces_vlan_configure() when reloading
Ticket #757
-rw-r--r-- | etc/inc/pfsense-utils.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc index 1e1bf1b..f3ecd0d 100644 --- a/etc/inc/pfsense-utils.inc +++ b/etc/inc/pfsense-utils.inc @@ -1268,6 +1268,9 @@ function reload_interfaces_sync() { mwexec("/sbin/ifconfig {$ifname_real} delete"); } + /* set up VLAN virtual interfaces */ + interfaces_vlan_configure(); + /* set up LAN interface */ interfaces_lan_configure(); @@ -1400,6 +1403,9 @@ function reload_all_sync() { mwexec("/sbin/ifconfig {$ifname_real} delete"); } + /* set up VLAN virtual interfaces */ + interfaces_vlan_configure(); + /* set up LAN interface */ interfaces_lan_configure(); |