可以浏览到 localhost.company.com 上的应用程序,但该应用程序不在 /etc/hosts 中;重定向还能在哪里?

可以浏览到 localhost.company.com 上的应用程序,但该应用程序不在 /etc/hosts 中;重定向还能在哪里?
✗ cat /etc/hosts
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting.  Do not change this entry.
##
127.0.0.1   localhost
255.255.255.255 broadcasthost
::1             localhost

但我正在浏览一个应用程序(我正在构建/运行/编码的应用程序)http://localhost.company.com:8080/help

检查了cat /private/etc/hosts一下,相符/etc/hosts

那么我还能在哪里找到这个localhost.company.com重定向呢?

答案1

在别处找到了答案。 nslookup工具:

nslookup 是一个网络管理命令行工具,可用于许多计算机操作系统,用于查询域名系统 (DNS) 以获取域名或 IP 地址映射或任何其他特定的 DNS 记录。

因此,运行 localhost 告诉我(我认为)localhost.company.com 在 DNS 级别映射到每个人的本地计算机。

✗ nslookup  
> localhost
Server:     x.x.x.x
Address:    x.x.x.x#x

Non-authoritative answer:
Name:   localhost.company.com
Address: 127.0.0.1

相关内容