Blame SPECS/iptables-config

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