From owner-freebsd-current@FreeBSD.ORG Thu Aug 11 02:39:41 2005 Return-Path: X-Original-To: current@freebsd.org Delivered-To: freebsd-current@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8812616A420 for ; Thu, 11 Aug 2005 02:39:41 +0000 (GMT) (envelope-from sean@mcneil.com) Received: from mail.mcneil.com (mcneil.com [24.199.45.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC4C143D5C for ; Thu, 11 Aug 2005 02:39:40 +0000 (GMT) (envelope-from sean@mcneil.com) Received: from localhost (localhost.mcneil.com [127.0.0.1]) by mail.mcneil.com (Postfix) with ESMTP id 43742F20F3 for ; Wed, 10 Aug 2005 19:39:40 -0700 (PDT) Received: from mail.mcneil.com ([127.0.0.1]) by localhost (server.mcneil.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00792-01 for ; Wed, 10 Aug 2005 19:39:38 -0700 (PDT) Received: from mcneil.com (mcneil.com [24.199.45.54]) by mail.mcneil.com (Postfix) with ESMTP id 2EB87F18EC for ; Wed, 10 Aug 2005 19:39:38 -0700 (PDT) From: Sean McNeil To: current@freebsd.org Content-Type: text/plain Organization: Sean McNeil Consulting, Inc Date: Wed, 10 Aug 2005 19:39:37 -0700 Message-Id: <1123727977.1382.7.camel@server.mcneil.com> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at mcneil.com X-Mailman-Approved-At: Thu, 11 Aug 2005 12:03:09 +0000 Cc: Subject: IPv6, ntpd, and kpasswdd X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sean@mcneil.com List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Aug 2005 02:39:41 -0000 I have successfully setup my network with IPv6. In doing so, I setup my two NICs with ipv6_prefix_dc0="2002:18c7:2d36:0000" ipv6_prefix_re0="2002:18c7:2d36:0001" to correspond to my 6to4 addressing. This adds 2 inet6 addresses to my ifconfig: dc0: flags=108843 mtu 1500 inet6 2002:18c7:2d36:0:203:6dff:fe1a:b19b prefixlen 64 inet6 2002:18c7:2d36:: prefixlen 64 anycast re0: flags=8843 mtu 1500 inet6 2002:18c7:2d36:1:20c:76ff:fee9:2c58 prefixlen 64 inet6 2002:18c7:2d36:1:: prefixlen 64 anycast ntpd and kpasswdd are having difficulty with the anycast addresses: Aug 10 19:24:28 server kpasswdd[632]: bind(IPv6:2002:18c7:2d36::): Can't assign requested address Aug 10 19:24:28 server kpasswdd[632]: bind(IPv6:2002:18c7:2d36:1::): Can't assign requested address Aug 10 19:24:29 server ntpd[739]: bind() fd 10, family 28, port 123, addr 2002:18c7:2d36::, in6_is_addr_multicast=0 flags=0 fails: Can't assign requested address Aug 10 19:24:29 server ntpd[739]: bind() fd 13, family 28, port 123, addr 2002:18c7:2d36:1::, in6_is_addr_multicast=0 flags=0 fails: Can't assign requested address Question: Is an anycast address multicast? If so, shouldn't ntpd say "in6_is_addr_multicast=1"? I know this is harmless (at least appears to be), but I'd like to clean it up. Any ideas? Sean