[package] base-files: Fix IPv6 address and route adding on aliases with no IPv4 addre...
authorVasilis Tsiligiannis <acinonyx@openwrt.gr>
Wed, 14 Sep 2011 13:37:44 +0000 (13:37 +0000)
committerVasilis Tsiligiannis <acinonyx@openwrt.gr>
Wed, 14 Sep 2011 13:37:44 +0000 (13:37 +0000)
SVN-Revision: 28241

package/base-files/files/lib/network/config.sh

index cf5b197b59a0f92e6eede74d5fdfd0f52a0e2917..5b349a7387b6f4295caccad57f58d098f90a87f0 100755 (executable)
@@ -261,9 +261,9 @@ setup_interface_static() {
        esac
 
        [ -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" ${metric:+metric $metric} dev "$iface"
-       [ -z "$ip6gw" ] || $DEBUG route -A inet6 add default gw "$ip6gw" ${metric:+metric $metric} dev "$iface"
+       [ -z "$ip6gw" ] || $DEBUG route -A inet6 add default gw "$ip6gw" ${metric:+metric $metric} dev "${iface%:*}"
        [ -z "$dns" ] || add_dns "$config" $dns
 
        config_get type "$config" TYPE