NIC Intel i219-v could not detect

Hello Guys I just bought AsRock Mother board with NIC Intel i219-v onboard. Also additional PCI Nic x 2. However After install and update O/S to NethServer release 7.9.2009 (final). Seems NIC Intel i219 could not show in the Network GUI list.
Below is some command that I try

[root@wh ~]# lspci -nn | grep -i Ethernet
00:1f.6 Ethernet controller [0200]: Intel Corporation Ethernet Connection (14) I219-V [8086:15fa] (rev 11)
01:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. Device [10ec:8161] (rev 15)
02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. Device [10ec:8161] (rev 15)

[root@wh ~]# ip link
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: enp1s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000
link/ether 00:5f:67:0a:3c:98 brd ff:ff:ff:ff:ff:ff
3: enp2s0: <BROADCAST,MULTICAST> mtu 1500 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 1000
link/ether 00:5f:67:0a:32:c9 brd ff:ff:ff:ff:ff:ff

Is there any way to Install correct Intel NIC Driver ?

Regards,
Chartree

Not supported by the current CentOS 7.9 kernel:

grep -i 8086 /lib/modules/*/modules.alias | grep -i 15fa

But the driver for it can be found on elrepo repository (kmod-e1000e-3.8.4-3.el7_9.elrepo.x86_64.rpm):

rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
yum install https://www.elrepo.org/elrepo-release-7.el7.elrepo.noarch.rpm
yum install kmod-e1000e
6 Likes

Dear Marc,
Thanks for your quick and professional support
Now I can use Intel NIC

[root@wh ~]# grep -i 8086 /lib/modules//modules.alias | grep -i 15fa
/lib/modules/3.10.0-1127.19.1.el7.x86_64/modules.alias:alias pci:v00008086d000015FAsv
sdbcsci e1000e
/lib/modules/3.10.0-1160.21.1.el7.x86_64/modules.alias:alias pci:v00008086d000015FAsvsdbcsci* e1000e

[root@wh ~]# ip link
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: enp1s0: <BROADCAST,MULTICAST> mtu 1500 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 1000
link/ether 00:5f:67:0a:3c:98 brd ff:ff:ff:ff:ff:ff
3: enp2s0: <BROADCAST,MULTICAST> mtu 1500 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 1000
link/ether 00:5f:67:0a:32:c9 brd ff:ff:ff:ff:ff:ff
4: enp0s31f6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000
link/ether a8:a1:59:6a:3a:e1 brd ff:ff:ff:ff:ff:ff

1 Like

Thanks. You’re welcome.