我在 Windows 7 操作系统上。在命令行中尝试了以下命令
ping hidden-master.yahoo.com
以下是输出:--
C:\Users\bilbo>ping hidden-master.yahoo.com
Pinging hidden-master.yahoo.com [127.0.0.1] with 32 bytes of data:
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Ping statistics for 127.0.0.1:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
回复来自本地主机 IP,即 127.0.0.1。有人能解释一下输出吗?
提及这并且它表示该名称指向环回地址。还有其他类似的名称。设置这些东西的实际用途是什么?
答案1
他们设置了 DNS A 记录以指向 127.0.0.1。可能是为了测试,或者当他们想保留该记录以备将来使用时(只需在需要时更改 IP - 懒惰的管理员方式),但不让它指向他们的任何资源。
mulaz@sheeba ~ $ dig A hidden-master.yahoo.com
...
;; ANSWER SECTION:
hidden-master.yahoo.com. 172796 IN A 127.0.0.1
该地址基本上指向 localhost/127.0.0.1,因此解析后,您就可以 ping 您自己的电脑。