projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
04a27a0
)
deal with static routes
author
Mike Baker
<mbm@openwrt.org>
Sun, 6 Jun 2004 05:25:39 +0000
(
05:25
+0000)
committer
Mike Baker
<mbm@openwrt.org>
Sun, 6 Jun 2004 05:25:39 +0000
(
05:25
+0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@62
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
root/etc/init.d/S40network
patch
|
blob
|
history
diff --git
a/root/etc/init.d/S40network
b/root/etc/init.d/S40network
index
4264705
..
5a6ca72
100755
(executable)
--- a/
root/etc/init.d/S40network
+++ b/
root/etc/init.d/S40network
@@
-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