如何在 Linux (Fedora) 中禁用环回接口?
那么对 localhost
的请求会被视为来自 LAN 中的远程主机吗?
So that requests to localhost
are treated as if coming from remote host in LAN?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过更新您的
/etc/hosts
文件,将: 替换为您的实际 IP 地址?例如,
(这实际上并没有禁用环回地址,您仍然可以连接到
127.0.0.1
,但是连接到localhost
应该通过您的网络接口进入,我相信就是你所问的)Have you tried updating your
/etc/hosts
file, replacing:With your actual IP address? e.g.,
(This doesn't actually disable the loopback address, you can still connect to
127.0.0.1
, but connecting tolocalhost
should come in through your network interface, which I believe is what you're asking)