5a6ca725b5c793eddd9d19ac2c0caef0393c3c0f
[openwrt/svn-archive/archive.git] / obsolete-buildroot / sources / openwrt / root / etc / init.d / S40network
1 #!/bin/sh
2 . /etc/functions.sh
3 case "$1" in
4 start|restart)
5 ifup lan
6 ifup wan
7 ifup wifi
8 wifi up
9
10 for route in $(nvram_get static_route); do {
11 eval "set $(echo $route | sed 's/:/ /g')"
12 route add -net $1 netmask $2 gw $3 metric $4 dev $5
13 } done
14 ;;
15 esac