Displaying 1 result from an estimated 1 matches for "dumper_ip".
2005 Dec 27
3
Ingress policing (matching netfilter marks)
...O_IP="127.0.0.1"
#### 1.5 IPTables Configuration.
IPTABLES="/sbin/iptables"
#### 1.6 Misc Configuration.
#MARK_FORWARD=$[2#00000001]
#MARK_PRIORITY=$[2#00000010]
#MARK_GENERAL=$[2#00000100]
#MARK_BULK=$[2#00001000]
MARK_FORWARD=1
MARK_PRIORITY=10
MARK_GENERAL=20
MARK_BULK=30
DUMPER_IP="192.168.0.6"
###########################################################################
#
# Firewall START function
#
firewall_start ()
{
######## 3.1 Required proc configuration
# Enable forwarding
echo 1 > /proc/sys/net/ipv4/ip_forward
# no IP spoofing
if [ -e /proc/sys/n...