Blame SOURCES/iptables-config

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