标签:基础知识
CentOS 6 和 CentOS 7修改网卡名的方法step 1:vim /etc/udev/rules.d/70-persistent-net.rules
在 NAME=“ ***” 处 改为所要改的网卡名
![]
step2: cd /etc/sysconfig/network-scripts/
mv ifcfg-eth* ifcfg-eth0
mv ifcfg-eth* ifcfg-eth0
使用 mv命令将ifcfg-eth* 改为 ifcfg-eth0 ifcfg-eth1
step3: vim ifcfg-eth0
step4:sercive network restart 大功告成
step5:ip a 或者 ifocnfig 查看一下网卡配置
step1: cd /etc/syconfig/network-scripts/
mv ifcfg-ens33 ifcfg-eth0
step2:vim ifcfg-eth0
step3: vim /etc/sysconfig/grub
在GRUB_CMDLINE_LINUX 行 quiet 前加上net.ifnames=0 biosdevname=0
step4:grub2-mkconfig -o /boot/grub2/grub.cfg
step5:reboot 用ip a 查看网卡配置
修改成功
标签:基础知识
原文地址:http://blog.51cto.com/13572413/2085777