FreeBSD 13.0-RELEASE Ethernet Connection (13) I219-LM not detected

Hi,
I have a Dell Latitude 5520,
I installed net/intel-em-kmod , net/intel-xl-kmod and net/intel-ixl-kmod
The NIC is not detected, pciconf shows:
Code:
none9@pci0:0:31:6:    class=0x020000 rev=0x20 hdr=0x00 vendor=0x8086 device=0x15fb subvendor=0x1028 subdevice=0x0a21
    vendor     = 'Intel Corporation'
    device     = 'Ethernet Connection (13) I219-LM'
    class      = network
    subclass   = ethernet

Any ideas?
 
Last edited by a moderator:
After you install net/intel-em-kmod load the kmod driver with:
kldload if_em_updated

If it's working correctly then make it permanent by adding if_em_updated_load="YES" to your /boot/loader.conf and reboot the machine.
 
Last edited by a moderator:
Hi ValidiBG

I have the line in /boot/loader.conf,
Code:
% tail -1 /boot/loader.conf
if_em_updated_load="YES"
after a reboot:
% kldstat | grep em
 5    1 0xffffffff821eb000    69830 if_em_updated.ko

% ifconfig em0
ifconfig: interface em0 does not exist

% pciconf -vl
none9@pci0:0:31:6:    class=0x020000 rev=0x20 hdr=0x00 vendor=0x8086 device=0x15fb subvendor=0x1028 subdevice=0x0a21
    vendor     = 'Intel Corporation'
    device     = 'Ethernet Connection (13) I219-LM'
    class      = network
    subclass   = ethernet

root@l5520:~ # /etc/rc.d/netif  start em0
ifconfig: interface em0 does not exist
Starting Network: em0.
ifconfig: interface em0 does not exist
 
Back
Top