我的网络似乎运行正常,但重新启动时出现错误

我的网络似乎运行正常,但重新启动时出现错误

(Ubuntu 服务器 16.10 64 位)安装在 Dell PowerEdge R610 上

networking.serviceJob for networking.service failed because the control process exited with error code

你好,这是我重新启动网络服务时收到的错误消息:

sudo /etc/init.d/networking restart

它告诉我要跑systemctl status networking.service

这给了我:

networking.service - Raise network interfaces
   Loaded: loaded (/lib/systemd/system/networking.service; enabled; vendor preset: enabled)
   Active: failed (Result: exit-code) since Mon 2016-12-05 15:24:10 EST; 34s ago
     Docs: man:interfaces(5)
 Main PID: 5638 (code=exited, status=1/FAILURE)

Dec 05 15:24:10 mip-zm01 systemd[1]: Starting Raise network interfaces...
Dec 05 15:24:10 mip-zm01 ifup[5638]: RTNETLINK answers: File exists
Dec 05 15:24:10 mip-zm01 ifup[5638]: Failed to bring up eno1.
Dec 05 15:24:10 mip-zm01 systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE
Dec 05 15:24:10 mip-zm01 systemd[1]: Failed to start Raise network interfaces.
Dec 05 15:24:10 mip-zm01 systemd[1]: networking.service: Unit entered failed state.
Dec 05 15:24:10 mip-zm01 systemd[1]: networking.service: Failed with result 'exit-code'.

它显示“无法启动 eno1。”但 eno1 是我的主界面并且它运行良好...我想...

我应该担心什么吗?

我的接口文件的内容:

source /etc/network/interfaces.d/*

auto lo eno1 eno2
iface lo inet loopback

iface eno1 inet static
address 192.168.1.85
netmask 255.255.255.0
gateway 192.168.1.85
dns-nameservers 172.30.99.1

iface eno1 inet6 auto
iface eno2 inet static
address 172.30.99.1
netmask 255.255.0.0
dns-nameservers 172.30.99.1

iface eno2 inet6 auto

相关内容