diff options
author | sever-sever <v.gletenko@vyos.io> | 2021-02-10 21:07:30 +0000 |
---|---|---|
committer | Viacheslav <v.gletenko@vyos.io> | 2022-01-09 14:53:11 +0000 |
commit | aa438129337c86d3b0d02fb2248815790fc75105 (patch) | |
tree | 040bd606bd5465bff40a5029f3e6c53ad1860056 /src | |
parent | 5b9edbc220dec7aefd79a39da3f8f6ab6f34007c (diff) | |
download | vyos-1x-aa438129337c86d3b0d02fb2248815790fc75105.tar.gz vyos-1x-aa438129337c86d3b0d02fb2248815790fc75105.zip |
squid: T3299: Add listen address 0.0.0.0
(cherry picked from commit 1a74e6b3ce061f3c866bcb3f119ee5c73b0c6796)
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/service_webproxy.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/conf_mode/service_webproxy.py b/src/conf_mode/service_webproxy.py index 8dfae348a..cbbd2e0bc 100755 --- a/src/conf_mode/service_webproxy.py +++ b/src/conf_mode/service_webproxy.py @@ -123,9 +123,6 @@ def verify(proxy): ldap_auth = dict_search('authentication.method', proxy) == 'ldap' for address, config in proxy['listen_address'].items(): - if not is_addr_assigned(address): - raise ConfigError( - f'listen-address "{address}" not assigned on any interface!') if ldap_auth and 'disable_transparent' not in config: raise ConfigError('Authentication can not be configured when ' \ 'proxy is in transparent mode') |