原因:
根本上是NetworkMaganager(NM)帶來的衝突,停用NetworkManager即可解決。
解決方法如下:
(推薦教學:centos教學)
1、切換到root帳戶,並用chkconfig指令查看network 和NetworkManager兩個服務的開機啟動設定;
[wzb@embedded ~]$ su - root 口令: [root@embedded ~]# chkconfig –list network network 0:关闭 1:关闭 2:启用 3:启用 4:启用 5:启用 6:关闭 [root@embedded ~]# chkconfig –list NetworkManager NetworkManager 0:关闭 1:关闭 2:关闭 3:启用 4:关闭 5:关闭 6:关闭 [root@embedded ~]#
2、停用NetworkManager,開機時,不讓其啟動:
[root@embedded ~]# chkconfig –level123456 NetworkManager off
3、啟用network服務,開機啟動。在3、4、5使用者模式下;
[root@embedded ~]# chkconfig –level345 network on
或透過編輯vi /etc/rc.d/rc.local檔案在最後加上一行:/etc/init.d/network start
#[root@embedded ~]# vi /etc/rc.d/rc.local
相關影片教學推薦:linux影片教學
以上是centos7系統網路不穩定怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!