Back to the server that was sitting on my desk… The Debian Lenny installation did not seem to recognize the Intel Pro/1000 10/100/1000 server Ethernet cards, dual port, PCI-E x4.
I ran: # lspci | grep Ethernet to list the pci devices (duh
). This gave me the following output:
03:00.0 Ethernet controller: Intel Corporation Device 10c9 (rev 01)
03:00.1 Ethernet controller: Intel Corporation Device 10c9 (rev 01)
04:00.0 Ethernet controller: Intel Corporation Device 10c9 (rev 01)
04:00.1 Ethernet controller: Intel Corporation Device 10c9 (rev 01)
06:00.0 Ethernet controller: Intel Corporation 82574L Gigabit Network Connection
07:00.0 Ethernet controller: Intel Corporation 82574L Gigabit Network Connection
The last two are the on board Ethernet controllers that work fine using the e1000e driver. The ones that I really wanted working were the first 4 items displayed as “Device 10c9 (rev 01)”. I couldn’t find anything on the internet other than a German post, which looked like the guy was having the same problem (I can’t decipher German). So I started trying out some different Intel drivers.
I first tried the standard e1000 driver as I noticed even some PCI express cards used this driver. That didn’t work. Then on my second shot I tried out this one “igb-1.2.44.9.tar.gz”. I’m assuming “igb” stands for Intel Gigabit, which makes sense as that’s what those cards are. If you don’t have the Intel driver disc that came with your cards you can find this driver here: http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&DwnldID=13663&lang=eng
To install this driver just do the following:
# tar xfv igb-1.2.44.9.tar.gz
# cd igb-1.2.44.9/src
# make
# make install
# modprobe igb
As soon as I executed “modprobe igb” I instantly had 4 new eth interfaces! You might want to add “igb” to /etc/modules, which is where you can also supply some parameters for the driver.
Hopefully this post will help out anyone else who is having trouble with these cards on Debian.