summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-04-13 11:39:20 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-04-13 11:39:20 +0000
commit68bdf5f9b2ef7aa507f63b38a56ecc57a0256195 (patch)
treeccc98040c5fe8b1c3239bfdabe26c44353066918 /package
parent0b11c9308c0fc71e751757e3ca4349c059d30fd3 (diff)
Add support for static routes per interface. You can specify one or more routes, subnets or hosts. Closes #308 for kamikaze
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3629 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/base-files/default/etc/hotplug.d/net/10-net12
1 files changed, 12 insertions, 0 deletions
diff --git a/package/base-files/default/etc/hotplug.d/net/10-net b/package/base-files/default/etc/hotplug.d/net/10-net
index 4bb69378f..b68ec1be2 100644
--- a/package/base-files/default/etc/hotplug.d/net/10-net
+++ b/package/base-files/default/etc/hotplug.d/net/10-net
@@ -47,10 +47,22 @@ do_ifup() {
eval "netmask=\"\${${2}_netmask}\""
eval "gateway=\"\${${2}_gateway}\""
eval "dns=\"\${${2}_dns}\""
+ eval "static_route=\"\${${2}_static_route}\""
$DEBUG ifconfig $if $ip ${netmask:+netmask $netmask} broadcast + up
[ -n "$ip6" ] && $DEBUG ifconfig $if add $ip6
+ [ -n "$static_route" ] && {
+ for route in $static_route; do
+ if [ "$(echo $route | cut -d \/ -f2)" != "32" ];
+ then
+ route add -net $(echo $route | cut -d \/ -f1) netmask $(echo $route | cut -d \/ -f1) dev $if
+ else
+ route add -host $(echo $route | cut -d \/ -f1) dev $if
+ fi
+ done
+ }
+
${gateway:+$DEBUG route add default gw $gateway}
[ -f /tmp/resolv.conf ] || {