Add MAC address filterimh for gamin devices
This commit is contained in:
@ -1612,6 +1612,18 @@ allow_remote_mac_src_addresses=""
|
||||
|
||||
|
||||
|
||||
# =============
|
||||
# - MAC Address Filtering Gaming Devices
|
||||
# =============
|
||||
|
||||
# - MAC adresses here are only allowed connect to internet but NOT to loacl services and networks
|
||||
# -
|
||||
# - Blank separated list
|
||||
# -
|
||||
gameming_device_mac_addresses=""
|
||||
|
||||
|
||||
|
||||
# =============
|
||||
# --- Basic behavior - overwrites settings from 'default_basic_behavior.conf'
|
||||
# =============
|
||||
|
@ -1524,6 +1524,18 @@ allow_remote_mac_src_addresses=""
|
||||
|
||||
|
||||
|
||||
# =============
|
||||
# - MAC Address Filtering Gaming Devices
|
||||
# =============
|
||||
|
||||
# - MAC adresses here are only allowed connect to internet but NOT to loacl services and networks
|
||||
# -
|
||||
# - Blank separated list
|
||||
# -
|
||||
gameming_device_mac_addresses=""
|
||||
|
||||
|
||||
|
||||
# =============
|
||||
# --- Basic behavior
|
||||
# =============
|
||||
|
@ -1832,3 +1832,10 @@ for _mac in $allow_remote_mac_src_addresses ; do
|
||||
allow_remote_mac_src_address_arr+=("$_mac")
|
||||
done
|
||||
|
||||
# ---
|
||||
# - MAC Address Filtering Gaming Devices
|
||||
# ---
|
||||
declare -a gameming_device_mac_address_arr=()
|
||||
for _mac in $gameming_device_mac_addresses ; do
|
||||
gameming_device_mac_address_arr+=("$_mac")
|
||||
done
|
||||
|
Reference in New Issue
Block a user