From 11df62d17671534b43595b102189e06d0aed8d82 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 30 Jul 2008 22:49:25 +0000 Subject: [PATCH] link default routes added by the network scripts to the appropriate interface (#2621) SVN-Revision: 12027 --- package/base-files/files/lib/network/config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh index 3d58c63f78..b3e9fed3fb 100755 --- a/package/base-files/files/lib/network/config.sh +++ b/package/base-files/files/lib/network/config.sh @@ -184,8 +184,8 @@ setup_interface() { [ -z "$ipaddr" ] || $DEBUG ifconfig "$iface" "$ipaddr" netmask "$netmask" broadcast "${bcast:-+}" [ -z "$ip6addr" ] || $DEBUG ifconfig "$iface" add "$ip6addr" - [ -z "$gateway" ] || $DEBUG route add default gw "$gateway" - [ -z "$ip6gw" ] || $DEBUG route -A inet6 add default gw "$ip6gw" + [ -z "$gateway" ] || $DEBUG route add default gw "$gateway" dev "$iface" + [ -z "$ip6gw" ] || $DEBUG route -A inet6 add default gw "$ip6gw" dev "$iface" [ -z "$dns" ] || { for ns in $dns; do grep "$ns" /tmp/resolv.conf.auto 2>/dev/null >/dev/null || { -- 2.30.2