summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-04-19 16:51:58 +0000
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-04-19 16:51:58 +0000
commiteb4ec858a373a13f70751a8bb969ba49ceaba273 (patch)
tree28e192b459800c9a85b817d20dbfa5f49232f93e /package
parent81262dbbddf3d701d8278663dafa3a9043f94e7a (diff)
[package] base-files: (#4928)
handle "option gateway 0.0.0.0" and "option gateway interface" in route sections as "no gateway given" to allow defining gateway-less routes while still keeping the possibility to have static routes with a proper gateway on interfaces with# dynamic ips git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15272 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/base-files/files/etc/hotplug.d/iface/10-routes7
1 files changed, 7 insertions, 0 deletions
diff --git a/package/base-files/files/etc/hotplug.d/iface/10-routes b/package/base-files/files/etc/hotplug.d/iface/10-routes
index f871ca528..9d0ea1d5f 100644
--- a/package/base-files/files/etc/hotplug.d/iface/10-routes
+++ b/package/base-files/files/etc/hotplug.d/iface/10-routes
@@ -23,6 +23,13 @@ add_route() {
config_get gateway "$interface" gateway
}
+ # handle "0.0.0.0" and "interface" as "no gateway given"
+ # to allow defining gateway-less routes while still
+ # keeping the possibility to have static routes with a
+ # proper gateway on interfaces with dynamic ips
+ [ "$gateway" = "0.0.0.0" -o \
+ "$gateway" = "interface" ] && gateway=""
+
dest="${netmask:+-net "$target" netmask "$netmask"}"
dest="${dest:--host "$target"}"