diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-27 21:40:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-27 21:40:41 +0100 |
commit | 4c7e317b58d1ff2adac57eea4434c2f4f1eb318b (patch) | |
tree | 694b73ede6de97c54f5c3d92ca0b8b4aa63cac0a | |
parent | e44167387cf3c313a395fb60404b29e5a637da67 (diff) | |
parent | d7d916f74e7d3b3b1fc85336f24f91af66b1e2a8 (diff) | |
download | vyos-1x-4c7e317b58d1ff2adac57eea4434c2f4f1eb318b.tar.gz vyos-1x-4c7e317b58d1ff2adac57eea4434c2f4f1eb318b.zip |
Merge pull request #705 from bstepler/T3262
dhcpv6: T3262: don't run DHCPv6 client when only dhcpv6-options is configured
-rw-r--r-- | python/vyos/ifconfig/interface.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/python/vyos/ifconfig/interface.py b/python/vyos/ifconfig/interface.py index 3b92ce463..8528c4a81 100644 --- a/python/vyos/ifconfig/interface.py +++ b/python/vyos/ifconfig/interface.py @@ -1102,9 +1102,10 @@ class Interface(Control): self.del_addr('dhcp') # always ensure DHCPv6 client is stopped (when not configured as client - # for IPv6 address or prefix delegation + # for IPv6 address or prefix delegation) dhcpv6pd = dict_search('dhcpv6_options.pd', config) - if 'dhcpv6' not in new_addr or dhcpv6pd == None: + dhcpv6pd = dhcpv6pd != None and len(dhcpv6pd) != 0 + if 'dhcpv6' not in new_addr and not dhcpv6pd: self.del_addr('dhcpv6') # determine IP addresses which are assigned to the interface and build a @@ -1124,7 +1125,7 @@ class Interface(Control): self.add_addr(addr) # start DHCPv6 client when only PD was configured - if dhcpv6pd != None: + if dhcpv6pd: self.set_dhcpv6(True) # There are some items in the configuration which can only be applied |