freenas:nic_not_recognized
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
freenas:nic_not_recognized [2022/07/16 17:35] – 5No9LD <a href="http://cbaehgadetfm.com/">cbaehgadetfm</a>, [url=http://jdzfluemgmrk.com/]jdzfluemgmrk[/url], [link=http://fftnoabklibm.com/]fftnoabklibm[/link], http://frczyfxssqly.com/ 5.188.211.72 | freenas:nic_not_recognized [2023/06/18 19:35] (current) – old revision restored (2020/12/21 16:39) peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | 5No9LD | + | ====== FreeNAS - NIC not recognized ====== |
+ | |||
+ | <code bash> | ||
+ | ifconfig | ||
+ | </ | ||
+ | |||
+ | Only showing **re0**. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Check the output of dmesg ===== | ||
+ | |||
+ | <code bash> | ||
+ | dmesg | grep net | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Check if Kernel Drivers are loaded ===== | ||
+ | |||
+ | <code bash> | ||
+ | kldstat | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | Id Refs Address | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | 10 1 0xffffffff82e19000 330048 | ||
+ | 11 1 0xffffffff8314a000 a84 nmdm.ko | ||
+ | 12 1 0xffffffff8314b000 2ec dtraceall.ko | ||
+ | 13 9 0xffffffff8314c000 39a78 dtrace.ko | ||
+ | 14 1 0xffffffff83186000 5c0 dtmalloc.ko | ||
+ | 15 1 0xffffffff83187000 1898 | ||
+ | 16 1 0xffffffff83189000 1d61 | ||
+ | 17 1 0xffffffff8318b000 53240 fasttrap.ko | ||
+ | 18 1 0xffffffff831df000 bcc sdt.ko | ||
+ | 19 1 0xffffffff831e0000 6af0 | ||
+ | 20 1 0xffffffff831e7000 6ac8 | ||
+ | 21 1 0xffffffff831ee000 f9c profile.ko | ||
+ | 22 1 0xffffffff831ef000 39f4 | ||
+ | 23 1 0xffffffff831f3000 14320 hwpmc.ko | ||
+ | 24 1 0xffffffff83208000 7140 | ||
+ | 25 2 0xffffffff83210000 aa8 toecore.ko | ||
+ | 26 1 0xffffffff83211000 f8d0 | ||
+ | </code> | ||
+ | |||
+ | It could be that the network driver that is needed is not loaded. | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | So even if the driver is not seen, this does not necessarily mean this is the problem. | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Load Drivers ===== | ||
+ | |||
+ | Try the following drivers: | ||
+ | |||
+ | * igp | ||
+ | * em | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Try load em driver ===== | ||
+ | |||
+ | Load the **em** driver as a module at boot time by placing the following line in **/ | ||
+ | |||
+ | <file bash> | ||
+ | if_em_load="YES" | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | See https://www.freebsd.org/cgi/ | ||
+ | </ | ||
+ | |||
+ | |||
+ | Then reboot and see if that makes a difference. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Try load intel igp driver ===== | ||
+ | |||
+ | It may be that the **igp** driver is not loaded. | ||
+ | |||
+ | The **igb** driver supports Gigabit Ethernet adapters based on the Intel 82575 and 82576 controller chips: | ||
+ | |||
+ | * Intel Gigabit ET Dual Port Server Adapter (82576) | ||
+ | * Intel Gigabit VT Quad Port Server Adapter (82575) | ||
+ | * Intel Single, Dual and Quad Gigabit Ethernet Controller (82580) | ||
+ | * Intel i210 and i211 Gigabit Ethernet Controller | ||
+ | * Intel i350 and i354 Gigabit Ethernet Controller | ||
+ | |||
+ | <WRAP important> | ||
+ | **WARNING: | ||
+ | |||
+ | If this does not work then just comment out the loading of the "igp" driver within **/ | ||
+ | |||
+ | </WRAP> | ||
+ | |||
+ | |||
+ | Place the following line in **/ | ||
+ | |||
+ | <file bash /boot/ | ||
+ | if_igb_load=" | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | See https://www.freebsd.org/cgi/man.cgi? | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | You could also try to load it manually: | ||
+ | |||
+ | <code bash> | ||
+ | kldload if_igb | ||
+ | </ | ||
+ | |||
+ | Check if the driver is loaded | ||
+ | |||
+ | <code bash> | ||
+ | kldstat | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | root@freenas2:/ | ||
+ | Id Refs Address | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | 10 1 0xffffffff82e19000 330048 | ||
+ | 11 1 0xffffffff8314a000 a84 nmdm.ko | ||
+ | 12 1 0xffffffff8314b000 2ec dtraceall.ko | ||
+ | 13 9 0xffffffff8314c000 39a78 dtrace.ko | ||
+ | 14 1 0xffffffff83186000 5c0 dtmalloc.ko | ||
+ | 15 1 0xffffffff83187000 1898 | ||
+ | 16 1 0xffffffff83189000 1d61 | ||
+ | 17 1 0xffffffff8318b000 53240 fasttrap.ko | ||
+ | 18 1 0xffffffff831df000 bcc sdt.ko | ||
+ | 19 1 0xffffffff831e0000 6af0 | ||
+ | 20 1 0xffffffff831e7000 6ac8 | ||
+ | 21 1 0xffffffff831ee000 f9c profile.ko | ||
+ | 22 1 0xffffffff831ef000 39f4 | ||
+ | 23 1 0xffffffff831f3000 14320 hwpmc.ko | ||
+ | 24 1 0xffffffff83208000 7140 | ||
+ | 25 2 0xffffffff83210000 aa8 toecore.ko | ||
+ | 26 1 0xffffffff83211000 f8d0 | ||
+ | </ | ||
+ | |||
+ | kldstat reports that **if_igb** isn't loaded, so it must be compiled in. | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== References ===== | ||
+ | |||
+ | https://www.freebsd.org/cgi/man.cgi? | ||
+ | |||
+ | https://www.freebsd.org/cgi/ |
freenas/nic_not_recognized.1657992942.txt.gz · Last modified: 2022/07/16 17:35 by 5.188.211.72