温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

linux怎样修改网卡名字

发布时间:2021-11-05 16:05:51 来源:亿速云 阅读:122 作者:柒染 栏目:建站服务器

linux怎样修改网卡名字,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。

ifconfig发现网卡名字(eth2、eth3)与配置文件中名字(eth0、eth2)不符,修改如下
一、查看网卡名字对应的HWADDR
[root@linnux ~]# ifconfig -a
eth2      Link encap:Ethernet  HWaddr 08:00:27:14:87:06
          inet addr:192.168.1.2  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::a00:27ff:fe14:8706/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:658 errors:0 dropped:0 overruns:0 frame:0
          TX packets:527 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:65027 (63.5 KiB)  TX bytes:78666 (76.8 KiB)


eth3      Link encap:Ethernet  HWaddr 08:00:27:3E:94:DC
          inet addr:172.168.1.2  Bcast:172.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::a00:27ff:fe3e:94dc/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:35 errors:0 dropped:0 overruns:0 frame:0
          TX packets:37 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:5599 (5.4 KiB)  TX bytes:7155 (6.9 KiB)


二、编辑ifcfg-eth0文件和ifcfg-eth2文件,把MAC改为正确的,把UUID删掉
[root@node1 ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
TYPE=Ethernet
BOOTPROTO=none
IPADDR=192.168.1.2
PREFIX=24
GATEWAY=192.168.1.1
DEFROUTE=yes
IPV4_FAILURE_FATAL=yes
IPV6INIT=no
NAME="eth0"
#UUID=1976d3c7-b6fa-4002-8738-f370de6eddd6
ONBOOT=yes
HWADDR=08:00:27:14:87:06
LAST_CONNECT=1498051708


三、查看文件70-persistent-net.rules进行修改,网卡名字要和MAC地址对应
[root@node1 ~]# cat /etc/udev/rules.d/70-persistent-net.rules
# This file was automatically generated by the /lib/udev/write_net_rules
# program, run by the persistent-net-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single
# line, and change only the value of the NAME= key.


# PCI device 0x8086:0x100e (e1000)
#SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="08:00:27:41:05:c4", ATTR{type}=="1"                                   , KERNEL=="eth*", NAME="eth0"

# PCI device 0x8086:0x100e (e1000)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="08:00:27:14:87:06", ATTR{type}=="1",                                    KERNEL=="eth*", NAME="eth0"

# PCI device 0x8086:0x100e (e1000)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="08:00:27:3e:94:dc", ATTR{type}=="1",                                    KERNEL=="eth*", NAME="eth2"

四、查看hostname是否正确
[root@node1 ~]# cat /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=node1

关于linux怎样修改网卡名字问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注亿速云行业资讯频道了解更多相关知识。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI