How to modify network interface names – Linux Tips And Tricks
Learn how to modify network interface names in Linux.
I have see question like these. How to change eth0 to eth1 in Linux? How to modify Network Interface names? How to changing network interface names from new Linux?
Well. this video will outline just that. here are the steps.
1) Disable ethernet port, or else you will get « Device or resource busy »
ip link set eno0 down
2) Change network interface name
ip link set eno0 name ens33
3) OPTIONAL: Enable ethernet port
ip link set ens33 up
#linux #ubuntu #redhat #bash
Views : 268
linux