diff options
author | Chris Buechler <cmb@pfsense.org> | 2016-05-13 00:43:07 -0500 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2016-05-13 00:44:28 -0500 |
commit | 3ded329e23980d52771cd7194ca31fe3481be21b (patch) | |
tree | 52970ab96c4610eb75086da99571d78c391cdd4d /src | |
parent | 857f3490862be98a23e0ae151ca2619f52cbf729 (diff) | |
download | pfsense-3ded329e23980d52771cd7194ca31fe3481be21b.zip pfsense-3ded329e23980d52771cd7194ca31fe3481be21b.tar.gz |
Fix scope for IPv6 link local gateway IPs. Ticket #6353
Diffstat (limited to 'src')
-rw-r--r-- | src/etc/inc/gwlb.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/inc/gwlb.inc b/src/etc/inc/gwlb.inc index 4070c9d..cbdceb5 100644 --- a/src/etc/inc/gwlb.inc +++ b/src/etc/inc/gwlb.inc @@ -261,7 +261,7 @@ function setup_gateways_monitor() { } else if ($gateway['ipprotocol'] == "inet6") { // This is an IPv6 gateway... if (is_linklocal($gateway['gateway']) && get_ll_scope($gateway['gateway']) == '') { - $gateways_arr[$gwname]['gateway'] .= '%' . $gateway['interface']; + $gateway['gateway'] .= '%' . $gateway['interface']; } if (is_linklocal($gateway['monitor'])) { |