add tinc
[openwrt.git] / root / etc / init.d / S40network
index 4264705..5a6ca72 100755 (executable)
@@ -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
This page took 0.021579 seconds and 4 git commands to generate.