1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-26 07:41:06 +02:00

deal with static routes

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@62 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mbm 2004-06-06 05:25:39 +00:00
parent a194cca4d6
commit 82ed921569

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