From 4649284812bb3dbb8c07f0e4dc56226b6da1a703 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Sun, 4 Oct 2020 11:37:21 +0200 Subject: sstp: T2953: migrate gateway-address, client-ip-settings to common level * move "network-settings gateway-address" to "gateway-address" * move "network-settings client-ip-settings" to "client-ip-pool" --- src/conf_mode/vpn_sstp.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'src/conf_mode') diff --git a/src/conf_mode/vpn_sstp.py b/src/conf_mode/vpn_sstp.py index 15fcfcef3..3eece1922 100755 --- a/src/conf_mode/vpn_sstp.py +++ b/src/conf_mode/vpn_sstp.py @@ -224,16 +224,13 @@ def get_config(config=None): # # read in client IPv4 pool - conf.set_level(base_path + ['network-settings', 'client-ip-settings']) + conf.set_level(base_path + ['client-ip-pool']) if conf.exists(['subnet']): sstp['client_ip_pool'] = conf.return_values(['subnet']) - if conf.exists(['gateway-address']): - sstp['client_gateway'] = conf.return_value(['gateway-address']) - # # read in client IPv6 pool - conf.set_level(base_path + ['network-settings', 'client-ipv6-pool']) + conf.set_level(base_path + ['client-ipv6-pool']) if conf.exists(['prefix']): for prefix in conf.list_nodes(['prefix']): tmp = { @@ -261,6 +258,9 @@ def get_config(config=None): # # read in network settings conf.set_level(base_path) + if conf.exists(['gateway-address']): + sstp['client_gateway'] = conf.return_value(['gateway-address']) + if conf.exists(['name-server']): for name_server in conf.return_values(['name-server']): if is_ipv4(name_server): @@ -268,8 +268,6 @@ def get_config(config=None): else: sstp['dnsv6'].append(name_server) - # - # read in network settings if conf.exists(['mtu']): sstp['mtu'] = conf.return_value(['mtu']) -- cgit v1.2.3