diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-05-28 17:20:14 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-05-28 17:20:14 +0200 |
commit | df751f6ed14ef5ab28bb626ef4b554d98d823fc9 (patch) | |
tree | 7ce6f3756e99147b30719e4d6213d20207913290 /python/vyos/configdict.py | |
parent | 5b1ac79562bd60494c9ec31723b27b0affe7fe5c (diff) | |
download | vyos-1x-df751f6ed14ef5ab28bb626ef4b554d98d823fc9.tar.gz vyos-1x-df751f6ed14ef5ab28bb626ef4b554d98d823fc9.zip |
dhcpc6-pd: T2506: bugfix config rendering on non PPPoE interfaces
After commit d5b58517f883 ("dhcpv6-pd: pppoe: T2506: restructure CLI") the
CLI syntax has been adjusted for a better definition of DHCPv6-PD prefix length
option. Verifying a properly rendered template indeed did not happen which
cause the function to vanish for non PPPoE interfaces.
Diffstat (limited to 'python/vyos/configdict.py')
-rw-r--r-- | python/vyos/configdict.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/vyos/configdict.py b/python/vyos/configdict.py index c89447163..ead7e8637 100644 --- a/python/vyos/configdict.py +++ b/python/vyos/configdict.py @@ -234,9 +234,9 @@ def intf_to_dict(conf, default): # DHCPv6 prefix delegation (RFC3633) current_level = conf.get_level() - if conf.exists(['dhcpv6-options', 'delegate']): - for interface in conf.list_nodes(['dhcpv6-options', 'delegate']): - conf.set_level(current_level + ['dhcpv6-options', 'delegate', interface]) + if conf.exists(['dhcpv6-options', 'prefix-delegation']): + for interface in conf.list_nodes(['dhcpv6-options', 'prefix-delegation', 'interface']): + conf.set_level(current_level + ['dhcpv6-options', 'prefix-delegation', 'interface', interface]) pd = { 'ifname': interface, 'sla_id': '', |