一、安装系统时设置
操作系统安装:
为了统一环境,方便自动化运维,将网卡名称设置为eth*,不使用CentOS 7默认的网卡命名规则。所以需要在安装的时候,增加内核参数。
1)光标选择“Install CentOS 7”
2)点击Tab,打开kernel启动选项后,增加net.ifnames=0 biosdevname=0,如下图所示。
二、安装系统后修改
1、编辑网卡信息
[root@linuxidc.com ~]# cd /etc/sysconfig/network-scripts/ #切换到网卡目录
[root@linuxidc.com ~]# cd /etc/sysconfig/network-scripts/mv ifcfg-eno16777736 ifcfg-eth0 #重命名网卡文件
[root@monitor network-scripts]# cat ifcfg-ens192
TYPE=”Ethernet”
BOOTPROTO=none
DEFROUTE=”yes”
IPV4_FAILURE_FATAL=”no”
IPV6INIT=”yes”
NAME=”eno16777736” 修改为eth0
DEVICE=”eno16777736” 修改为eth0
ONBOOT=”yes”
IPADDR=192.168.1.199
PREFIX=22
GATEWAY=192.168.1.1
DNS1=192.168.1.1
2、修改grub
[root@monitor network-scripts]# cat /etc/sysconfig/grub #编辑grub信息
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=”$(sed ‘s, release .*$,,g’ /etc/system-release)”
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT=”console”
GRUB_CMDLINE_LINUX=”crashkernel=auto rd.lvm.lv=centos/root rd.lvm.lv=centos/swap rhgb net.ifnames=0 biosdevname=0 quiet”
GRUB_DISABLE_RECOVERY=”true”
[root@linuxidc.com network-scripts]# grub2-mkconfig -o /boot/grub2/grub.cfg #重新生成启动菜单
Generating grub configuration file …
Found linux image: /boot/vmlinuz-3.10.0-327.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-327.el7.x86_64.img
Found linux image: /boot/vmlinuz-0-rescue-fce34a37d59940fcb01759910e40ece1
Found initrd image: /boot/initramfs-0-rescue-fce34a37d59940fcb01759910e40ece1.img
done
3、验证更改
[root@linuxidc.com network-scripts]# reboot #必须重启系统才可生效
[root@linuxidc.com network-scripts]# ip add |grep eth0
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
inet 192.168.56.131/24 brd 192.168.56.255 scope global eth0
至此修改centos7系列网卡名称圆满成功
更多CentOS相关信息见CentOS 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=14
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-06/144973.htm