自学内容网 自学内容网

网络常用特殊地址-127.0.0.1

图借用Medium博客的一张图

经常在问题解答群里留意到如下关于127.0.0.1的消息

”如果单机版,不需要配置IP,所有配置IP的地方都写死127.0.0.1就可以”
“ip: 根据实际情况填写(在 xxx-init.conf 里可以给一个默认值 127.0.0.1 ,方便单机部署情形)”
“如果每个节点用本地的ansible控制器,那么就都写 127.0.0.1”

那么127.0.0.1是个什么地址?

127.0.0.1 is the loopback IP address that is used by the network interface of a system to communicate with itself

在IPV4中,整个 127.0.0.0/8 地址块被保留用于回环(Loopback)功能,什么是Loopback,

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to

也就是说网络服务不需要经过物理网卡的,自己玩,而且外部你还访问不到我。

那这样有什么好处呢?

  • 写代码肯定都这样干过,本地起一个web服务,然后监听的地址多为http://127.0.0.1:8080(“localhost” is normally the hostname for the 127.0.0.1 IP address),这样直接部署在本地的测试环境多方便,不需要其他的网络连接(不依赖其他服务的话)
    在这里插入图片描述

  • 像开头提到的,当服务用作单机部署的时候,127.0.0.1其实是一种更加方便的配置,省去了配置IP的麻烦,可以作为缺省值

  • 用作网络配置正确性的检查。由于尚未实际使用,具体应用效果待实际操作后再补充说明

参考

  • https://www.quora.com/What-is-the-significance-of-127-0-0-1-in-computer-networks
  • https://en.wikipedia.org/wiki/Localhost
  • https://medium.com/@anishnarayan/localhost-127-0-0-1-and-loopbacks-c89f75f5dc8c
  • https://medium.com/@anishnarayan/localhost-127-0-0-1-and-loopbacks-c89f75f5dc8c

原文地址:https://blog.csdn.net/weixin_39712991/article/details/143833173

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!