ARM 平台上的 Debian Squeeze/Jessie 中的网络接口在静态配置下不起作用

ARM 平台上的 Debian Squeeze/Jessie 中的网络接口在静态配置下不起作用

我在平台上的 Debian 系统中静态配置网络接口时遇到问题armel。使用 DHCP 一切顺利。

auto eth1
iface eth1 inet dhcp

系统获得IP地址,网络工作正常。但是当我将配置更改为静态配置时:

auto eth1
iface eth0 inet static
address 10.255.55.34
netmask 255.255.255.252

网络接口在一种状态下已停止工作。它总是从 ON 状态切换到 OFF 状态并反转。有人有这个问题吗?

答案1

您必须添加允许热插拔语句和缩进配置。您的配置中 eth0 和 eth1 之间的配置错误。

你的配置:

auto **eth1**
iface **eth0** inet static
address 10.255.55.34
netmask 255.255.255.252

正确的配置:

auto eth1
allow-hotplug eth1
        iface eth1 inet static
        address 10.255.55.34
        netmask 255.255.255.252

相关内容