diff options
author | jim-p <jimp@pfsense.org> | 2013-09-23 15:27:10 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2013-09-23 15:27:10 -0400 |
commit | 7786cd6e377526eee721901422ef46b9d05eea66 (patch) | |
tree | 0ff5ce6fd962f22492fcd620815a25d17e246410 /etc/inc | |
parent | be773f24f533855df67d4bd4121c1a28e91d614c (diff) | |
download | pfsense-7786cd6e377526eee721901422ef46b9d05eea66.zip pfsense-7786cd6e377526eee721901422ef46b9d05eea66.tar.gz |
Add patch from Ermal to fix ifconfig error on gif in certain cases.
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/interfaces.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/interfaces.inc b/etc/inc/interfaces.inc index d1dd455..3d99dc2 100644 --- a/etc/inc/interfaces.inc +++ b/etc/inc/interfaces.inc @@ -949,7 +949,7 @@ function interface_gif_configure(&$gif, $gifkey = "") { /* Do not change the order here for more see gif(4) NOTES section. */ mwexec("/sbin/ifconfig {$gifif} tunnel {$realifip} {$gif['remote-addr']}"); if((is_ipaddrv6($gif['tunnel-local-addr'])) || (is_ipaddrv6($gif['tunnel-remote-addr']))) { - mwexec("/sbin/ifconfig {$gifif} inet6 {$gif['tunnel-local-addr']} {$gif['tunnel-remote-addr']} prefixlen {$gif['tunnel-remote-net']} "); + mwexec("/sbin/ifconfig {$gifif} inet6 {$gif['tunnel-local-addr']} {$gif['tunnel-remote-addr']} prefixlen /{$gif['tunnel-remote-net']} "); } else { mwexec("/sbin/ifconfig {$gifif} {$gif['tunnel-local-addr']} {$gif['tunnel-remote-addr']} netmask " . gen_subnet_mask($gif['tunnel-remote-net'])); } |