标签:manager netmask ati mask eth0 gateway ipv6 服务 man
centos 中没有 ifcfg-eth0 配置文件的解决办法
1.也就是说是centos6改用NetworkManager方式管理网络了,可以运行如下命令进行确认:
chkconfig --list | grep -i netw
2.关闭NetworkManager服务
service NetworkManager stop
3.关闭NetworkManager开机启动
chkconfig NetworkManager off
4.添加 /etc/sysconfig/network-scriipts/ifcfg-eth0 文件
DEVICE=eth0
BOOTPROTO=static
IPADDR=146.175.139.13
NETMASK=255.255.255.0
GATEWAY=146.175.139.255
HWADDR=00:25:90:81:5e:64
NM_COnTROLLED=no
ONBOOT=yes
TYPE=Ethernet
IPV6INIT=no
5.开机启动network
chkconfig network on
6.开启network服务
service network start
标签:manager netmask ati mask eth0 gateway ipv6 服务 man
原文地址:http://www.cnblogs.com/wuhua1/p/linux2.html