Linux 网络启动异常:systemctl status network.service

问题产生原因:克隆Linux虚拟机,新的虚拟机网卡配置和复制的虚拟及网卡配置相同,直接重启网卡服务报此错误!

最新解决方案请参考此文章:https://blog.csdn.net/lzf2284466/article/details/106323821

 

解决:

查询了一下,好像是系统自带的NetworkManager这个管理套件有关系,关掉.

关掉方法:

systemctl stop NetworkManager

systemctl disable NetworkManager

重新启动网络:

systemctl start network.service

 

以上失败则继续(MAC地址错误):

ip addr show(查看网卡名)

讲配置文件的hwaddr进行修改

 

以上失败则继续(网卡、配置文件name、device不一致):

修改以下三处地方:

第一处网卡名:/etc/sysconfig/network-scripts/ifcfg-eth0 ,

第二处配置文件里面:NAME=eth0 ,

第三处也是配置文件里面:DEVICE=eth0

你可能感兴趣的:(Linux)