diff options
author | Christian Poessinger <christian@poessinger.com> | 2018-10-20 11:53:34 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2018-10-20 11:53:45 +0200 |
commit | 6f097a666bbdb9d2d66ad9ab0b17b2d6da1f56a4 (patch) | |
tree | d0c5187639c1da5f462e8abaf8821ce22b17f840 | |
parent | bf7fe3da15446eef6d5974d26106c130179c32fc (diff) | |
download | vyatta-cfg-system-6f097a666bbdb9d2d66ad9ab0b17b2d6da1f56a4.tar.gz vyatta-cfg-system-6f097a666bbdb9d2d66ad9ab0b17b2d6da1f56a4.zip |
T300: Default sysctl config overrides arp_ignore on all interfaces
-rw-r--r-- | sysconf/vyatta-sysctl.conf | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sysconf/vyatta-sysctl.conf b/sysconf/vyatta-sysctl.conf index 3e5717f1..038b9f83 100644 --- a/sysconf/vyatta-sysctl.conf +++ b/sysconf/vyatta-sysctl.conf @@ -19,7 +19,10 @@ kernel.core_pattern=/var/core/core-%e-%p-%t # 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 + +# https://phabricator.vyos.net/T300 +net.ipv4.conf.all.arp_ignore=0 + net.ipv4.conf.all.arp_announce=2 # Enable packet forwarding for IPv4 |