Add 'allow_to_ext_net' and 'allow_to_ext_service'.

This commit is contained in:
2020-09-19 13:40:39 +02:00
parent a9961a5dde
commit 4b97303acd
5 changed files with 257 additions and 0 deletions

View File

@ -197,6 +197,22 @@ for _val in $allow_local_net_to_ext_net ; do
allow_local_net_to_ext_net_arr+=("$_val")
done
# ---
# - Allow extern service
# ---
declare -a allow_to_ext_service_arr
for _val in $allow_to_ext_service ; do
allow_to_ext_service_arr+=("$_val")
done
# ---
# - Allow extern network
# ---
declare -a allow_to_ext_net_arr
for _val in $allow_to_ext_net ; do
allow_to_ext_net_arr+=("$_val")
done
# ---
# - Separate local Networks
# ---