CentOs eth2 重啟後無法啟動

CentOs eth2 重啟後無法啟動

我的 virtualbox 中有 Cent OS 6.4,有兩個乙太網路裝置。一個透過NAT連接到互聯網,另一個連接到內部網路。

這是我的 eth2 配置文件

cat /etc/sysconfig/network-scripts/ifcfg-eth2 
DEVICE=eth2 
BOOTPROTO=none 
NM_CONTROLLED=no
ONBOOT=yes 
NAME='internal network'
NETWORK=10.0.1.0 
NETMASK=255.255.255.0 
IPADDR=10.0.1.27 
USERCTL=no

如果我跑

/etc/init.d/network restart

介面已設定完畢並且一切正常,但我必須在每次重新啟動後運行它。

我怎麼能在重新啟動後配置該網路。我想開機是我唯一需要的旗幟。

編輯:我已經跑了

# chkconfig network on
# chkconfig | grep network
  network           0:off   1:off   2:on    3:on    4:on    5:on    6:off

編輯2:

問題在於 NetworkManager 已開啟並且設定被覆蓋。解決了它:

chkconfig NetworkManager off

答案1

chkconfig --level 3 5 network on

相關內容