centos7怎么固定網(wǎng)口名稱

小億
101
2024-03-07 13:48:29

在CentOS 7中,可以通過以下步驟來固定網(wǎng)口名稱:

  1. 打開配置文件:

    sudo vi /etc/default/grub
    
  2. 在文件中找到以下行:

    GRUB_CMDLINE_LINUX="rd.lvm.lv=centos/root rd.lvm.lv=centos/swap rhgb quiet"
    
  3. 在這一行的末尾添加以下內(nèi)容:

    net.ifnames=0 biosdevname=0
    
  4. 保存并關(guān)閉文件。

  5. 更新GRUB配置:

    sudo grub2-mkconfig -o /boot/efi/EFI/centos/grub.cfg
    
  6. 重啟系統(tǒng):

    sudo reboot
    
  7. 完成后,系統(tǒng)將使用傳統(tǒng)的網(wǎng)絡(luò)接口命名方案,例如eth0,eth1等。

0