1. 程式人生 > >Centos7.4 修改網卡名稱為eth0

Centos7.4 修改網卡名稱為eth0

centos7

Centos7.4 修改網卡名稱為eth0

#################################################

#修改網卡配置
[root@centos7 ~]# cat /etc/sysconfig/network-scripts/ifcfg-ens33
原NAME=ens33
DEVICE=ens33
NAME=eth0
DEVICE=eth0

#重命名網卡名稱
[root@centos7 ~]# mv /etc/sysconfig/network-scripts/ifcfg-ens33 /etc/sysconfig/network-scripts/ifcfg-eth0

#修改grup的配置
[root@centos7 ~]# cat /etc/default/grub

原GRUB_CMDLINE_LINUX="crashkernel=auto rhgb quiet"
GRUB_CMDLINE_LINUX="crashkernel=auto rd.lvm.lv=centos/root "net.ifnames=0 biosdevname=0" rd.lvm.lv=centos/swap rhgb quiet"

#重新生成GRUB配置並更新內核參數。
[root@centos7 ~]# grub2-mkconfig -o /boot/grub2/grub.cfg

#重啟生效
[root@centos7 ~]#init 6

Centos7.4 修改網卡名稱為eth0