What happened? It seems Chrome and Chromium on Linux don't use IPv6 if the IPv6 is provided by teredo / miredo.
Everything works in Firefox, Miredo, lynx, ping6, etc with ipv6.google.com.
It looks like Chromium does not do a IPv6 DNS lookup; if I use a literal IPv6 address, it still works in Chromium.
I'm quite sure it all worked earlier on. Is Chrome/Chromium going the Windows way, so "if teredo, do not lookup IPv6 addresses"?
Sunday, August 30, 2015
Saturday, July 11, 2015
Check IPv6 enabled tracker in torrent
Here's an ugly oneliner to see if a torrent has IPv6 enabled trackers in it:
$ strings ubuntu-14.04.2-desktop-amd64.iso.torrent | head -1 | tr '/' '\n' | awk -F: ' $1 ~ /\./ { print "host -t aaaa " $1 }' | /bin/sh | grep -vi "has no AAAA"
ipv6.torrent.ubuntu.com is an alias for ubuntuv6tracker.bit.nl.
ubuntuv6tracker.bit.nl has IPv6 address 2001:7b8:3:37::21:3
$ strings ubuntu-14.04.2-desktop-amd64.iso.torrent | head -1 | tr '/' '\n' | awk -F: ' $1 ~ /\./ { print "host -t aaaa " $1 }' | /bin/sh | grep -vi "has no AAAA"
ubuntuv6tracker.bit.nl has IPv6 address 2001:7b8:3:37::21:3
So, yes, this torrent has an IPv6 enabled tracker.
I got this torrent from http://ipv6.torrent.ubuntu.com/, which only works via IPv6.
Openwrt: Allow all incoming IPv6 traffic
I run OpenWrt Barrier Breaker 14.07 on my router. Default it blocks all incoming IPv6 traffic. To accept all incoming IPv6 traffic, I did this:
In the file /etc/firewall.user put this:
ip6tables -F
ip6tables -X
ip6tables -A INPUT -p icmpv6 -j ACCEPT
ip6tables -P INPUT ACCEPT
ip6tables -P OUTPUT ACCEPT
ip6tables -P FORWARD ACCEPT
Saven and exit. Then
/etc/init.d/firewall restart
And that's it! All my IPv6 hosts are open to Internet.
Starting Nmap 6.40 ( http://nmap.org ) at 2015-07-11 12:05 CEST
Nmap scan report for 2001:bad:cafe::1
Host is up (0.0055s latency).
Not shown: 988 closed ports
PORT STATE SERVICE
22/tcp open ssh
25/tcp filtered smtp
80/tcp open http
139/tcp open netbios-ssn
445/tcp open microsoft-ds
6666/tcp filtered irc
6667/tcp filtered irc
6668/tcp filtered irc
6669/tcp filtered irc
7000/tcp filtered afs3-fileserver
8080/tcp open http-proxy
9999/tcp filtered abyss
Nmap done: 1 IP address (1 host up) scanned in 18.02 seconds
As that's a bit too much, I'll now close down the firewall a bit.
In the file /etc/firewall.user put this:
ip6tables -F
ip6tables -X
ip6tables -A INPUT -p icmpv6 -j ACCEPT
ip6tables -P INPUT ACCEPT
ip6tables -P OUTPUT ACCEPT
ip6tables -P FORWARD ACCEPT
Saven and exit. Then
/etc/init.d/firewall restart
And that's it! All my IPv6 hosts are open to Internet.
Starting Nmap 6.40 ( http://nmap.org ) at 2015-07-11 12:05 CEST
Nmap scan report for 2001:bad:cafe::1
Host is up (0.0055s latency).
Not shown: 988 closed ports
PORT STATE SERVICE
22/tcp open ssh
25/tcp filtered smtp
80/tcp open http
139/tcp open netbios-ssn
445/tcp open microsoft-ds
6666/tcp filtered irc
6667/tcp filtered irc
6668/tcp filtered irc
6669/tcp filtered irc
7000/tcp filtered afs3-fileserver
8080/tcp open http-proxy
9999/tcp filtered abyss
Nmap done: 1 IP address (1 host up) scanned in 18.02 seconds
As that's a bit too much, I'll now close down the firewall a bit.
Monday, May 11, 2015
IPv6 Newsservers
Based on http://ipv6-or-no-ipv6.blogspot.com/2015/05/newsprovider-xsnews-offers-ipv6-access.html I wrote an oneliner to find out Xsnews resellers that provide IPv6 NNTP access. Oneliner plus result:
$ python lusje.py | awk '{ print "./nntptester.py " $1 }' | /bin/sh | grep -vi unconfigured | grep -i -B1 -e "^200"
Newsserver is 2001:67c:174:101:0:65:ff02:1
200 Welcome to Usenet2go
--
Newsserver is 2001:67c:174:101:0:65:ff02:121
200 Welcome to Astinews
--
Newsserver is 2001:67c:174:101:0:65:ff02:122
200 Welcome to Newsxs
--
Newsserver is 2001:67c:174:101:0:65:ff02:126
200 Welcome to Bullcat
--
Newsserver is 2001:67c:174:101:0:65:ff02:129
200 Welcome to Unet
--
Newsserver is 2001:67c:174:101:0:65:ff02:131
200 Welcome to XS News
--
Newsserver is 2001:67c:174:101:0:65:ff02:132
200 Welcome to I-Telligent
--
Newsserver is 2001:67c:174:101:0:65:ff02:133
200 Banner Welcome to Aviteo Ltd DE
--
Newsserver is 2001:67c:174:101:0:65:ff02:135
200 Welcome to Its Hosted
To get a better formatting, I fed the above list into another oneliner:
$ cat xsnews-resellers-with-ipv6.txt | grep -vi "\-\-" | awk ' /Newsserver/ { print $NF } /Welcome/ { print substr($0,4+index($0," to ")) }' | paste - - -d' '
2001:67c:174:101:0:65:ff02:1 Usenet2go
2001:67c:174:101:0:65:ff02:121 Astinews
2001:67c:174:101:0:65:ff02:122 Newsxs
2001:67c:174:101:0:65:ff02:126 Bullcat
2001:67c:174:101:0:65:ff02:129 Unet
2001:67c:174:101:0:65:ff02:131 XS News
2001:67c:174:101:0:65:ff02:132 I-Telligent
2001:67c:174:101:0:65:ff02:133 Aviteo Ltd DE
2001:67c:174:101:0:65:ff02:135 Its Hosted
So, if you have an account with one of these news providers, you can now access them via IPv6. And if these resellers do not publish a FQDN for their IPv6 newsserver, you can just fill out the IPv6 address in your IPv6 capable newsreader (like SABnzbd)
$ python lusje.py | awk '{ print "./nntptester.py " $1 }' | /bin/sh | grep -vi unconfigured | grep -i -B1 -e "^200"
Newsserver is 2001:67c:174:101:0:65:ff02:1
200 Welcome to Usenet2go
--
Newsserver is 2001:67c:174:101:0:65:ff02:121
200 Welcome to Astinews
--
Newsserver is 2001:67c:174:101:0:65:ff02:122
200 Welcome to Newsxs
--
Newsserver is 2001:67c:174:101:0:65:ff02:126
200 Welcome to Bullcat
--
Newsserver is 2001:67c:174:101:0:65:ff02:129
200 Welcome to Unet
--
Newsserver is 2001:67c:174:101:0:65:ff02:131
200 Welcome to XS News
--
Newsserver is 2001:67c:174:101:0:65:ff02:132
200 Welcome to I-Telligent
--
Newsserver is 2001:67c:174:101:0:65:ff02:133
200 Banner Welcome to Aviteo Ltd DE
--
Newsserver is 2001:67c:174:101:0:65:ff02:135
200 Welcome to Its Hosted
Better formatting
To get a better formatting, I fed the above list into another oneliner:
$ cat xsnews-resellers-with-ipv6.txt | grep -vi "\-\-" | awk ' /Newsserver/ { print $NF } /Welcome/ { print substr($0,4+index($0," to ")) }' | paste - - -d' '
2001:67c:174:101:0:65:ff02:1 Usenet2go
2001:67c:174:101:0:65:ff02:121 Astinews
2001:67c:174:101:0:65:ff02:122 Newsxs
2001:67c:174:101:0:65:ff02:126 Bullcat
2001:67c:174:101:0:65:ff02:129 Unet
2001:67c:174:101:0:65:ff02:131 XS News
2001:67c:174:101:0:65:ff02:132 I-Telligent
2001:67c:174:101:0:65:ff02:133 Aviteo Ltd DE
2001:67c:174:101:0:65:ff02:135 Its Hosted
So, if you have an account with one of these news providers, you can now access them via IPv6. And if these resellers do not publish a FQDN for their IPv6 newsserver, you can just fill out the IPv6 address in your IPv6 capable newsreader (like SABnzbd)
Newsprovider Xsnews offers IPv6 access
Nice: Newsprovider Xsnews (www.xsnews.com) offers IPv6 access via its news server readeripv6.xsnews.nl.
$ telnet readeripv6.xsnews.nl nntp
Trying 2001:67c:174:101:0:65:ff02:131...
Connected to readeripv6.xsnews.nl.
Escape character is '^]'.
200 Welcome to XS News
quit
205 Bye. 24 bytes written, 0 accounted.
Connection closed by foreign host.
I did a download test, and got line speed (100 Mbps).
readeripv6.xsnews.nl has IPv6 address 2001:67c:174:101:0:65:ff02:131
reader.xsnews.nl has address 94.232.116.131
Note the last "131" ... that is probably the link.
Xsnews is a wholesaler offering its services to resellers. The list on https://vergelijkusenetproviders.nl/usenet-provider-lijst/ shows the resellers of Xsnews.
Aeton XSNews
AstiNews XSNews
Bulknews XSNews
EasyUsenet XSNews
Easynews XSNews
Gebruikhet XSNews
NewsConnection XSNews
NewsGrabber XSNews
NewsXS XSNews
Power News XSNews
SimplyUsenet XSNews
SMSUsenet XSNews
SnelNL XSNews
SSL-News XSNews
Surfino XSNews
Usebits XSNews
Usenet2Go XSNews
Usenet4U XSNews
UsenetBucket XSNews
UsenetXL XSNews
Wondernews XSNews
XsNews XSNews
YabNews XSNews
FWIW: in the old days, Xsnews offered free access IPv6, but that NNTP server is not providing news services anymore:
$ telnet reader.ipv6.xsnews.nl nntp
Trying 2001:67c:174:101::1337...
Connected to reader.ipv6.xsnews.nl.
Escape character is '^]'.
500 Thank you for testing IPv6. XSNews now offers IPv6 on all packages. Register now at www.xsnews.com
Connection closed by foreign host.
Note the subtle difference: readeripv6.xsnews.nl versus reader.ipv6.xsnews.nl ... so just one dot.
$ telnet readeripv6.xsnews.nl nntp
Trying 2001:67c:174:101:0:65:ff02:131...
Connected to readeripv6.xsnews.nl.
Escape character is '^]'.
200 Welcome to XS News
quit
205 Bye. 24 bytes written, 0 accounted.
Connection closed by foreign host.
I did a download test, and got line speed (100 Mbps).
Further analysis
readeripv6.xsnews.nl has IPv6 address 2001:67c:174:101:0:65:ff02:131
reader.xsnews.nl has address 94.232.116.131
Note the last "131" ... that is probably the link.
Xsnews is a wholesaler offering its services to resellers. The list on https://vergelijkusenetproviders.nl/usenet-provider-lijst/ shows the resellers of Xsnews.
Aeton XSNews
AstiNews XSNews
Bulknews XSNews
EasyUsenet XSNews
Easynews XSNews
Gebruikhet XSNews
NewsConnection XSNews
NewsGrabber XSNews
NewsXS XSNews
Power News XSNews
SimplyUsenet XSNews
SMSUsenet XSNews
SnelNL XSNews
SSL-News XSNews
Surfino XSNews
Usebits XSNews
Usenet2Go XSNews
Usenet4U XSNews
UsenetBucket XSNews
UsenetXL XSNews
Wondernews XSNews
XsNews XSNews
YabNews XSNews
So let's check Yabnews:
news.yabnews.nl has address 94.232.116.127
So same IP address as reader.xsnews.nl, except the last byte: 127 instead of 131. So let's check the 'corresponding' IPv6:
$ telnet 2001:67c:174:101:0:65:ff02:127 nntp
Trying 2001:67c:174:101:0:65:ff02:127...
Connected to 2001:67c:174:101:0:65:ff02:127.
Escape character is '^]'.
200 Welcome to an unconfigured NNTP server.
quit
205 Bye. 45 bytes written, 0 accounted.
Connection closed by foreign host.
Bingo. Still "unconfigured NNTP server", but probably reserved for Yabnews.
Old free service ... not anymore
FWIW: in the old days, Xsnews offered free access IPv6, but that NNTP server is not providing news services anymore:
$ telnet reader.ipv6.xsnews.nl nntp
Trying 2001:67c:174:101::1337...
Connected to reader.ipv6.xsnews.nl.
Escape character is '^]'.
500 Thank you for testing IPv6. XSNews now offers IPv6 on all packages. Register now at www.xsnews.com
Connection closed by foreign host.
Note the subtle difference: readeripv6.xsnews.nl versus reader.ipv6.xsnews.nl ... so just one dot.
Sunday, April 12, 2015
IPv6 usage by German ISPs
IPv6 usage by German ISPs:
$ ./show-ipv6-usage-sorted-on-percentage.sh | grep -e "^DE"
DE --- SPEEDPARTNER SpeedPartner GmbH --- 88.66%
DE --- DE-DGW FL!NK GmbH --- 41.94%
DE --- INTERSCHOLZ-AS interscholz Internet Services GmbH & Co. KG --- 36.01%
DE --- DEGNET DegNet GmbH --- 27.61%
DE --- DELUNET inexio Informationstechnologie und TelekommunikationKGaA --- 23.81%
DE --- DTAG Deutsche Telekom AG --- 20.12%
DE --- MWN-AS Leibniz-Rechenzentrum --- 19.84%
DE --- KIT Karlsruhe Institute of Technology (KIT) --- 18.16%
DE --- BELWUE Landeshochschulnetz Baden-Wuerttemberg (BelWue) --- 9.66%
DE --- MANITU manitu GmbH --- 5.77%
DE --- IKS IKS Service GmbH --- 1.12%
DE --- SCALEUP ScaleUp Technologies GmbH & Co. KG --- 1.11%
DE --- FILOO-ASN filoo GmbH Autonomous System --- 0.19%
DE --- ADDIX-AS ADDIX Internet Services GmbH --- 0.10%
$ ./show-ipv6-usage-sorted-on-percentage.sh | grep -e "^DE"
DE --- SPEEDPARTNER SpeedPartner GmbH --- 88.66%
DE --- DE-DGW FL!NK GmbH --- 41.94%
DE --- INTERSCHOLZ-AS interscholz Internet Services GmbH & Co. KG --- 36.01%
DE --- DEGNET DegNet GmbH --- 27.61%
DE --- DELUNET inexio Informationstechnologie und TelekommunikationKGaA --- 23.81%
DE --- DTAG Deutsche Telekom AG --- 20.12%
DE --- MWN-AS Leibniz-Rechenzentrum --- 19.84%
DE --- KIT Karlsruhe Institute of Technology (KIT) --- 18.16%
DE --- BELWUE Landeshochschulnetz Baden-Wuerttemberg (BelWue) --- 9.66%
DE --- MANITU manitu GmbH --- 5.77%
DE --- IKS IKS Service GmbH --- 1.12%
DE --- SCALEUP ScaleUp Technologies GmbH & Co. KG --- 1.11%
DE --- FILOO-ASN filoo GmbH Autonomous System --- 0.19%
DE --- ADDIX-AS ADDIX Internet Services GmbH --- 0.10%
ISPs with highest percentage IPv6 usage
ISPs with highest percentage IPv6 usage ... including country code:
SI --- GO6 Zavod za IPv6 - go6 --- 100.00%
PL --- ORANGE-PL Orange Polska Spolka Akcyjna --- 100.00%
US --- DNIC-AS-00022 - Navy Network Information Center (NNIC) --- 93.10%
CH --- SNOWFLAKE snowflake productions gmbh --- 91.75%
DE --- SPEEDPARTNER SpeedPartner GmbH --- 88.66%
MX --- Centros Culturales de Mexico, A.C. --- 84.19%
BR --- FUNDACAO PARQUE TECNOLOGICO ITAIPU - BRASIL --- 78.68%
US --- LSU-1 - Louisiana State University --- 74.27%
IT --- TOPIX-AS Consorzio Topix - Torino e Piemonte Exchange Point --- 73.86%
US --- MARIST - Marist College --- 68.62%
CZ --- VUTBR-AS Brno University of Technology --- 68.49%
BR --- UNIVERSIDADE ESTADUAL DE PONTA GROSSA --- 67.97%
US --- PRGMR - prgmr.com, Inc. --- 67.92%
US --- GOOGLE-FIBER - Google Fiber Inc. --- 65.84%
US --- CELLCO-PART - Cellco Partnership DBA Verizon Wireless --- 61.87%
IT --- FUSOLAB Fusolab Onlus --- 61.37%
CZ --- CZNIC-AS CZ.NIC, z.s.p.o. --- 60.46%
US --- BUFFALO-ASN - University of Buffalo --- 60.03%
BE --- ASBRUTELE Brutele SC --- 57.78%
US --- UVM-EDU-AS - University of Vermont --- 56.84%
SE --- NETNOD-IX Netnod Internet Exchange Sverige AB --- 56.68%
NL --- XS4ALL-NL XS4ALL Internet BV --- 55.23%
US --- UPENN - University of Pennsylvania --- 54.07%
US --- RPI-AS - Rensselaer Polytechnic Institute --- 52.94%
BE --- TELENET-AS Telenet N.V. --- 52.62%
US --- VA-TECH-AS - Virginia Polytechnic Institute and State Univ. --- 52.05%
CH --- MIRONET-AS MiroNet AG --- 50.62%
SI --- GO6 Zavod za IPv6 - go6 --- 100.00%
PL --- ORANGE-PL Orange Polska Spolka Akcyjna --- 100.00%
US --- DNIC-AS-00022 - Navy Network Information Center (NNIC) --- 93.10%
CH --- SNOWFLAKE snowflake productions gmbh --- 91.75%
DE --- SPEEDPARTNER SpeedPartner GmbH --- 88.66%
MX --- Centros Culturales de Mexico, A.C. --- 84.19%
BR --- FUNDACAO PARQUE TECNOLOGICO ITAIPU - BRASIL --- 78.68%
US --- LSU-1 - Louisiana State University --- 74.27%
IT --- TOPIX-AS Consorzio Topix - Torino e Piemonte Exchange Point --- 73.86%
US --- MARIST - Marist College --- 68.62%
CZ --- VUTBR-AS Brno University of Technology --- 68.49%
BR --- UNIVERSIDADE ESTADUAL DE PONTA GROSSA --- 67.97%
US --- PRGMR - prgmr.com, Inc. --- 67.92%
US --- GOOGLE-FIBER - Google Fiber Inc. --- 65.84%
US --- CELLCO-PART - Cellco Partnership DBA Verizon Wireless --- 61.87%
IT --- FUSOLAB Fusolab Onlus --- 61.37%
CZ --- CZNIC-AS CZ.NIC, z.s.p.o. --- 60.46%
US --- BUFFALO-ASN - University of Buffalo --- 60.03%
BE --- ASBRUTELE Brutele SC --- 57.78%
US --- UVM-EDU-AS - University of Vermont --- 56.84%
SE --- NETNOD-IX Netnod Internet Exchange Sverige AB --- 56.68%
NL --- XS4ALL-NL XS4ALL Internet BV --- 55.23%
US --- UPENN - University of Pennsylvania --- 54.07%
US --- RPI-AS - Rensselaer Polytechnic Institute --- 52.94%
BE --- TELENET-AS Telenet N.V. --- 52.62%
US --- VA-TECH-AS - Virginia Polytechnic Institute and State Univ. --- 52.05%
CH --- MIRONET-AS MiroNet AG --- 50.62%
Subscribe to:
Posts (Atom)