mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-26 15:17:44 +02:00
link default routes added by the network scripts to the appropriate interface (#2621)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12027 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
e49ecf1adf
commit
81de0abd55
@ -184,8 +184,8 @@ setup_interface() {
|
|||||||
|
|
||||||
[ -z "$ipaddr" ] || $DEBUG ifconfig "$iface" "$ipaddr" netmask "$netmask" broadcast "${bcast:-+}"
|
[ -z "$ipaddr" ] || $DEBUG ifconfig "$iface" "$ipaddr" netmask "$netmask" broadcast "${bcast:-+}"
|
||||||
[ -z "$ip6addr" ] || $DEBUG ifconfig "$iface" add "$ip6addr"
|
[ -z "$ip6addr" ] || $DEBUG ifconfig "$iface" add "$ip6addr"
|
||||||
[ -z "$gateway" ] || $DEBUG route add default gw "$gateway"
|
[ -z "$gateway" ] || $DEBUG route add default gw "$gateway" dev "$iface"
|
||||||
[ -z "$ip6gw" ] || $DEBUG route -A inet6 add default gw "$ip6gw"
|
[ -z "$ip6gw" ] || $DEBUG route -A inet6 add default gw "$ip6gw" dev "$iface"
|
||||||
[ -z "$dns" ] || {
|
[ -z "$dns" ] || {
|
||||||
for ns in $dns; do
|
for ns in $dns; do
|
||||||
grep "$ns" /tmp/resolv.conf.auto 2>/dev/null >/dev/null || {
|
grep "$ns" /tmp/resolv.conf.auto 2>/dev/null >/dev/null || {
|
||||||
|
Loading…
Reference in New Issue
Block a user