Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

(Python) socket.gaierror: [Errno 11001] getaddrinfo failed

Tags:

python

sockets

I'm not sure whats wrong with this code I keep getting that socket.gaierror error ;\ .

import sys
import socket
import random

filename = "whoiservers.txt"

server_name = random.choice(list(open(filename)))

print "connecting to %s..." % server_name

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((server_name, 43))
s.send(sys.argv[1] + "\r\n")
response = ''
while True:
    d = s.recv(4096)
    response += d
    if d == '':
        break
s.close()
print
print response


    s.connect((server_name, 43))
  File "<string>", line 1, in connect
socket.gaierror: [Errno 11001] getaddrinfo failed

Update:

After adding server_name = random.choice(list(open(filename)))[:-1] I dont get that socket.gaierror anymore but I get:

socket.error: [Errno 10060] A connection attempt failed because the connected pa rty did not properly respond after a period of time, or established connection f ailed because connected host has failed to respond


1 Answers

I think the problem is a newline at the end of server_name.

If the format of your file whoiservers.txt is one hostname on each line then you need to strip the newline at the end of the hostname before passing it to s.connect()

So, for example, change the open line to:

server_name = random.choice(list(open(filename)))[:-1]
like image 157
Van Gale Avatar answered May 10 '26 17:05

Van Gale



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!