From owner-freebsd-net@FreeBSD.ORG Thu Dec 18 21:43:26 2008 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A4028106564A for ; Thu, 18 Dec 2008 21:43:26 +0000 (UTC) (envelope-from steve@ibctech.ca) Received: from ibctech.ca (v6.ibctech.ca [IPv6:2607:f118::b6]) by mx1.freebsd.org (Postfix) with SMTP id 40DEE8FC1E for ; Thu, 18 Dec 2008 21:43:26 +0000 (UTC) (envelope-from steve@ibctech.ca) Received: (qmail 11020 invoked by uid 89); 18 Dec 2008 21:53:35 -0000 Received: from unknown (HELO ?IPv6:2607:f118::5?) (steve@ibctech.ca@2607:f118::5) by 2607:f118::b6 with ESMTPA; 18 Dec 2008 21:53:35 -0000 Message-ID: <494AC3FD.8040402@ibctech.ca> Date: Thu, 18 Dec 2008 16:43:25 -0500 From: Steve Bertrand User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Ivan Voras References: In-Reply-To: X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-net@freebsd.org Subject: Re: IPv6 routing help? X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Dec 2008 21:43:26 -0000 Ivan Voras wrote: > The last line correctly lists the link-local ipv6 address of the router. > This looks ok, except attempts to actually use ping6 on this address fail: > > # ping6 fe80::250:8bff:feeb:8401 > connect: Invalid argument Oh, and I've found in the past that FreeBSD requires you to add the interface name with a % sign after the v6 address when trying to communicate via link-local: #ping6 fe80::1%lo0 PING6(56=40+8+8 bytes) fe80::1%lo0 --> fe80::1%lo0 16 bytes from fe80::1%lo0, icmp_seq=0 hlim=64 time=0.224 ms 16 bytes from fe80::1%lo0, icmp_seq=1 hlim=64 time=0.131 ms ^C ...but when communicating to a global unique, you do not: #ping6 2607:f118::b6 PING6(56=40+8+8 bytes) 2607:f118::b6 --> 2607:f118::b6 16 bytes from 2607:f118::b6, icmp_seq=0 hlim=64 time=0.234 ms ^C Steve