NetBSD/etc/rc.d/staticroute
christos e4cf375b81 Script to add and remove static routes:
eg:
    $ cat /etc/route.conf
    # Turn on/off IP forwarding.
    +sysctl -w net.inet.ip.forwarding=1
    -sysctl -w net.inet.ip.forwarding=0
    net 192.168.2.0 -netmask 255.255.255.0 192.168.150.2
2003-01-09 15:57:02 +00:00

40 lines
660 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: staticroute,v 1.1 2003/01/09 15:57:02 christos Exp $
#
# PROVIDE: staticroute
# REQUIRE: network
# BEFORE: NETWORKING
. /etc/rc.subr
name="staticroute"
start_cmd="staticroute_doit Adding add"
stop_cmd="staticroute_doit Deleting delete"
staticroute_doit() {
if [ -s /etc/route.conf ]; then
echo "$1 static routes."
while read args; do
[ -z "$args" ] && continue
case "$args" in
"#"*)
;;
"+"*)
[ $2 = "add" ] && eval ${args#*+}
;;
"-"*)
[ $2 = "delete" ] && eval ${args#*-}
;;
*)
route -q $2 -$args
;;
esac
done < /etc/route.conf
fi
}
load_rc_config $name
run_rc_command "$1"