1 # ------------------------------------------------------------------------------ 2 # -= Arno's Iptables Firewall(AIF) - MAC Address Filter plugin =- 3 # ------------------------------------------------------------------------------ 4 5 # To actually enable this plugin make ENABLED=1: 6 # ------------------------------------------------------------------------------ 7 ENABLED=0 8 9 # Specify interfaces that the MAC Addresses Filter is applied (eg. INT_IF) 10 # ------------------------------------------------------------------------------ 11 MAC_ADDRESS_IF="$INT_IF" 12 13 # Enable logging for not-allowed MAC addresses (if used). 14 # ----------------------------------------------------------------------------- 15 MAC_ADDRESS_LOG=1 16 17 # Specify the location here of the file that contains the MAC addresses of the 18 # hosts on the interfaces specified in "$MAC_ADDRESS_IF" that are allowed. 19 # The MAC addresses should be written like 00:11:22:33:44:55 optionally followed 20 # by an (space-seperated) IP address, to lock the MAC-address to a certain IP. 21 # Each line should contain one MAC address (+optional IP address) and the last 22 # line should contain a carriage-return! 23 # ----------------------------------------------------------------------------- 24 MAC_ADDRESS_FILE="/etc/arno-iptables-firewall/mac-addresses"