Invalid server address

Support for the Debian/Ubuntu package, created by JCFP.
Forum rules
Help us help you:
  • Are you using the latest stable version of SABnzbd? Downloads page.
  • Tell us what system you run SABnzbd on.
  • Adhere to the forum rules.
  • Do you experience problems during downloading?
    Check your connection in Status and Interface settings window.
    Use Test Server in Config > Servers.
    We will probably ask you to do a test using only basic settings.
  • Do you experience problems during repair or unpacking?
    Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Post Reply
buzzer87
Newbie
Newbie
Posts: 1
Joined: April 23rd, 2013, 2:46 pm

Invalid server address

Post by buzzer87 »

Hi
Every time when I enter the "Host" in the server section and save it says "Invalid server address" !
It only works with the direct IP! so I think it has something to do with the dns resolving .

But when I ping http://www.google.com everything is perfect!

Code: Select all

PING www.google.com (173.194.34.112) 56(84) bytes of data.
64 bytes from lhr14s20-in-f16.1e100.net (173.194.34.112): icmp_req=1 ttl=57 time=19.2 ms
64 bytes from lhr14s20-in-f16.1e100.net (173.194.34.112): icmp_req=2 ttl=57 time=18.6 ms
64 bytes from lhr14s20-in-f16.1e100.net (173.194.34.112): icmp_req=3 ttl=57 time=19.0 ms
64 bytes from lhr14s20-in-f16.1e100.net (173.194.34.112): icmp_req=4 ttl=57 time=18.5 ms
I tried the google dns but nothing works :(

Code: Select all

cat /etc/resolv.conf
#domain fritz.box
#search fritz.box
#nameserver 192.168.0.10
nameserver 8.8.8.8
User avatar
sander
Release Testers
Release Testers
Posts: 9264
Joined: January 22nd, 2008, 2:22 pm

Re: Invalid server address

Post by sander »

What's the output on your system of the two python commands below

Code: Select all

sander@flappie:~$ python
Python 2.7.4 (default, Apr 19 2013, 18:28:01) 
[GCC 4.7.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import socket
>>> socket.getaddrinfo('www.cisco.com', None)
[(10, 1, 6, '', ('2a02:26f0:8:183::90', 0, 0, 0)), (10, 2, 17, '', ('2a02:26f0:8:183::90', 0, 0, 0)), (10, 3, 0, '', ('2a02:26f0:8:183::90', 0, 0, 0)), (10, 1, 6, '', ('2a02:26f0:8:196::90', 0, 0, 0)), (10, 2, 17, '', ('2a02:26f0:8:196::90', 0, 0, 0)), (10, 3, 0, '', ('2a02:26f0:8:196::90', 0, 0, 0)), (2, 1, 6, '', ('23.66.240.170', 0)), (2, 2, 17, '', ('23.66.240.170', 0)), (2, 3, 0, '', ('23.66.240.170', 0))]
>>> 
sander@flappie:~$
Post Reply