IPTABLES=/sbin/iptables # WAN configuration WAN_INT='' IP='' # Allow ping PING=1 # Allow FTP server (passive and active) FTP=0 # NAT LAN_NETWORK NAT=0 LAN_NETWORK='' # Allow traffic between the WAN and LAN LAN=0 LAN_INT='' # Allow all traffic for interface(s) # example ALLOW_INTS='br0 xenbr42' ALLOW_INTS='' # Open ports # source [destination] protocole {porta|portx:porty},[portx:porty,porta,portb,...] # The default destination is the IP ! # example : #OPEN_PORTS=("0.0.0.0/0 tcp 22" "42.42.42.0/24 42.42.42.42 tcp ssh,imap,imaps,1024:2048,32") OPEN_PORTS=("0.0.0.0/0 tcp ssh") # Port forwarding # source-port-destination:port-protocole source-port-destination:port-protocole ... # example : TRAFFICS='0.0.0.0/0-80-192.168.0.42:80-tcp 42.42.42.42-4242-192.168.0.43:22-tcp' TRAFFICS="" # Port redirection # interface-sourceport-destport-protocole # example : REDIRECTIONS='$LAN_INT-25-4242-tcp $WAN_INT-25-4242-udp eth42-32-25-tcp' REDIRECTIONS="" # Hook point to write your own iptables rules ipt_hook() { echo "+ Load your own iptables rules" # Write your own iptables rules here }