Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 29 Aug 2009 01:13:09 +0900
From:      Hajimu UMEMOTO <ume@FreeBSD.org>
To:        dougb@FreeBSD.org
Cc:        stable@FreeBSD.org, current@FreeBSD.org
Subject:   (no subject)
Message-ID:  <yge8wh3hq7e.wl%ume@mahoroba.org>

next in thread | raw e-mail | index | archive | help
Subject r196566 broke to assign IPv6 address on bridge0
User-Agent: Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8
 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.7 Emacs/22.3 (i386-portbld-freebsd7.2)
 MULE/5.0 (SAKAKI)
X-Operating-System: FreeBSD 7.2-STABLE
X-PGP-Key: http://www.imasy.or.jp/~ume/publickey.asc
X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5  BF5F 04E9 F086 BF90 71FE
Organization: Internet Mutual Aid Society, YOKOHAMA

Hi,

r196566 broke to assign an IPv6 address on bridge0 on my RELENG_8 box
with following configuration:

	ifconfig_bridge0="inet6 fe80::XXXX addm bge0 up"
	ipv6_enable="YES"
	ipv6_network_interfaces="bridge0"

And, I changed is_wired_interface() to following fixed my problem for
workaround:

	is_wired_interface()
	{
		local media

		if [ $i = bridge0 ]; then
			return 0
		fi
		case `ifconfig $1 2>/dev/null` in
		*media:?Ethernet*) media=Ethernet ;;
		esac

		test "$media" = "Ethernet"
	}

I think media should be checked with `IEEE 802.11 Wireless Ethernet'.

Sincerely,

--
Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan
ume@mahoroba.org  ume@{,jp.}FreeBSD.org
http://www.imasy.org/~ume/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?yge8wh3hq7e.wl%ume>