Edit /etc/default/grub:
1 |
vim /etc/default/grub |
Add net.ifnames=0 at the end of GRUB_CMDLINE_LINUX=“
It should look like this:
1 2 3 |
GRUB_TERMINAL_OUTPUT= "console" GRUB_CMDLINE_LINUX= "biosdevname=0 crashkernel=auto nomodeset rd.auto=1 consoleblank=0 nouveau.modeset=0 rd.driver.blacklist=nouveau plymouth.ignore-udev net.ifnames=0" GRUB_DISABLE_RECOVERY= "true" |
1 |
grub2-mkconfig -o /boot/grub2/grub .cfg |
Edit the file /etc/udev/rules.d/70-persistent-net.rules like (the file porbably doesnt exist):
1 |
vim /etc/udev/rules .d /70-persistent-net .rules |
and add one line per interface like this:
1 |
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="HH:HH:HH:HH:HH:HH", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0" |
Find the interface files here /etc/sysconfig/network-scripts and move them to their new names, for each script you need to edit it and change the device name as in the example below.
1 |
mv /etc/sysconfig/network-scripts/ifcfg-en0s0p0 /etc/sysconfig/network-scripts/ifcfg-eth0 |