CentOS

CentOS7 eth 이름 변경

1. 네트워크 장치 이름 확인

ifconfig

 

2. GRUB 기본 설정값 변경

cat -n /etc/default/grub
sed -i “6s/vconsole.font/net.ifnames=0 vconsole.font/” /etc/default/grub
cat -n /etc/default/grub | grep “net.ifnames”

 

3. GRUB 설정 파일 적용

grub2-mkconfig -o /boot/grub2/grub.cfg

 

4. 파일 이름 변경

mv /etc/sysconfig/network-scripts/ifcfg-eno16777736 /etc/sysconfig/network-scripts/ifcfg-eth0

 

5. 인터페이스 이름 변경

cat -n /etc/sysconfig/network-scripts/ifcfg-eth0 | grep “NAME”
sed -i “18s/eno16777736/eth0/” /etc/sysconfig/network-scripts/ifcfg-eth0
cat -n /etc/sysconfig/network-scripts/ifcfg-eth0 | grep “NAME”

 

6. 재부팅

reboot

 

7. 네트워크 장치 이름 재확인

ifconfig

Back To Top