Add: Allow all traffic from local ip to the internet
This commit is contained in:
@ -109,6 +109,14 @@ for _net in $block_all_ext_to_local_net ; do
|
||||
block_all_ext_to_local_net_arr+=("$_net")
|
||||
done
|
||||
|
||||
# ---
|
||||
# - Allow all traffic from local ip to the internet
|
||||
# ---
|
||||
declare -a allow_local_ip_to_inet_arr
|
||||
for _ip in $allow_local_ip_to_inet ; do
|
||||
allow_local_ip_to_inet_arr+=("$_ip")
|
||||
done
|
||||
|
||||
# ---
|
||||
# - Allow local services from given local networks
|
||||
# ---
|
||||
|
Reference in New Issue
Block a user