diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-06-06 01:01:44 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-06-06 01:01:44 +0200 |
commit | 728b1feaf7444545100b9cba7977c90b75f01029 (patch) | |
tree | 0e290fc974b44061c30c11c6a286f1fa0bf67a8d /src | |
parent | 886a986a122ee0a502c863dd34fa883694fb8fc2 (diff) | |
download | vyos-1x-728b1feaf7444545100b9cba7977c90b75f01029.tar.gz vyos-1x-728b1feaf7444545100b9cba7977c90b75f01029.zip |
dhcpv6-pd: T2551: fix prefix length not set in config
Retrieving the CLI nodes from current config was missed out and only
implemented for PPPoE.
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/interfaces-pppoe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/interfaces-pppoe.py b/src/conf_mode/interfaces-pppoe.py index 231672490..611206d84 100755 --- a/src/conf_mode/interfaces-pppoe.py +++ b/src/conf_mode/interfaces-pppoe.py @@ -145,7 +145,7 @@ def get_config(): 'dhcpv6-options', 'prefix-delegation'] conf.set_level(dhcpv6_pd_path) - # retriebe DHCPv6-PD prefix helper length as some ISPs only hand out a + # Retrieve DHCPv6-PD prefix helper length as some ISPs only hand out a # /64 by default (https://phabricator.vyos.net/T2506) if conf.exists(['length']): pppoe['dhcpv6_pd_length'] = conf.return_value(['length']) |