Add 'allow_to_ext_net' and 'allow_to_ext_service'.
This commit is contained in:
@ -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
|
||||
# ---
|
||||
|
Reference in New Issue
Block a user