diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-02-17 17:13:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-17 17:13:04 +0100 |
commit | 4cdfb1f0be743371cfb75e428742b252be4ff64f (patch) | |
tree | 8a91812a3b1d87006970650a7be8ebb26bd30499 | |
parent | 79ebf56dd18d62b5ff0ed8efadbc92bca2ebfffd (diff) | |
parent | 1a74e6b3ce061f3c866bcb3f119ee5c73b0c6796 (diff) | |
download | vyos-1x-4cdfb1f0be743371cfb75e428742b252be4ff64f.tar.gz vyos-1x-4cdfb1f0be743371cfb75e428742b252be4ff64f.zip |
Merge pull request #728 from sever-sever/T3299
squid: T3299: Add listen address 0.0.0.0
-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') |