43df5c
# Load additional iptables modules (nat helpers)
43df5c
#   Default: -none-
43df5c
# Space separated list of nat helpers (e.g. 'ip_nat_ftp ip_nat_irc'), which
43df5c
# are loaded after the firewall rules are applied. Options for the helpers are
43df5c
# stored in /etc/modprobe.conf.
43df5c
IPTABLES_MODULES=""
43df5c
43df5c
# Save current firewall rules on stop.
43df5c
#   Value: yes|no,  default: no
43df5c
# Saves all firewall rules to /etc/sysconfig/iptables if firewall gets stopped
43df5c
# (e.g. on system shutdown).
43df5c
IPTABLES_SAVE_ON_STOP="no"
43df5c
43df5c
# Save current firewall rules on restart.
43df5c
#   Value: yes|no,  default: no
43df5c
# Saves all firewall rules to /etc/sysconfig/iptables if firewall gets
43df5c
# restarted.
43df5c
IPTABLES_SAVE_ON_RESTART="no"
43df5c
43df5c
# Save (and restore) rule and chain counter.
43df5c
#   Value: yes|no,  default: no
43df5c
# Save counters for rules and chains to /etc/sysconfig/iptables if
43df5c
# 'service iptables save' is called or on stop or restart if SAVE_ON_STOP or
43df5c
# SAVE_ON_RESTART is enabled.
43df5c
IPTABLES_SAVE_COUNTER="no"
43df5c
43df5c
# Numeric status output
43df5c
#   Value: yes|no,  default: yes
43df5c
# Print IP addresses and port numbers in numeric format in the status output.
43df5c
IPTABLES_STATUS_NUMERIC="yes"
43df5c
43df5c
# Verbose status output
43df5c
#   Value: yes|no,  default: yes
43df5c
# Print info about the number of packets and bytes plus the "input-" and
43df5c
# "outputdevice" in the status output.
43df5c
IPTABLES_STATUS_VERBOSE="no"
43df5c
43df5c
# Status output with numbered lines
43df5c
#   Value: yes|no,  default: yes
43df5c
# Print a counter/number for every rule in the status output.
43df5c
IPTABLES_STATUS_LINENUMBERS="yes"
43df5c
43df5c
# Reload sysctl settings on start and restart
43df5c
#   Default: -none-
43df5c
# Space separated list of sysctl items which are to be reloaded on start.
43df5c
# List items will be matched by fgrep.
43df5c
#IPTABLES_SYSCTL_LOAD_LIST=".nf_conntrack .bridge-nf"
43df5c
43df5c
# Set wait option for iptables-restore calls in seconds
43df5c
#   Default: 600
43df5c
# Set to 0 to deactivate the wait.
43df5c
#IPTABLES_RESTORE_WAIT=600
43df5c
43df5c
# Set wait interval option for iptables-restore calls in microseconds
43df5c
#   Default: 1000000
43df5c
# Set to 100000 to try to get the lock every 100000 microseconds, 10 times a
43df5c
# second.
43df5c
# Only usable with IPTABLES_RESTORE_WAIT > 0
43df5c
#IPTABLES_RESTORE_WAIT_INTERVAL=1000000