CentOS 7 如何设置为eth0网卡
一、安装系统时设置
操作系统安装:
为了统一环境,方便自动化运维,将网卡名称设置为eth*,不使用CentOS 7默认的网卡命名规则。所以需要在安装的时候,增加内核参数。
1)光标选择“Install CentOS 7”
2)点击Tab,打开kernel启动选项后,增加net.ifnames=0 biosdevname=0,如下图所示。
二、安装系统后修改
1、编辑网卡信息
[root@monitor network-scripts]# cat ifcfg-ens192
TYPE="Ethernet"
BOOTPROTO=none
DEFROUTE="yes"
IPV4_FAILURE_FATAL="no"
IPV6INIT="yes"
name="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"
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、验证更改
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系列网卡名称圆满成功