summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsever-sever <v.gletenko@vyos.io>2021-02-10 21:07:30 +0000
committerViacheslav <v.gletenko@vyos.io>2022-01-09 14:53:11 +0000
commitaa438129337c86d3b0d02fb2248815790fc75105 (patch)
tree040bd606bd5465bff40a5029f3e6c53ad1860056 /src
parent5b9edbc220dec7aefd79a39da3f8f6ab6f34007c (diff)
downloadvyos-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-xsrc/conf_mode/service_webproxy.py3
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')