Blame SOURCES/iptables-config

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