Free Newsservers
Re: Free Newsservers
I have the exact situation as Overburner. My default internet connection with my ISP doesn't have IPv6, but the extra connection through the SixXS tunnel does, so I get the same error he describes in the previous post.
Even though Test-IPv6.com says that I have a working IPv6 connection (apart from that error), most times I can't connect to IPv6 news servers. Such as reader.ipv6.xsnews.nl, newszilla6.xs4all.nl and weathergirl-ipv6.tele2.net with a 'failed to initialize' error. I used to be able to connect to those servers easily, now I am lucky if I do, if at all.
I tried changing the default DNS settings as Overburner, but with no success either.
Even though Test-IPv6.com says that I have a working IPv6 connection (apart from that error), most times I can't connect to IPv6 news servers. Such as reader.ipv6.xsnews.nl, newszilla6.xs4all.nl and weathergirl-ipv6.tele2.net with a 'failed to initialize' error. I used to be able to connect to those servers easily, now I am lucky if I do, if at all.
I tried changing the default DNS settings as Overburner, but with no success either.
Re: Free Newsservers
Overburner's error message is "No IPv6 address detected". Is that what you get on www.test-ipv6.com ?Vyp3R wrote:I have the exact situation as Overburner. My default internet connection with my ISP doesn't have IPv6, but the extra connection through the SixXS tunnel does, so I get the same error he describes in the previous post.
Even though Test-IPv6.com says that I have a working IPv6 connection (apart from that error), most times I can't connect to IPv6 news servers. Such as reader.ipv6.xsnews.nl, newszilla6.xs4all.nl and weathergirl-ipv6.tele2.net with a 'failed to initialize' error. I used to be able to connect to those servers easily, now I am lucky if I do, if at all.
I tried changing the default DNS settings as Overburner, but with no success either.
Re: Free Newsservers
No just the final error...sander wrote:Overburner's error message is "No IPv6 address detected". Is that what you get on http://www.test-ipv6.com ?
Code: Select all
- Your IPv4 address on the public Internet appears to be (blah...)
- Your IPv6 address on the public Internet appears to be (blah...)
- Your IPv6 service appears to be: (blah...)
- Since you have IPv6, we are including a tab that shows how well you can reach other IPv6 sites.
- Good news! Your current configuration will continue to work as web sites enable IPv6.
- Your DNS server (possibly run by your ISP) appears to have no access to the IPv6 Internet, or is not configured to use it. This may in the future restrict your ability to reach IPv6-only sites.
Re: Free Newsservers
Ah, OK. On what platform do you run SABnzbd? Has it python installed?
Based on your answers I can define a few tests ...
Based on your answers I can define a few tests ...
Re: Free Newsservers
It is the Windows installation (SABnzbd-0.7.9-win32-setup.exe) running on Windows 7 x64.sander wrote:Ah, OK. On what platform do you run SABnzbd? Has it python installed?
Re: Free Newsservers
OK, let's check your DNS / name resolution like this:Vyp3R wrote:It is the Windows installation (SABnzbd-0.7.9-win32-setup.exe) running on Windows 7 x64.sander wrote:Ah, OK. On what platform do you run SABnzbd? Has it python installed?
Code: Select all
nslookup -type=aaaa newszilla6.xs4all.nl
nslookup -type=aaaa newszilla6.xs4all.nl 8.8.8.8
Below is mine (from a WinXP I found)
Code: Select all
C:\>nslookup -type=aaaa newszilla6.xs4all.nl
Server: router.home
Address: 192.168.1.254
Non-authoritative answer:
newszilla6.xs4all.nl canonical name = newszilla.ipv6.xs4all.nl
newszilla.ipv6.xs4all.nl AAAA IPv6 address = 2001:888:0:18::119
C:\>
C:\>nslookup -type=aaaa newszilla6.xs4all.nl 8.8.8.8
Server: google-public-dns-a.google.com
Address: 8.8.8.8
Non-authoritative answer:
newszilla6.xs4all.nl canonical name = newszilla.ipv6.xs4all.nl
newszilla.ipv6.xs4all.nl AAAA IPv6 address = 2001:888:0:18::119
C:\>
Re: Free Newsservers
Code: Select all
C:\Users\Vyp3R>nslookup -type=aaaa newszilla6.xs4all.nl
Server: dsldevice.lan
Address: 192.168.1.254
Non-authoritative answer:
Name: newszilla.ipv6.xs4all.nl
Address: 2001:888:0:18::119
Aliases: newszilla6.xs4all.nl
C:\Users\Vyp3R>nslookup -type=aaaa newszilla6.xs4all.nl 8.8.8.8
Server: google-public-dns-a.google.com
Address: 8.8.8.8
Non-authoritative answer:
Name: newszilla.ipv6.xs4all.nl
Address: 2001:888:0:18::119
Aliases: newszilla6.xs4all.nl
Re: Free Newsservers
Ah ... so there is NO problem with your name resolving. Pity; I thought that was the cause. That means I have no idea what is causing this.
Just to be complete, here is the source code the gives the error message:
I don't think this code is triggered by a DNS fail or a connection fail, so I'm out of ideas.
Just to be complete, here is the source code the gives the error message:
Code: Select all
if nw.connected:
self.__request_article(nw)
else:
try:
logging.info("%s@%s:%s: Initiating connection",
nw.thrdnum, server.host, server.port)
nw.init_connect(self.write_fds)
except:
logging.error(Ta('Failed to initialize %s@%s:%s'),
nw.thrdnum, server.host,
server.port)
logging.info("Traceback: ", exc_info = True)
self.__reset_nw(nw, "failed to initialize")
Re: Free Newsservers
Gave newszilla6.xs4all.nl another go after a long time. Can't say about retention / reliability, but I was pulling down over 5MB/s. Not too shabby
Re: Free Newsservers
Yeah, it is a strange problem. Unless it lies with the SixXS tunnel?sander wrote:I don't think this code is triggered by a DNS fail or a connection fail, so I'm out of ideas.
Re: Free Newsservers
Could very well be that Sixxs blocks Usenet traffic. Here's a test:Vyp3R wrote:Yeah, it is a strange problem. Unless it lies with the SixXS tunnel?sander wrote:I don't think this code is triggered by a DNS fail or a connection fail, so I'm out of ideas.
Code: Select all
telnet newszilla6.xs4all.nl 119
On Windows 7 you first have to install the telnet client; see http://technet.microsoft.com/en-us/libr ... s.10).aspx how.
Re: Free Newsservers
sander wrote:report back what happens.
Code: Select all
201 dreader37.news.xs4all.nl NNRP Service Ready - [email protected] (no posting).
Re: Free Newsservers
Can you join this thread: http://forums.sabnzbd.org/viewtopic.php?f=3&t=12865 and continu there ... same error messages
Re: Free Newsservers
The fix on that thread of changing the value of "ipv6_servers" to 2 in Config > Special worked! Didn't occur to me to think it was a change between versions of Sabnzbd itself. Now all three IPv6 servers I mentioned before are now working well. Thanks Sander.sander wrote:Can you join this thread: http://forums.sabnzbd.org/viewtopic.php?f=3&t=12865 and continue there ... same error messages
Re: Free Newsservers
Weathergirl and free.xsusenet are both down. Hope they are not going away.
Update: Temporary, they were both back up in a few hours.
Update: Temporary, they were both back up in a few hours.
Last edited by sacii on May 2nd, 2013, 4:22 pm, edited 1 time in total.