From af1cf82fb7143e8753d85f5d555b907b4f3e116e Mon Sep 17 00:00:00 2001 From: Joshua Oreman Date: Tue, 26 Apr 2011 16:13:46 -0400 Subject: [PATCH] Disable proxy_arp on the 'all' interface --- debian/changelog | 7 +++++++ debian/invirt-xen-config.init | 1 + 2 files changed, 8 insertions(+) diff --git a/debian/changelog b/debian/changelog index e9318d3..5bead4f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +invirt-xen-config (0.0.33) unstable; urgency=low + + * Explicitly disable proxy_arp on the "all" interface; it seems to be + enabled on bootup if we don't. + + -- Joshua Oreman Tue, 26 Apr 2011 16:12:52 -0400 + invirt-xen-config (0.0.32) unstable; urgency=low * Don't enable proxy arp on every interface, just the public one (fixes diff --git a/debian/invirt-xen-config.init b/debian/invirt-xen-config.init index 5741943..f069757 100755 --- a/debian/invirt-xen-config.init +++ b/debian/invirt-xen-config.init @@ -27,6 +27,7 @@ do_startup() { echo 1 >/proc/sys/net/ipv4/conf/$i/rp_filter echo 1 >/proc/sys/net/ipv4/conf/$i/proxy_arp done + echo 0 >/proc/sys/net/ipv4/conf/all/proxy_arp } do_start() { -- 1.7.9.5