diff options
author | Daniil Baturin <daniil@vyos.io> | 2020-05-13 03:45:29 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-13 03:45:29 +0700 |
commit | a23b2d038aaa1275d2991023cfd7ed08f64efbc3 (patch) | |
tree | ba58b5b40d6a0c8dd32c586a8ff93b959c3b707a | |
parent | b27b759a236c0df5fc2b8006d93835a8c47df548 (diff) | |
parent | 112b6c07e2763224b3d1b55f7f75770c6e086bf6 (diff) | |
download | vyos-1x-a23b2d038aaa1275d2991023cfd7ed08f64efbc3.tar.gz vyos-1x-a23b2d038aaa1275d2991023cfd7ed08f64efbc3.zip |
Merge pull request #408 from kroy-the-rabbit/patch-2
T2449: Fixing key to appropriate one
-rwxr-xr-x | src/conf_mode/interfaces-tunnel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/interfaces-tunnel.py b/src/conf_mode/interfaces-tunnel.py index 6018cfcd0..5261b6e7d 100755 --- a/src/conf_mode/interfaces-tunnel.py +++ b/src/conf_mode/interfaces-tunnel.py @@ -404,7 +404,7 @@ def get_config(): # to make IPv6 SLAAC and DHCPv6 work with forwarding=1, # accept_ra must be 2 - if options['ipv6_autoconf'] or 'dhcpv6' in options['address-add']: + if options['ipv6_autoconf'] or 'dhcpv6' in options['addresses-add']: options['ipv6_accept_ra'] = 2 # allmulticast fate is linked to multicast |