使用接口文件 - 未维护设备

使用接口文件 - 未维护设备

我需要在启动时设置 ethtool 命令,因为我的路由器拒绝通信,除非我将 LAN 卡设置为全双工模式。我知道如何用 ethtool 做到这一点,但如何在重启后保留更改?

我尝试编辑接口文件:

# 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

auto eth0
iface eth0 inet dhcp
    pre-up /sbin/ethtool -s $IFACE autoneg off speed 100 duplex full

当我这样做时,/etc/init.d/networking restart一切看起来都很好,但 GNOME 说设备未维护,我无法访问互联网。

我必须进行哪些更改才能使用 GNOME 维护 LAN 卡并在启动时正确使用 ethtool?

相关内容