From: mbm Date: Sun, 28 Mar 2004 04:15:26 +0000 (+0000) Subject: deal with static routes X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;h=30e87aab88d7cbb8ba3f77e877a4014e236bc3a7;p=openwrt-10.03%2F.git deal with static routes git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/root/etc/networking.sh b/root/etc/networking.sh index b857a86c0..c1e6742e3 100755 --- a/root/etc/networking.sh +++ b/root/etc/networking.sh @@ -161,3 +161,12 @@ lan_proto="static" configure lan configure wifi configure wan + +for route in $(nvram_get static_route); do { + ip=${route%%:*} route=${route#*:} + netmask=${route%%:*} route=${route#*:} + gateway=${route%%:*} route=${route#*:} + metric=${route%%:*} route=${route#*:} + if=${route%%:*} + $DEBUG route add -net $ip netmask $netmask gw $gateway metric $metric dev $if +} done