如果不重新启动,则无法重置网络接口

如果不重新启动,则无法重置网络接口

我已经编辑了该/etc/network/interfaces文件并且我使用了sudo /etc/init.d/networking restart

重启后,eth1接口无法正确设置。我需要硬重启才能启用此配置。同时命令行提示:运行 /etc/init.d/networking restart 已被弃用,因为它可能无法再次启用某些接口

我是否使用运行命令来重新启动网络接口?

auto eth1
iface eth1 inet static
    address 192.168.1.87
    netmask 255.255.255.0
    gateway 192.168.1.1

答案1

重置接口的“新”方法是通过 ifdown 和 ifup 命令:

ifdown eth1 
ifup eth1

尝试此命令,看看 eth1 是否设置正确。如果仍然失败,您可以随时尝试检查日志文件,看看那里是否发生了任何可疑的事情。

相关内容