From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qa0-x232.google.com (mail-qa0-x232.google.com [IPv6:2607:f8b0:400d:c00::232]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by huchra.bufferbloat.net (Postfix) with ESMTPS id 27B4021F28B for ; Tue, 4 Nov 2014 14:53:37 -0800 (PST) Received: by mail-qa0-f50.google.com with SMTP id bm13so8854803qab.37 for ; Tue, 04 Nov 2014 14:53:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:content-type:subject:message-id:date:to:mime-version; bh=ZRQP3JWPrBVBCv7rJ3qe4Cxw1XBWTCsSOQWomz3tTZg=; b=SCNskOPWlTyNM+f2tWeVaux5i1j8rI4wa5Y8ssYx7v/WkEOPgWVAFgQN20zDUwQzeh ZU/qdE5JAUv+MAMrsI0ywcTYhomBoeCIRW3eZtvKU8DhtCQI2vLSiz6lHY/CIrY+2pM/ BDwc2cXpztiy9/JH7DrjPJkI1Zie54IU1d5DGIzEPnXUYtuvO3RZhQBJrM239Mu245qC bDMk3YoHkQeEnawo4HBOaBdhvChhsmQVAII9AQZnPLag3wpDneOsYhqkmNZLVh1Qf3tA 0RacanmT4Nr0MMYp4PZ8q91+UvaN4pNU2Lpfwhjb4z9HOnnPw8lqnaxUXY8Q8j1C720E k0ZA== X-Received: by 10.140.95.106 with SMTP id h97mr75219778qge.97.1415141616460; Tue, 04 Nov 2014 14:53:36 -0800 (PST) Received: from richs-mbp-6751.home.lan (pool-72-87-56-106.ptldme.east.myfairpoint.net. [72.87.56.106]) by mx.google.com with ESMTPSA id n10sm1574043qax.40.2014.11.04.14.53.34 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 04 Nov 2014 14:53:34 -0800 (PST) From: Rich Brown Content-Type: multipart/signed; boundary="Apple-Mail=_D9A05615-81D9-449A-B396-4BAB76FDFCCA"; protocol="application/pgp-signature"; micalg=pgp-sha512 Message-Id: <62D6B2E7-01B1-43CF-8C71-177EDDE51144@gmail.com> Date: Tue, 4 Nov 2014 17:53:33 -0500 To: cerowrt-devel Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) X-Mailer: Apple Mail (2.1878.6) Subject: [Cerowrt-devel] Update: IPv6 tunnel through Hurricane Electric X-BeenThere: cerowrt-devel@lists.bufferbloat.net X-Mailman-Version: 2.1.13 Precedence: list List-Id: Development issues regarding the cerowrt test router project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Nov 2014 22:54:06 -0000 --Apple-Mail=_D9A05615-81D9-449A-B396-4BAB76FDFCCA Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii Folks, Not having looked at the 6in4 tunnel through Hurricane Electric since = the spring, I decided to try it again. The script on the wiki = (http://www.bufferbloat.net/projects/cerowrt/wiki) didn't work out of = the box, and I discovered that OpenWrt (and therefore CeroWrt) needs a = tweak to a parameter passed in the script. When the original IPv6 Tunnel note on the wiki was written, = authentication required the long alphanumeric user string. Sometime = afterwards (see reference to change set 41358 in = http://wiki.openwrt.org/doc/howto/ipv6 ) that parameter changed to the = plain USERID (also shown as the "Account Name" on the = http://tunnelbroker.net site). So the tunnel.sh script should be changed = as shown below. You should, of course, fill in your own parameters. Rich ... from the tunnel.sh script ... # =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # Create a 6in4 interface to tunnel IPv6. These steps show how to # set the credentials for a Hurricane Electric tunnel # First create an account at http://HE.net, then use their # Example Configurations page to get the specifics, which are # automatically generated specifically for *your* tunnel=20 # Copy/paste the information from the Example Configurations # generated for the OpenWRT Backfire 10.03.1 dropdown # # NOTE: AS OF CeroWrt 3.10.50-1 THE 'username' SHOULD BE YOUR USERID # (ALSO SHOWN AS YOUR "Account Name:") NOT THE LONG ALPHANUMERIC = STRING # THIS IS DIFFERENT FROM THE OPENWRT CONFIG FROM THE WEB PAGE # echo 'Setting up HE.net tunnel' # ------- USE THE INFORMATION FROM TUNNELBROKER.NET HERE -------- uci set network.henet=3Dinterface uci set network.henet.proto=3D6in4 uci set network.henet.peeraddr=3Dxxx.xxx.xxx.xxx uci set network.henet.ip6addr=3D'2001:470:ABCD::2/64' uci set network.henet.tunnelid=3D123456 uci set network.henet.username=3D'your-userid (NOT the long alphanumeric = string)' uci set network.henet.password=3D'your-password' # ------- END OF TUNNELBROKER.NET INFO -------- # ------- Additional configuration info required for the tunnel -------- # This automatically assigns each LAN interface a /64 from your routed = /48 uci set network.henet.ip6prefix=3D'2001:470:ABCD::/48' # Replace = 'ABCD' with your routed /48 prefix from HE.net uci set network.henet.mtu=3D1424 uci set network.henet.ttl=3D64 uci commit network --Apple-Mail=_D9A05615-81D9-449A-B396-4BAB76FDFCCA Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJUWVjtAAoJEH4agC/0z73/IisH/RVodWZmyk1ojiyo3EzEBaAH 9Ss0lI7JKD6N6hfpLs3p7jYQIIEhXTMjBCh433IIo3xKNhjbtia4hklzkZjEAobC 07WnNwj84JE2/02MvqwmfoT/Ils0pd+Ai3TH1JpaJmubu59HfS0+8PAdmql8yMGf mmsSCUAIwkvGd1tb1TZ9xUJr0Rif0KQvicDpSxpe51dfFo+Gbypcfy6WA+JR3Xy4 Fz/78DoYUSOA0w8a6b9i4GC6s2Z3J0bUGhfOGWZY5PMWFArqp78YCyHjqZMTWSFi xxQrZJDf7+1CsrpTl0RYZoykG33mP+qzuhbHc8e08aUM+Ena184VFOdXjv3WnAQ= =g8KK -----END PGP SIGNATURE----- --Apple-Mail=_D9A05615-81D9-449A-B396-4BAB76FDFCCA--