Add support for ip-addresse, which have unlimited acces to inet but no access to (other) local networks - gaming devices..
This commit is contained in:
@ -1611,7 +1611,6 @@ allow_local_mac_src_addresses=""
|
||||
allow_remote_mac_src_addresses=""
|
||||
|
||||
|
||||
|
||||
# =============
|
||||
# - MAC Address Filtering Gaming Devices
|
||||
# =============
|
||||
@ -1623,6 +1622,17 @@ allow_remote_mac_src_addresses=""
|
||||
gaming_device_mac_addresses=""
|
||||
|
||||
|
||||
# =============
|
||||
# - IP Address Filtering Gaming Devices
|
||||
# =============
|
||||
|
||||
# - IP adresses here are only allowed connect to internet but NOT to loacl services and networks
|
||||
# -
|
||||
# - Blank separated list
|
||||
# -
|
||||
gaming_device_ip_addresses=""
|
||||
|
||||
|
||||
|
||||
# =============
|
||||
# --- Basic behavior - overwrites settings from 'default_basic_behavior.conf'
|
||||
|
@ -1535,6 +1535,17 @@ allow_remote_mac_src_addresses=""
|
||||
gaming_device_mac_addresses=""
|
||||
|
||||
|
||||
# =============
|
||||
# - IP Address Filtering Gaming Devices
|
||||
# =============
|
||||
|
||||
# - IP adresses here are only allowed connect to internet but NOT to loacl services and networks
|
||||
# -
|
||||
# - Blank separated list
|
||||
# -
|
||||
gaming_device_ip_addresses=""
|
||||
|
||||
|
||||
|
||||
# =============
|
||||
# --- Basic behavior
|
||||
|
@ -1839,3 +1839,11 @@ declare -a gaming_device_mac_address_arr=()
|
||||
for _mac in $gaming_device_mac_addresses ; do
|
||||
gaming_device_mac_address_arr+=("$_mac")
|
||||
done
|
||||
|
||||
# ---
|
||||
# - IP Address Filtering Gaming Devices
|
||||
# ---
|
||||
declare -a gaming_device_ip_address_arr=()
|
||||
for _ip in $gaming_device_ip_addresses ; do
|
||||
gaming_device_ip_address_arr+=("$_ip")
|
||||
done
|
||||
|
Reference in New Issue
Block a user