summaryrefslogtreecommitdiffstats
path: root/package/base-files/files/lib
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-07-30 22:49:25 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-07-30 22:49:25 +0000
commit11df62d17671534b43595b102189e06d0aed8d82 (patch)
treea0b9962c93b492348f0e793a60a99b9ffce0279a /package/base-files/files/lib
parentee56e9ec59c6f657683cf465da4634bee4822fea (diff)
downloadmaster-31e0f0ae-11df62d17671534b43595b102189e06d0aed8d82.tar.gz
master-31e0f0ae-11df62d17671534b43595b102189e06d0aed8d82.tar.bz2
master-31e0f0ae-11df62d17671534b43595b102189e06d0aed8d82.zip
link default routes added by the network scripts to the appropriate interface (#2621)
SVN-Revision: 12027
Diffstat (limited to 'package/base-files/files/lib')
-rwxr-xr-xpackage/base-files/files/lib/network/config.sh4
1 files 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 || {