diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2023-02-15 17:03:28 +0000 |
---|---|---|
committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2023-02-15 17:03:28 +0000 |
commit | 6b0565c76324ef2a86f472b4e02a7223f39aa049 (patch) | |
tree | 73ec263d8e49fe7983096664f4afb91caa660b4f /python | |
parent | bf99fd11225413565ff04d95df441247ac4a02df (diff) | |
download | vyos-1x-6b0565c76324ef2a86f472b4e02a7223f39aa049.tar.gz vyos-1x-6b0565c76324ef2a86f472b4e02a7223f39aa049.zip |
T4971: Accel-ppp verify if client_ip_pool key exists in config
If 'client_ip_pool' not exists in config we cannot search it
in the dictionary
dict_search_recursive(config, 'gateway_address', ['client_ip_pool', 'name'])
Add check for Equuleus
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/configverify.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/python/vyos/configverify.py b/python/vyos/configverify.py index 47cf218ee..0085ad5e4 100644 --- a/python/vyos/configverify.py +++ b/python/vyos/configverify.py @@ -361,11 +361,12 @@ def verify_accel_ppp_base_service(config): if 'gateway_address' in config: gateway = True else: - if dict_search_recursive(config, 'gateway_address', ['client_ip_pool', 'name']): - for _, v in config['client_ip_pool']['name'].items(): - if 'gateway_address' in v: - gateway = True - break + if 'client_ip_pool' in config: + if dict_search_recursive(config, 'gateway_address', ['client_ip_pool', 'name']): + for _, v in config['client_ip_pool']['name'].items(): + if 'gateway_address' in v: + gateway = True + break if not gateway: raise ConfigError('Server requires gateway-address to be configured!') |