From a33b2cf9378d087033f3a8bd6bc537e159ea28cd Mon Sep 17 00:00:00 2001 From: teastep Date: Tue, 2 May 2006 20:01:43 +0000 Subject: [PATCH] Fix 'proxyarp' interface handling git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@3841 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- Shorewall/compiler | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shorewall/compiler b/Shorewall/compiler index 7b7034e35..3d10af50c 100755 --- a/Shorewall/compiler +++ b/Shorewall/compiler @@ -2402,9 +2402,9 @@ __EOF__ interfaces=$(find_interfaces_by_option proxyarp) for interface in $interfaces; do - indent >> $RESTOREFILE << __EOF__ + indent >&3 << __EOF__ if [ -f /proc/sys/net/ipv4/conf/$interface/proxy_arp ] ; then - echo 1 > /proc/sys/net/ipv4/conf/$interface/proxy_arP + echo 1 > /proc/sys/net/ipv4/conf/$interface/proxy_arp else error_message "WARNING: Unable to enable proxy ARP on $interface" fi