Debian 错误:ifup:无法读取接口文件“/etc/network/interfaces”

Debian 错误:ifup:无法读取接口文件“/etc/network/interfaces”

从今天起,Debian 给出了一个错误:ifup:无法读取接口文件“/etc/network/interfaces”

如果我查看接口文件,我会看到以下内容:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0
iface eth0 inet dchp

allow-hotplug eth1
iface eth1 inet dchp

我在虚拟盒中运行 Debian;eth0 是 NAT,eth1 是仅主机适配器,我也尝试插入以太网电缆,但没有任何变化。

我怎样才能消除这个错误?

先感谢您,

雷姆科

答案1

您可能会后悔,但两行中都有相同的拼写错误。应该是iface eth0 inet dhcpnot dchp

ifupifdown如果他们无法解析该文件,就会中断。

答案2

我在静态 IP 配置方面遇到了同样的问题,就我的情况而言,/etc/network/interfaces:2: 放错选项 ifup: 无法读取接口文件“/etc/network/interfaces” 在那里它是一行中的 (#) (2)
示例 1-- #auto lo 2-- #iface lo inet loopback

并使用命令 ifup eth0 再次启动网络

我希望有人能用这个参考来说明写得不好

相关内容