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

相关内容