Linux修改網絡卡名稱

2021-09-20 22:22:20 字數 994 閱讀 6159

實現步驟如下

1,更改/etc/modprobe.conf檔案中的模組alias

比如 alias eth0 e1000

修改為   alias tianle e1000

2,更改網絡卡的配置檔案的名字為ifcfg-tianle

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

3,更改配置檔案,將device=eth0,更改為device=tianle

4,去除記憶體中的網絡卡模組

modprobe -r e1000

modprobe   tianle (等同於modprobe e1000)

6,重啟網路服務/etc/init.d/network restart

service network restart [root@bogon ~]# ifconfig

tianle    link encap:ethernet   hwaddr 00:0c:29:10:80:97  

inet addr:192.168.0.1   bcast:192.168.1.255   mask:255.255.255.0

inet6 addr: fe80::20c:29ff:fe10:8097/64 scope:link

up broadcast running multicast   mtu:1500   metric:1

rx packets:33 errors:0 dropped:0 overruns:0 frame:0

tx packets:26 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:1000 

rx bytes:5271 (5.1 kib)   tx bytes:2976 (2.9 kib)

interrupt:177 base address:0x1400

linux修改網絡卡名稱

rac安裝前檢查遇到如下錯誤 prvg 11050 no matching inte ces em2 for subnet 192.168.168.0 on nodes rac3 第三節點上檢視網絡卡名稱不匹配,修改網絡卡名稱,過程如下 停用網絡卡 ifconfig eth0 down 改名ip l...

linux修改網絡卡名稱

也許大家習慣了linux預設網絡卡為eth0,如果換成其他反而不適應,現在將它改為傳統的eth0。步驟一 使用ifconfig檢視網絡卡的名稱 步驟二 cd etc sysconfig network scripts 進入到網絡卡目錄,檢視網絡卡檔名稱為ifcfg eno16777736,修改配置檔...

linux 之 修改網絡卡名稱

修改網絡卡名稱 vi etc udev rules.d 70 persistent net.rules subsystem net action add drivers attr 00 0c 29 c4 00 d0 attr 1 kernel eth name ens33 注意 以上的 attr 0...