首先将網卡配置檔案重命名為eth0
[root@www ~]# cd /etc/sysconfig/network-scripts
[root@www ~]# mv /ifcfg-eno 16777736 ifcfg-eth0
然後編輯修改後的網卡配置檔案
vim /ifcfg-eth0
将NAME參數修改為與網卡檔案相同的名字
接下來禁用網卡命名規則。此功能通過/etc/default/grub檔案來控制,要禁用此次功能,在檔案中加入"net.ifnames=0 biosdevname=0"即可。
添加udev網卡規則(可不做)
在/etc/udev/rules.d目錄中建立一個網卡規則70-persistent-net.rules檔案。在檔案中寫入以下參數:SUBSYSTEM=="net",ACTION=="add",DRIVERS=="?*",ATTR{address}=="需要修改名稱的網卡MAC位址",ATTR{type}=="1" ,KERNEL=="eth*",NAME="eth0"
執行grub2-mkconfig -o /boot/grub2/grub.cfg指令生成更新grub配置參數。
[root@www ~]# grub2-mkconfig -o /boot/grub2/grub.cfg
Generating grub configuration file ...
Found linux p_w_picpath: /boot/vmlinuz-3.10.0-327.el7.x86_64
Found initrd p_w_picpath: /boot/initramfs-3.10.0-327.el7.x86_64.img
Found linux p_w_picpath: /boot/vmlinuz-0-rescue-c17f90bf14ca4afc94a2eebcb70f624d
Found initrd p_w_picpath: /boot/initramfs-0-rescue-c17f90bf14ca4afc94a2eebcb70f624d.img
done
重新開機系統驗證
出現虛拟網卡是因為安裝時啟用了 libvirtd 服務後生成的
關閉方法
virsh net-list
名稱 狀态 自動開始 持久
---------------------------------------------------------
default active yes
virsh net-destroy default