deal with static routes
authormbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 6 Jun 2004 05:25:39 +0000 (05:25 +0000)
committermbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>
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

index 4264705..5a6ca72 100755 (executable)
@@ -6,5 +6,10 @@ case "$1" in
     ifup wan
     ifup wifi
     wifi up
     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
     ;;
 esac
This page took 0.022776 seconds and 4 git commands to generate.