Python'da / etc / hosts da dahil olmak üzere DNS aramalarını nasıl yapabilirim?


98

dnspython , DNS aramalarımı çok güzel yapacak, ancak içeriğini tamamen görmezden geliyor /etc/hosts.

Doğru şeyi yapacak bir python kütüphanesi çağrısı var mı? ör. ilk girişi kontrol edin etc/hostsve aksi takdirde yalnızca DNS aramalarına geri dönün?

Yanıtlar:


120

DNS aramalarını kendiniz mi yapmak istediğinizden yoksa sadece bir sunucunun ipini mi istediğinizden emin değilim . İkincisini istiyorsanız,

import socket
print(socket.gethostbyname('localhost')) # result from hosts file
print(socket.gethostbyname('google.com')) # your os sends out a dns query

91

Python'daki normal ad çözümlemesi iyi çalışıyor. Bunun için neden DNSpython'a ihtiyacınız var? Hemen kullanım soket 'in getaddrinfoDebian (işletim sisteminiz için yapılandırılan kurallara uyar, bu izler /etc/nsswitch.conf:

>>> print socket.getaddrinfo('google.com', 80)
[(10, 1, 6, '', ('2a00:1450:8006::63', 80, 0, 0)), (10, 2, 17, '', ('2a00:1450:8006::63', 80, 0, 0)), (10, 3, 0, '', ('2a00:1450:8006::63', 80, 0, 0)), (10, 1, 6, '', ('2a00:1450:8006::68', 80, 0, 0)), (10, 2, 17, '', ('2a00:1450:8006::68', 80, 0, 0)), (10, 3, 0, '', ('2a00:1450:8006::68', 80, 0, 0)), (10, 1, 6, '', ('2a00:1450:8006::93', 80, 0, 0)), (10, 2, 17, '', ('2a00:1450:8006::93', 80, 0, 0)), (10, 3, 0, '', ('2a00:1450:8006::93', 80, 0, 0)), (2, 1, 6, '', ('209.85.229.104', 80)), (2, 2, 17, '', ('209.85.229.104', 80)), (2, 3, 0, '', ('209.85.229.104', 80)), (2, 1, 6, '', ('209.85.229.99', 80)), (2, 2, 17, '', ('209.85.229.99', 80)), (2, 3, 0, '', ('209.85.229.99', 80)), (2, 1, 6, '', ('209.85.229.147', 80)), (2, 2, 17, '', ('209.85.229.147', 80)), (2, 3, 0, '', ('209.85.229.147', 80))]

2
list( map( lambda x: x[4][0], socket.getaddrinfo( \
     'www.example.com.',22,type=socket.SOCK_STREAM)))

www.example.com için adreslerin bir listesini verir. (ipv4 ve ipv6)


1

Bu kod, belirli bir URI'ye ait olabilecek tüm IP adreslerini döndürmek için iyi çalışır. Birçok sistem artık barındırılan bir ortamda olduğundan (AWS / Akamai / vb.), Sistemler birkaç IP adresi döndürebilir. Lambda, @Peter Silva'dan "ödünç alındı".

def get_ips_by_dns_lookup(target, port=None):
    '''
        this function takes the passed target and optional port and does a dns
        lookup. it returns the ips that it finds to the caller.

        :param target:  the URI that you'd like to get the ip address(es) for
        :type target:   string
        :param port:    which port do you want to do the lookup against?
        :type port:     integer
        :returns ips:   all of the discovered ips for the target
        :rtype ips:     list of strings

    '''
    import socket

    if not port:
        port = 443

    return list(map(lambda x: x[4][0], socket.getaddrinfo('{}.'.format(target),port,type=socket.SOCK_STREAM)))

ips = get_ips_by_dns_lookup(target='google.com')

1

Yukarıdaki cevap Python 2 içindi. Python 3 kullanıyorsanız, kod burada.

>>> import socket
>>> print(socket.gethostbyname('google.com'))
8.8.8.8
>>>

-2

Bir IP listesine genişleyen bir DNS RR ana bilgisayar adını üye ana bilgisayar adları listesine genişletmenin bu yolunu buldum:

#!/usr/bin/python

def expand_dnsname(dnsname):
    from socket import getaddrinfo
    from dns import reversename, resolver
    namelist = [ ]
    # expand hostname into dict of ip addresses
    iplist = dict()
    for answer in getaddrinfo(dnsname, 80):
        ipa = str(answer[4][0])
        iplist[ipa] = 0
    # run through the list of IP addresses to get hostnames
    for ipaddr in sorted(iplist):
        rev_name = reversename.from_address(ipaddr)
        # run through all the hostnames returned, ignoring the dnsname
        for answer in resolver.query(rev_name, "PTR"):
            name = str(answer)
            if name != dnsname:
                # add it to the list of answers
                namelist.append(name)
                break
    # if no other choice, return the dnsname
    if len(namelist) == 0:
        namelist.append(dnsname)
    # return the sorted namelist
    namelist = sorted(namelist)
    return namelist

namelist = expand_dnsname('google.com.')
for name in namelist:
    print name

Çalıştırdığımda, birkaç 1e100.net ana bilgisayar adı listeliyor:

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.