我试图使用python中的套接字函数gethostbyaddr。它在Linux上工作得很好,但在OSX上不行
它工作在远端地址,如8.8.8.8
>>> socket.gethostbyaddr('8.8.8.8')
('google-public-dns-a.google.com', ['8.8.8.8.in-addr.arpa'], ['8.8.8.8'])
它也在lookback 127.0.0.1:
>>> socket.gethostbyaddr('127.0.0.1')
('localhost', ['1.0.0.127.in-addr.arpa'], ['127.0.0.1'])
但它不在本地地址10.102.188.21:
>>> socket.gethostbyaddr('10.102.188.21')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
socket.herror: [Errno 1] Unknown host
在Linux下:
>>> print(socket.gethostbyaddr('10.102.188.21'))
('Pierre.local', [], ['10.102.188.21'])
查询:
dig -x 10.102.188.21
; <<>> DiG 9.8.3-P1 <<>> -x 10.102.188.21
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 21064
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;21.188.102.10.in-addr.arpa. IN PTR
这不是一个正确的PTR条目,但它应该得到的gethostbyaddr()
在linux的/etc/nsswitch.conf中有一个mdns选项来解析主机名。这就是为什么Linux可以解析本地网络上的主机名
OS X也应该用mDNS来解决它,因为它是zeroconf
的一部分感谢mata对zeroconf的帮助和larsks