LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 06-21-2005, 11:01 AM   #1
Wraezor
LQ Newbie
 
Registered: Apr 2005
Distribution: FC 2/3/4 & RHES 3/4
Posts: 15

Rep: Reputation: 0
Gigabit NIC not detected


Hey folks,

Is there anything I'm missing here. I have an Intel SE7505VB2 Server board with two built-in NICs. One's 10/100 and one's GB. Up until recently (when I purchased a GB switch), I was just using the 10/100 port. Now I'm trying to get the GB working.

I have the NIC enabled in the BIOS (but not sure if there's any other BIOS settings that might affect it). Once the system comes up (RHEL 3 / 2.4.21-27.0.2.ELsmp), it is not displayed in lspci. Where should I look for solutions? lspci displays the direct output of detected hardware right...it isn't affected by drivers or modules, etc, correct? If it's not in lspci, then could it be a hardware problem?

I have a virtually identical machine (same mainboard) and the GB NIC is working fine. I have it enabled in BIOS and it shows up in lspci, that's how I know what I'm looking for. I've included the lspci output from the working machine to show what's missing on the other.

I'm just wondering if I'm missing any steps that may be my problem or is there any other way of checking for the cause of the problem.

Thanks for any assistance,

Jordan
Code:
# lspci
00:00.0 Host bridge: Intel Corp. E7505 Memory Controller Hub (rev 03)
00:00.1 Class ff00: Intel Corp. E7000 Series RAS Controller (rev 03)
00:01.0 PCI bridge: Intel Corp. E7000 Series Processor to AGP Controller (rev 03)
00:02.0 PCI bridge: Intel Corp. E7000 Series Hub Interface B PCI-to-PCI Bridge (rev 03)
00:02.1 Class ff00: Intel Corp. E7000 Series Hub Interface B PCI-to-PCI Bridge RAS Controller (rev 03)
00:1d.0 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 02)
00:1d.1 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 (rev 02)
00:1d.2 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 (rev 02)
00:1d.7 USB Controller: Intel Corp. 82801DB/DBM (ICH4/ICH4-M) USB 2.0 EHCI Controller (rev 02)
00:1e.0 PCI bridge: Intel Corp. 82801BA/CA/DB/EB/ER Hub interface to PCI Bridge (rev 82)
00:1f.0 ISA bridge: Intel Corp. 82801DB/DBL (ICH4/ICH4-L) LPC Bridge (rev 02)
00:1f.1 IDE interface: Intel Corp. 82801DB/DBL (ICH4/ICH4-L) UltraATA-100 IDE Controller (rev 02)
00:1f.3 SMBus: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus Controller (rev 02)
02:1c.0 PIC: Intel Corp. 82870P2 P64H2 I/OxAPIC (rev 04)
02:1d.0 PCI bridge: Intel Corp. 82870P2 P64H2 Hub PCI Bridge (rev 04)
02:1e.0 PIC: Intel Corp. 82870P2 P64H2 I/OxAPIC (rev 04)
02:1f.0 PCI bridge: Intel Corp. 82870P2 P64H2 Hub PCI Bridge (rev 04)
03:02.0 RAID bus controller: 3ware Inc 3ware ATA-RAID
04:02.0 Ethernet controller: Intel Corp. 82540EM Gigabit Ethernet Controller (rev 02)
05:02.0 VGA compatible controller: ATI Technologies Inc Rage XL (rev 27)
05:03.0 Ethernet controller: Intel Corp. 82557/8/9 [Ethernet Pro 100] (rev 0d)
 
Old 06-21-2005, 03:22 PM   #2
TomalakBORG
Member
 
Registered: Dec 2004
Posts: 245

Rep: Reputation: 30
The problem may be in the kernel, i.e., the proper module/option isn't compiled into the kernel. You are using the 2.4 kernel, but I'm not sure if gigabit was supported back then, although I assume it was. I think lspci is effected by the kernel. Has the nic ever worked under another distro of linux, or can you try a new live cd (slax is good) and see if picks it up? It's just a thought, but I'd google around and check your kernel.
 
Old 06-21-2005, 03:48 PM   #3
Wraezor
LQ Newbie
 
Registered: Apr 2005
Distribution: FC 2/3/4 & RHES 3/4
Posts: 15

Original Poster
Rep: Reputation: 0
I've got the exact same kernel revision on the other identical server where it's working. Gigabit is supported in the 2.4 kernel. This Intel chipset uses the e1000 module. I may try a live CD sometime, but it's a production server so I'm not extremely anxious to take it offline .

I've never tried the NIC before now, so I don't know if it ever worked.

I'm thinking it may either be hardware or a BIOS setting. Anybody know of anything in an Intel Server board BIOS would might do something like that? (How's that for an obscure question )

Thanks
 
Old 06-21-2005, 05:06 PM   #4
urka58
Member
 
Registered: Nov 2003
Distribution: slackware 15
Posts: 546

Rep: Reputation: 43
Usually the kernel (hotplug) probes just for one card (there are some lucky exceptions)
Try by dmesg to check if the kernel can see the second card. If it does you're done, otherwise it is a little complicate.
You can also try as root
ifconfig -a
it should give you an output like
eth0 bla.bla.bla
eth1 bla.bla.bla
lo bla.bla.bla

If you can see an "eth1" device in the output it means the kernel can see the second card.

If no eth1 can be seen then you should check if the correct module for the second card has been loaded (few chance)
Do a google search to find out what is the module you should use, install and/or load it.
Once the module is in the memory, start configuring your card manually by
ifconfig eth1 192.168.1.1 netmask 255.255.255.0 broadcast 192.168.1.255
Ip addresses can be set according to your requirements of course, they are just an example.
then run
route add -net 192.168.1.0 dev eth1
at this point
ifconfig -a should give an output with an eth1 somewhere.
If it does, edit your network startup script including the above commands. (according to your distro requirements)
Chance are you can do this in your rc.local script.
If this doesn' work you are in a bad position.
You must know what memory address/es and IRQ can be assigned to your card by doing an extra google search. The manufacturer web site can be a good starting point. Windows if installed on the same box can be helpful for this purpose.
Once you get the necessary informations edit your /etc/module.conf (modprobe.conf) adding
alias eth1 module_name (this is your module name literally)
options module_name io=0x330 irq=8 (put proper io and irq here of course)
You can also tell LILO, passing a command line at boot, to reserve memory address and irq but at the moment I do not remember the syntax.
Hope this helps
Ciao
 
Old 06-21-2005, 05:16 PM   #5
Wraezor
LQ Newbie
 
Registered: Apr 2005
Distribution: FC 2/3/4 & RHES 3/4
Posts: 15

Original Poster
Rep: Reputation: 0
The only thing dmesg shows is that it tried to load the driver...
Code:
Intel(R) PRO/1000 Network Driver - version 5.3.19-k2-NAPI
Copyright (c) 1999-2004 Intel Corporation.
But when I do a subsequent 'lsmod' it's not loaded. If I try to 'modprobe e1000' it says "No such device".

I'll try specifying IRQ and IO parameters tomorrow, at let you know how it goes.
 
Old 06-21-2005, 10:26 PM   #6
TomalakBORG
Member
 
Registered: Dec 2004
Posts: 245

Rep: Reputation: 30
Long shot here, but on my system ifconfig outputs only the loopback device. However, if you type ifconfig eth0 it displays my nic which is set to eth0. What does ifconfig tell you? Again, I am no linux expert but it would be the first or second thing I'd do.
 
Old 06-27-2005, 05:16 PM   #7
Wraezor
LQ Newbie
 
Registered: Apr 2005
Distribution: FC 2/3/4 & RHES 3/4
Posts: 15

Original Poster
Rep: Reputation: 0
I tried specifying some commandline parameters, but to no avail.
Code:
# insmod e1000 irq=52
Using /lib/modules/2.4.21-27.0.2.ELsmp/kernel/drivers/net/e1000/e1000.o
Warning: ignoring irq=52, no such parameter in this module
/lib/modules/2.4.21-27.0.2.ELsmp/kernel/drivers/net/e1000/e1000.o: init_module: No such device
IRQ 52 is what that NIC uses on the other identical machine we have, so I tried it. If I try it without the parameter, it prints the same, without the middle line of output.

And ifconfig...
Code:
# ifconfig eth0
eth0: error fetching interface information: Device not found
 
Old 07-29-2005, 02:35 PM   #8
EOFError
LQ Newbie
 
Registered: Jul 2005
Location: NJ
Distribution: RH9, Core3
Posts: 2

Rep: Reputation: 0
I have the same problem, only I know the card is fine. My issue is the module wont load with the same error. Did you ever figure out a solution?
 
Old 07-29-2005, 03:36 PM   #9
Wraezor
LQ Newbie
 
Registered: Apr 2005
Distribution: FC 2/3/4 & RHES 3/4
Posts: 15

Original Poster
Rep: Reputation: 0
No I haven't...still using the 10/100 NIC at the moment. My next step would be to try a Live CD, like Knoppix. If it detects it there, I'd copy down all the IO & IRQ parameters it's using, and try to force those back into RHEL. I just can't bring the machine down at any given time, so I haven't tried it yet. It worked for getting my WLAN card working in my laptop though.
 
Old 08-01-2005, 09:14 AM   #10
EOFError
LQ Newbie
 
Registered: Jul 2005
Location: NJ
Distribution: RH9, Core3
Posts: 2

Rep: Reputation: 0
I got it to work. I found out that for most of these PRO100/1000 adapters you have to disable the Intel Boot Agent under Linux.
Install the PROBOOT.exe file from Intel on a Win pc, create a DOS boot floppy, copy the IBAUtil.exe file from the c:\IntePRO\Boot Agent to the floppy, boot the linux pc from the floppy, run "IBAUtil.exe -all -FD" to disable the boot agent for all installed adapters.
Reboot, run modprobe e1000, run kudzu, add the following to /etc/modules.conf
"alias eth0 e1000" - incrementing eth* for each adapter one line after the other

Hope it helps
EOF
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
troubles getting Gigabit NIC to work in slack 10 (HGA32T NIC) TheLinuxDuck Slackware 10 03-10-2005 04:37 PM
A Gigabit NIC in RH9 ikhanr Linux - Newbie 3 12-15-2004 11:45 PM
Looking for a gigabit NIC for Fedora1 Phaethar Linux - Networking 3 08-13-2004 02:53 PM
Gigabit NIC and Suse 9.1 dw333uk Linux - Networking 1 08-06-2004 01:39 PM
Gigabit Ethernet Dont Detected esanzpe Linux - Hardware 3 02-26-2004 03:32 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 12:36 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration