More /proc fixes

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6050 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2007-04-21 16:28:11 +00:00
parent ae70b89fc5
commit 3470b8976d

View File

@ -113,7 +113,12 @@ sub setup_route_filtering() {
}
emit 'echo 1 > /proc/sys/net/ipv4/conf/all/rp_filter';
emit 'echo 1 > /proc/sys/net/ipv4/conf/default/rp_filter' if $config{ROUTE_FILTER};
if ( $config{ROUTE_FILTER} ) {
emit 'echo 1 > /proc/sys/net/ipv4/conf/default/rp_filter'
} else {
emit 'echo 0 > /proc/sys/net/ipv4/conf/default/rp_filter'
}
emit "[ -n \"\$NOROUTES\" ] || ip route flush cache";
}
@ -171,7 +176,7 @@ sub setup_source_routing() {
for my $interface ( @$interfaces ) {
my $file = "/proc/sys/net/ipv4/conf/$interface/accept_source_route";
my $value = get_interface_option $interface, 'logmartians';
my $value = get_interface_option $interface, 'sourceroute';
emitj( "if [ -f $file ]; then" ,
" echo $value > $file" );