红联Linux门户
Linux帮助

Centos配置网卡

发布时间:2015-09-14 10:45:30来源:linux网站作者:李克华

大家配置Centos5.5的网卡时,容易忽略的一项就是Linux启动时未启动网卡,其后果很明显,那就是你的Linux机器永远也没有IP地址,下面是一台线上服务器的配置:


[root@localhost ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0
# Intel Corporation 82541GI Gigabit Ethernet Controller
DEVICE=eth0
BOOTPROTO=none
HWADDR=00:14:22:1B:71:20
IPV6INIT=yes
IPV6_AUTOCONF=yes
ONBOOT=yes →此项一定要记得为yes,它会在系统引导就启动你的网卡设备
NETMASK=255.255.255.192
IPADDR=203.93.236.146
GATEWAY=203.93.236.129
TYPE=Ethernet
PEERDNS=yes →允许从DHCP处获得的DNS覆盖本地的DNS
USERCTL=no~ →不允许普通用户修改网卡


Ubuntu网络配置以DHCP方式配置网卡:http://www.linuxdiyf.com/linux/526.html

克隆CentOS没有网卡eth0无法开启网络服务:http://www.linuxdiyf.com/linux/13874.html

centos7修改网卡名:http://www.linuxdiyf.com/linux/13844.html

centos6.x修改网卡名称em1、2...为eth0、1...:http://www.linuxdiyf.com/linux/13843.html

CentOS双网卡绑定bond0:http://www.linuxdiyf.com/linux/13544.html