diff options
author | Ermal <eri@pfsense.org> | 2011-07-14 13:12:04 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2011-07-14 13:13:08 +0000 |
commit | 87f0f42c3230ad7ad15b14a8a9d63c58f8b2e379 (patch) | |
tree | f7b90dd043704c566dd99e63a97936b71503f870 /etc | |
parent | fc23b860eb933ee557cd5cc3d5816f732360a54c (diff) | |
download | pfsense-87f0f42c3230ad7ad15b14a8a9d63c58f8b2e379.zip pfsense-87f0f42c3230ad7ad15b14a8a9d63c58f8b2e379.tar.gz |
Already doing this no need to duplicate
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/rc.newwanip | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/etc/rc.newwanip b/etc/rc.newwanip index 1ae72ed..07ff33f 100755 --- a/etc/rc.newwanip +++ b/etc/rc.newwanip @@ -112,23 +112,6 @@ if (!empty($grouptmp)) /* reconfigure static routes (kernel may have deleted them) */ system_routing_configure($interface); -/* Check Gif tunnels */ -foreach($config['gifs']['gif'] as $gif) { - if($gif['if'] == $interface) { - foreach($config['interfaces'] as $ifname => $ifparent) { - // echo "interface $ifparent, ifname $ifname, gif {$gif['gifif']}\n"; - if(($ifparent['if'] == $gif['gifif']) && (isset($ifparent['enable']))) { - // echo "Running routing configure for $ifname\n"; - $gif['gifif'] = interface_gif_configure($gif); - $confif = convert_real_interface_to_friendly_interface_name($gif['gifif']); - if ($confif <> "") - interface_configure($confif); - system_routing_configure($ifname); - } - } - } -} - /* reconfigure our gateway monitor */ setup_gateways_monitor(); |