Disable proxy_arp on the 'all' interface 0.0.33
authorJoshua Oreman <oremanj@rwcr.net>
Tue, 26 Apr 2011 20:13:46 +0000 (16:13 -0400)
committerJoshua Oreman <oremanj@rwcr.net>
Tue, 26 Apr 2011 20:13:46 +0000 (16:13 -0400)
debian/changelog
debian/invirt-xen-config.init

index e9318d3..5bead4f 100644 (file)
@@ -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 <oremanj@mit.edu>  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
index 5741943..f069757 100755 (executable)
@@ -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() {