IP还是接口?

时间:2014-07-09 17:58:42

标签: sockets interface ip

为什么 IP地址在配置文件中称为 interfaces 。例如,请参阅下面的Redis配置文件摘录。

# If you want you can bind a single *interface*, if the bind option is not
# specified all the *interfaces* will listen for incoming connections.
#
bind 127.0.0.1

1 个答案:

答案 0 :(得分:1)

(网络)接口不一定需要表示IP(v4)地址。

“接口”只是(通用)设备的名称,该设备与承载设备的主机之外的世界接口。

接口设备的典型情况是以太网卡。有许多不同类型的协议,使用以太网卡与主机外部进行通信,IP(v4)只是其中之一。

参考你的例子:

# If you want you can bind a single *interface* ...

文件管理员有时候是懒惰的混蛋。上面的文字应为:

# If you want you can bind a single *interface* providing a specific IPv4 address ...