2014-03-29 10:53:22 -06:00
|
|
|
# Main Configuration File
|
|
|
|
|
|
|
|
# Define a prefix for important locations of binaries
|
|
|
|
PREFIX="/bin:/sbin:/usr/bin:/usr/sbin:${PREFIX}"
|
|
|
|
|
|
|
|
# Enable / Disable IPv4 and IPv6 support (yes/no)
|
2014-03-30 10:16:22 -06:00
|
|
|
# Values: no | yes (both default)
|
2014-03-29 11:11:26 -06:00
|
|
|
EnableIPv4="yes"
|
|
|
|
EnableIPv6="yes"
|
2014-03-29 10:53:22 -06:00
|
|
|
|
|
|
|
# Display detailed output while running script?
|
2014-03-30 10:16:22 -06:00
|
|
|
# Values: no | yes (default)
|
2014-03-30 09:46:26 -06:00
|
|
|
DisplayDetailedOutput="yes"
|
|
|
|
|
|
|
|
# Display alot of extra debugging info?
|
2014-03-30 10:16:22 -06:00
|
|
|
# Values: no (default) | yes
|
2014-03-30 09:46:26 -06:00
|
|
|
DisplayDebugInfo="yes"
|
|
|
|
|
|
|
|
# Debug Override?
|
|
|
|
# I use this command to disable checks while debugging scripts
|
|
|
|
# where I don't want certain sanity checks to run. Normally,
|
|
|
|
# keep this off in production
|
2014-03-30 10:16:22 -06:00
|
|
|
# Values: no (default) | yes
|
2014-03-30 09:46:26 -06:00
|
|
|
DebugOverride="no"
|
|
|
|
|
2014-03-30 10:16:22 -06:00
|
|
|
# Colorize output?
|
|
|
|
# Values: no | yes (default)
|
|
|
|
ColorizeOut="yes"
|
|
|
|
|
|
|
|
# Color of debug output?
|
2014-03-31 19:51:40 -06:00
|
|
|
# Values: standard colors (see display.inc) - Default: PURPLE, because I like purple.
|
2014-03-30 10:16:22 -06:00
|
|
|
DebugColor="PURPLE"
|
|
|
|
|
2014-03-30 09:46:26 -06:00
|
|
|
# Manually override location of iptables/ip6tables if needed
|
|
|
|
# otherwise detect automatically with 'which'
|
|
|
|
#IPTABLES="/sbin/iptables"
|
|
|
|
#IP6TABLES="/sbin/ip6tables"
|
2014-03-30 10:16:22 -06:00
|
|
|
|
2014-03-30 12:18:26 -06:00
|
|
|
# Manually override location of grep if needed
|
|
|
|
# otherwise detect automatically with 'which'
|
|
|
|
#GREP="/usr/bin/grep"
|
|
|
|
|
2014-03-30 10:16:22 -06:00
|
|
|
# There are two types of state matches available, old style
|
|
|
|
# state matching using '--state' and new style '--ctstate'
|
|
|
|
# Values: state | conntrack (default)
|
|
|
|
StateMatching="conntrack"
|