diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-04-19 16:51:58 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-04-19 16:51:58 +0000 |
commit | b0ea64c2113066d5ce991c9259afe3fa31e4f264 (patch) | |
tree | 78142a2d7f16aabdc24513372281cd66f5a8663b /package/base-files/files/etc | |
parent | 489252ab43a413a13e483c50ea65ea5f84f3d75b (diff) | |
download | mtk-20170518-b0ea64c2113066d5ce991c9259afe3fa31e4f264.zip mtk-20170518-b0ea64c2113066d5ce991c9259afe3fa31e4f264.tar.gz mtk-20170518-b0ea64c2113066d5ce991c9259afe3fa31e4f264.tar.bz2 |
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
SVN-Revision: 15272
Diffstat (limited to 'package/base-files/files/etc')
-rw-r--r-- | package/base-files/files/etc/hotplug.d/iface/10-routes | 7 |
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 f871ca5..9d0ea1d 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"}" |