mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
294 B

public_forward() {
if [ "$if" != "none" ]; then
error "Keyword >>forward<< not allowed" \
"in an interface section."
return
fi
[ "$interface" != auto ] && return
addcode up 9 5 "echo 1 > /proc/sys/net/ipv4/ip_forward"
addcode down 9 5 "echo 0 > /proc/sys/net/ipv4/ip_forward"
}