From: John Crispin Date: Fri, 6 Jun 2008 18:49:23 +0000 (+0000) Subject: use default gateway for routes that have no gw specified, Signed off by: Brian J... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=0d9271c86644b1ef1a70e8d30b0fe287f801ba41;hp=d3a4ab90ec3576420c26a03f80fd4afa63812316 use default gateway for routes that have no gw specified, Signed off by: Brian J. Murrell SVN-Revision: 11380 --- 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 963728faf3..4d423be600 100644 --- a/package/base-files/files/etc/hotplug.d/iface/10-routes +++ b/package/base-files/files/etc/hotplug.d/iface/10-routes @@ -20,8 +20,7 @@ add_route() { return 1 } [ -n "$gateway" ] || { - echo "Missing gateway in route section $config" - return 1 + config_get gateway "$interface" gateway } netmask="${netmask:-255.255.255.255}" @@ -52,8 +51,7 @@ add_route6() { return 1 } [ -n "$gateway" ] || { - echo "Missing gateway in route section $config" - return 1 + config_get gateway "$interface" gateway } /sbin/route -A inet6 add $target gw "$gateway" ${dev:+dev "$dev"} ${metric:+ metric "$metric"}