LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 09-14-2009, 05:12 PM   #1
Louis_Carole
Member
 
Registered: Feb 2004
Location: Oxford, OH
Distribution: LFS 5.1.1, Slackware 9.1
Posts: 94

Rep: Reputation: 15
Network adapter down


Dear All,

A node on a cluster that our lab has had sitting in a dusty room since time forgotten does not seem to want to talk to the rest of the world any more.

Following is the information I found was being asked for on other posts for similar questions, transcribed by hand.

Thanks in advance,

Louis

PS Hardware documentation? Hahahahahahahaha!


Code:
# udev -a   # NOTE: No distro info
Linux 2.4.20-8 #1 Thu Mar 13 17:18:24 EST 20033/13/2003 i686 Athlon i386 GNU/Linux

# lspci
...
Realtek Ethernet Controller, yada yada
...

# modprobe e1000
...
init_module: No such device
...

# dmesg | tail   # nothing of interest before, I don't think.
...
Intel PRO/1000 Network Driver version 4.4.19-K1
sis900.c: v1.08.06 9/24/2002
sis900.c: v1.08.06 9/24/2002
sis900.c: v1.08.06 9/24/2002
Intel PRO/1000 Network Driver version 4.4.19-K1

# cat /var/log/boot.log | grep fail
Mounting NFS filesystems: Failed
Bringing up interface eth0: failed
attempting to contact yp server: failed
attempting to contact yp server: failed

# lsmod
...
nfsd
...

# ifconfig eth0 whatever
...
sis900 device eth0 does not seem to be present, delaying initialization
...

# ifup eth0
...
SIOCSIF{ADDR,NETMASK,BRDADDR}: No such device
eth0: unknown interface
...

# grep -R eth0 /etc/*
...
/etc/modules.conf:alias eth0 sis900
/etc/radvd.conf:alias eth0 sis900
/etc/sysconfig/network-scripts/ifcfg-eth0:DEVICE=eth0
...
 
Old 09-14-2009, 05:29 PM   #2
MS3FGX
LQ Guru
 
Registered: Jan 2004
Location: NJ, USA
Distribution: Slackware, Debian
Posts: 5,852

Rep: Reputation: 361Reputation: 361Reputation: 361Reputation: 361
Well the first question, and I am going to assume you already have an answer to this, would be why are you running such an ancient kernel? More than likely the problem is the outdated and possibly buggy drivers that your kernel is using. There is almost no doubt in my mind that using a modern kernel would resolve your problem.
 
Old 09-14-2009, 06:22 PM   #3
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,679

Rep: Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892
Assuming this computer has been working for awhile and no changes have been made to it I'm assuming according to the OPs first sentence I do not think it is a kernel issue.

You have posted incomplete snippets of information that really do not provide us with much information. Post the complete output of the lspci command in reference to the ethernet adapters. yada yada is not helpful. There is more then one Realtek chipset on the market. I assume it is a Realtek RTL8201 based on the sis900 reference. Do you also have a Intel PRO/1000 adapter installed in this computer?

My first guess is that the network adapter has failed. Have you tried rebooting the computer?
 
Old 09-16-2009, 02:00 PM   #4
Louis_Carole
Member
 
Registered: Feb 2004
Location: Oxford, OH
Distribution: LFS 5.1.1, Slackware 9.1
Posts: 94

Original Poster
Rep: Reputation: 15
The node OS's will not be upgraded. They will die, and will not be replaced. We are already cannibalizing.

We rebooted (a bunch of times) as a first try. The network adapter did not respond.

Behavior for 5 years: up, used in parallel for computational chemistry
Behavior for the last couple months: down, neglected

Code:
# lspci | grep -i realtek
00:0e.0 Ethernet Controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)
There is no Intel PRO/1000 adapter on the computer. There are 8 lspci entries total, and none of the other 7 seemed relevant - I could be wrong.

I cannot cut and paste entire swathes, since there would be nowhere to send the data to. It does, however, force y'all to guess at what you don't know, which is unfair to you.

Let me know more specifically what info would be helpful to you. I may be able to find a floppy somewhere, if a full dump is what is required.

I am ready for bad news, and bad news might be why similar posts ended without resolution.

- Louis

Last edited by Louis_Carole; 09-16-2009 at 02:01 PM.
 
Old 09-16-2009, 09:15 PM   #5
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,617

Rep: Reputation: 7963Reputation: 7963Reputation: 7963Reputation: 7963Reputation: 7963Reputation: 7963Reputation: 7963Reputation: 7963Reputation: 7963Reputation: 7963Reputation: 7963
Quote:
Originally Posted by Louis_Carole View Post
The node OS's will not be upgraded. They will die, and will not be replaced. We are already cannibalizing.

We rebooted (a bunch of times) as a first try. The network adapter did not respond.

Behavior for 5 years: up, used in parallel for computational chemistry
Behavior for the last couple months: down, neglected

Code:
# lspci | grep -i realtek
00:0e.0 Ethernet Controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)
There is no Intel PRO/1000 adapter on the computer. There are 8 lspci entries total, and none of the other 7 seemed relevant - I could be wrong.

I cannot cut and paste entire swathes, since there would be nowhere to send the data to. It does, however, force y'all to guess at what you don't know, which is unfair to you.

Let me know more specifically what info would be helpful to you. I may be able to find a floppy somewhere, if a full dump is what is required.

I am ready for bad news, and bad news might be why similar posts ended without resolution.

- Louis
Well, have you tried to replace the NIC?? Could be that the NIC died, which is why the module(s) won't load and the interface won't come up.
 
Old 09-16-2009, 09:50 PM   #6
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,679

Rep: Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892
Yes it is unfair to try to guess with bad information.

The Realtek 8139 uses the 8139too module. If this is the only adapter then not sure why the modules.conf file contains a reference to the sis900 module. Maybe some hardware was swapped out at sometime but nothing was ever updated.

Look at the output of the dmesg to see if the adapter is being recognized. Look at the output of the lsmod command to see if the module is being loaded.

Try:
modprobe 8139too

If you do not see any messages then it worked. Edit the modules.conf file to replace the sis900 with the 8139too module.

You can then try ifup eth0.

Last edited by michaelk; 09-16-2009 at 09:53 PM.
 
Old 09-17-2009, 12:47 PM   #7
Louis_Carole
Member
 
Registered: Feb 2004
Location: Oxford, OH
Distribution: LFS 5.1.1, Slackware 9.1
Posts: 94

Original Poster
Rep: Reputation: 15
I will try all these suggestions.

In the mean time, I do not know how people usually disseminate information about computers that are unable to connect to a network. Please let me know if there is a protocol for this - then I could give you the information you need, assuming I know what that information is I just grabbed a bunch of bits from what I saw other posts were asking for, and am learning, e.g., the meaning of NIC, as I go along.

- Louis
 
  


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
Fedora C2 - Wireless network drivers? Broadcom 802.11g Network Adapter FragTek Linux - Wireless Networking 7 01-22-2010 12:10 AM
Network adapter(Realtek RTL8111/8168B) not communicating with network Brett Delport Linux - Networking 1 11-19-2008 08:29 AM
Fedora 9 and Network Adapter 3COM OfficeConnect Wireless 11g Compact USB Adapter mpharkin Linux - Newbie 1 09-20-2008 05:18 AM
Can't setup network with rtl8150 usb network adapter IvanJ Linux - Networking 1 12-27-2005 12:16 AM
new network adapter under mandrake single network firewall nerip Linux - Networking 3 08-03-2002 02:13 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 12:57 AM.

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