summaryrefslogtreecommitdiff
path: root/src/conf_mode/dhcpv6_server.py
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2022-04-08 13:47:14 +0000
committerViacheslav Hletenko <v.gletenko@vyos.io>2022-04-08 13:47:14 +0000
commitb75b351b7dd2ec87407f98668468b1fc146428bf (patch)
tree567298cbe46c41df3a296b090cd7894648ab9abd /src/conf_mode/dhcpv6_server.py
parent57c0789f47e02090cf9a627028f6c29a1ff89c59 (diff)
downloadvyos-1x-b75b351b7dd2ec87407f98668468b1fc146428bf.tar.gz
vyos-1x-b75b351b7dd2ec87407f98668468b1fc146428bf.zip
dhcp-server: T4344: Fix underscores for shared network name
Shared network name should not be handled by tag node mangling I.e. should not replace underscores with dashed set service dhcp-server shared-network-name NET_01 shared-network NET_01 { authoritative; ... on commit { set shared-networkname = "NET_01"; } }
Diffstat (limited to 'src/conf_mode/dhcpv6_server.py')
-rwxr-xr-xsrc/conf_mode/dhcpv6_server.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/dhcpv6_server.py b/src/conf_mode/dhcpv6_server.py
index e6a2e4486..be1e6db1e 100755
--- a/src/conf_mode/dhcpv6_server.py
+++ b/src/conf_mode/dhcpv6_server.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
#
-# Copyright (C) 2018-2020 VyOS maintainers and contributors
+# Copyright (C) 2018-2022 VyOS maintainers and contributors
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or later as
@@ -41,7 +41,7 @@ def get_config(config=None):
if not conf.exists(base):
return None
- dhcpv6 = conf.get_config_dict(base, key_mangling=('-', '_'), get_first_key=True)
+ dhcpv6 = conf.get_config_dict(base, key_mangling=('-', '_'), get_first_key=True, no_tag_node_value_mangle=True)
return dhcpv6
def verify(dhcpv6):