Debian 系统修改网卡ens33名称为 eth0

Posted faberbeta

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Debian 系统修改网卡ens33名称为 eth0相关的知识,希望对你有一定的参考价值。

1. 编辑文件 /etc/default/grub

修改下面的值

初始值

GRUB_CMDLINE_LINUX=""

修改后

GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"

2. 重新生成一个开机文件/boot/grub/grub.cfg

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

3. 确保这个文件的内容也要做相应的修改/etc/network/interfaces

a)如果是DHCP 配置

原始值

auto ens33
iface ens33 inet dhcp

修改后

auto eth0
iface eth0 inet dhcp

 

b)如果是static 配置

原始值

auto ens33
iface ens33 inet static
           address 192.168.1.6
           netmask 255.255.255.0
           dns-nameservers 192.168.1.2
           gateway 192.168.1.2

修改后

auto eth0
iface eth0 inet static
           address 192.168.1.6
           netmask 255.255.255.0
           dns-nameservers 192.168.1.2
           gateway 192.168.1.2

 

以上是关于Debian 系统修改网卡ens33名称为 eth0的主要内容,如果未能解决你的问题,请参考以下文章

redhat修改网卡名称

centos7.5 修改网卡名称

CentOS7更改网卡名称

Linux修改网卡名称enss33到eth0--Ubuntu16和centos7

修改CENTOS7的网卡ens33修改为eth0

centos7修改网卡名为eth0