openwrt root filesystem
[openwrt.git] / target / default / target_skeleton / 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 $DEBUG route add -net $1 netmask $2 gw $3 metric $4 dev $5
13 } done
14 ;;
15 esac
This page took 0.065423 seconds and 5 git commands to generate.