diff options
author | Ermal <eri@pfsense.org> | 2013-06-11 18:33:13 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2013-06-11 18:33:13 +0000 |
commit | f0f714c512bc760f9b15c23b76b0ff6fddaf5da2 (patch) | |
tree | 302cac58285054dafeef41e2d435736e08216107 /etc/inc | |
parent | b90ae531a3dbd327495e576685139f59605899c5 (diff) | |
download | pfsense-f0f714c512bc760f9b15c23b76b0ff6fddaf5da2.zip pfsense-f0f714c512bc760f9b15c23b76b0ff6fddaf5da2.tar.gz |
Correct the command for setting the 6rd gw
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 b055846..380b072 100644 --- a/etc/inc/interfaces.inc +++ b/etc/inc/interfaces.inc @@ -3292,7 +3292,7 @@ function interface_6rd_configure($interface = "wan", $wancfg) { pfSense_interface_rename($tmpstfiface, $stfiface); pfSense_interface_flags($stfiface, IFF_LINK2); mwexec("/sbin/ifconfig {$stfiface} inet6 {$rd6prefix}/{$rd6prefixlen}"); - mwexec("/sbin/ifconfig {$stfiface} stfv4rd " . escapeshellarg($wancfg['gateway-6rd'])); + mwexec("/sbin/ifconfig {$stfiface} stfv4br " . escapeshellarg($wancfg['gateway-6rd'])); if ($wancfg['prefix-6rd-v4plen'] > 0 && $wancfg['prefix-6rd-v4plen'] < 32) mwexec("/sbin/ifconfig {$stfiface} stfv4net {$ip4address}/{$wancfg['prefix-6rd-v4plen']}"); if ($g['debug']) |