Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 03 Nov 2002 06:54:00 +0900
From:      Hajimu UMEMOTO <ume@mahoroba.org>
To:        elitetek@tekrealm.net
Cc:        dwmalone@maths.tcd.ie, freebsd-stable@FreeBSD.ORG
Subject:   Re: ipv6 patch ( Was: ipv6 breakage or me? )
Message-ID:  <yge1y63bptz.wl%ume@mahoroba.org>
In-Reply-To: <20021102202238.GA66480@freebsd.tekrealm.net>
References:  <20021102202238.GA66480@freebsd.tekrealm.net>

next in thread | previous in thread | raw e-mail | index | archive | help
Hi,

>>>>> On Sat, 2 Nov 2002 12:22:38 -0800
>>>>> Andrew Stuart <elitetek@tekrealm.net> said:

elitetek> The patch you were talking about, was that ever applied?

elitetek> I have been fighting with 2 boxes that after going to 4.7 lost ipv6
elitetek> support, i am using the freenet6 client, tspc, it seems to connect
elitetek> and do everything its suppost to, but commands like ping6 dont seem
elitetek> to get out. I am not sure if this is related to what you guys were
elitetek> talking about.. anyways both boxes have been rebuilt oct-13 or later..

The behavior that gif was mistakenly up by tunnel creation
(SIOCSIFPHYADDR) was fixed in 4.7-RELEASE.  So, you need to do up gif
interface explicitly.  freebsd44.sh of tscp doesn't do this.  Please
try following patch:

Index: freenet6-0.9.6/template/freebsd44.sh
diff -u freenet6-0.9.6/template/freebsd44.sh.orig freenet6-0.9.6/template/freebsd44.sh
--- freenet6-0.9.6/template/freebsd44.sh.orig	Sun Nov  3 06:31:28 2002
+++ freenet6-0.9.6/template/freebsd44.sh	Sun Nov  3 06:31:50 2002
@@ -105,6 +105,7 @@
    fi
    Exec $ifconfig $TSP_TUNNEL_INTERFACE create
    Exec $gifconfig $TSP_TUNNEL_INTERFACE $TSP_CLIENT_ADDRESS_IPV4 $TSP_SERVER_ADDRESS_IPV4
+   Exec $ifconfig $TSP_TUNNEL_INTERFACE up
 
    #
    # Configured tunnel config (IPv6) 

freebsd44.sh seems to assing address.  So, essentially, it should be
okay wishout above patch.  However, unfortunately, gif has one more
problem that it doesn't up by address assign (SIOCSIFADDR).  This
problem was fixed in 5-CURRENT, and it will be MFC'ed.

Sincerely,

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

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-stable" in the body of the message




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