From a2b6098e6f9c1915a61a9aebc8f9852bd897387c Mon Sep 17 00:00:00 2001 From: Lucas Christian Date: Sun, 11 Aug 2024 15:18:38 -0700 Subject: T6648: dhcpv6-server: align stateless DHCPv6 options with stateful --- python/vyos/template.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python') diff --git a/python/vyos/template.py b/python/vyos/template.py index 3507e0940..aa99bed5a 100644 --- a/python/vyos/template.py +++ b/python/vyos/template.py @@ -922,8 +922,8 @@ def kea6_shared_network_json(shared_networks): 'subnet6': [] } - if 'common_options' in config: - network['option-data'] = kea6_parse_options(config['common_options']) + if 'option' in config: + network['option-data'] = kea6_parse_options(config['option']) if 'interface' in config: network['interface'] = config['interface'] -- cgit v1.2.3