Add support for local service reachable from all extern networks.

This commit is contained in:
2020-07-30 16:06:18 +02:00
parent 5a958fa332
commit f6db682d37
5 changed files with 161 additions and 0 deletions

View File

@ -85,6 +85,14 @@ for _net in $any_access_from_inet_networks ; do
any_access_from_inet_network_arr+=("$_net")
done
# ---
# - Allow local services from ALL extern netwoks
# ---
declare -a allow_all_ext_traffic_to_local_service_arr
for _val in $allow_all_ext_traffic_to_local_service ; do
allow_all_ext_traffic_to_local_service_arr+=("$_val")
done
# ---
# - Allow local services from given extern networks
# ---