diff options
author | John Southworth <john.southworth@vyatta.com> | 2011-11-30 16:43:08 -0800 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2011-12-01 16:50:45 -0800 |
commit | 496526b572ca83308a858b2ec4771d2f05f4970c (patch) | |
tree | 9e06a0355b9039477e0257e1a077d0cc221235c6 | |
parent | 63a41afb346d7ed60db576ecb7b2d938bcfac10a (diff) | |
download | vyatta-cfg-quagga-496526b572ca83308a858b2ec4771d2f05f4970c.tar.gz vyatta-cfg-quagga-496526b572ca83308a858b2ec4771d2f05f4970c.zip |
Change arp_filter for all to 0 to allow vrrp interfaces to override the default of 1
-rw-r--r-- | sysconf/vyatta-sysctl.conf | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysconf/vyatta-sysctl.conf b/sysconf/vyatta-sysctl.conf index 5121488d..4517799a 100644 --- a/sysconf/vyatta-sysctl.conf +++ b/sysconf/vyatta-sysctl.conf @@ -16,7 +16,9 @@ kernel.core_pattern=/var/core/core-%e-%p-%t # arp_filter - allow multiple network interfaces on same subnet # arp_announce - avoid local addresses no on target's subnet # arp_ignore - reply only if target IP is local_address on the interface -net.ipv4.conf.all.arp_filter=1 + +# arp_filter defaults to 1 so set all to 0 so vrrp interfaces can override it. +net.ipv4.conf.all.arp_filter=0 net.ipv4.conf.all.arp_ignore=1 net.ipv4.conf.all.arp_announce=1 |