Browse code

Merge "iptables: don't enable arptables firewall"

Jenkins authored on 2017/01/12 18:31:00
Showing 1 changed files
... ...
@@ -658,7 +658,7 @@ function enable_kernel_bridge_firewall {
658 658
     # Enable bridge firewalling in case it's disabled in kernel (upstream
659 659
     # default is enabled, but some distributions may decide to change it).
660 660
     # This is at least needed for RHEL 7.2 and earlier releases.
661
-    for proto in arp ip ip6; do
661
+    for proto in ip ip6; do
662 662
         sudo sysctl -w net.bridge.bridge-nf-call-${proto}tables=1
663 663
     done
664 664
 }