# ============================================================================= # environment variables used to support an iptables firewalls script: # Localhost interface LO_IFACE="lo" LO_IP="127.0.0.1" # The default connection point to the internet: INET_IFACE="eth0" # INET_IFACE="eth1" # INET_IFACE="ppp0" # INET_IFACE="wlan0" # LAN interface information LAN_NET="192.168.1.0/24" LAN_BCAST="192.168.1.255" # insert two appropriate regional servers here # find public servers at http://ntp.isc.org/bin/view/Servers/StratumTwoTimeServers # NTPSERVERS= "aaaa.bbbb.cccc.dddd wwww.xxxx.yyyy.zzzz" # or use the ntp system pool servers # NTPSERVERS= "0.us.pool.ntp.org 1.us.pool.ntp.org" # is this box a NAT/router/gateway box for a LAN? # NAT_SERVER="yes" # does this box provide FTP services to outside the LAN? # FTP_SERVER="yes" #does this box provide DHCP services? # DHCP_SERVER="yes" # does this box provide SSH services to outside the LAN? # ALLOW_OUTSIDE_SSH="yes" # SSH_PORT="22" # does this box use a transparent proxy? # be sure to verify the correct proxy owner name is used # in the iptables firewall rules # TRANS_PROXY="yes" # PROXY_PORT="3128" # do you want the firewall to allow outside pings? # ALLOW_OUTSIDE_PINGS="yes" # do you want the firewall to log outside pings? # LOG_OUTSIDE_PINGS="yes" # =============================================================================