deal with static routes

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@62 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
Mike Baker 2004-06-06 05:25:39 +00:00
parent 04a27a0829
commit be4c47e4e2

View File

@ -6,5 +6,10 @@ case "$1" in
ifup wan
ifup wifi
wifi up
for route in $(nvram_get static_route); do {
eval "set $(echo $route | sed 's/:/ /g')"
route add -net $1 netmask $2 gw $3 metric $4 dev $5
} done
;;
esac