From fd8ec241877a19ea3ee8842f274e8e1d6454186d Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 9 Jun 2011 12:25:48 +0000 Subject: base-files: if an ip6addr without a prefix is given, assume /128 - otherwise the busybox utilities will interpret it as /0 and create an invalid default route SVN-Revision: 27145 --- package/base-files/files/lib/network/config.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'package/base-files/files') diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh index 7e4a53d..76ba324 100755 --- a/package/base-files/files/lib/network/config.sh +++ b/package/base-files/files/lib/network/config.sh @@ -235,6 +235,11 @@ setup_interface_static() { config_get bcast "$config" broadcast config_get metric "$config" metric + case "$ip6addr" in + */*) ;; + *:*) ip6addr="$ip6addr/128" ;; + esac + [ -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" ${metric:+metric $metric} dev "$iface" -- cgit v1.1