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 11-08-2006, 06:21 PM   #16
osvaldomarques
Member
 
Registered: Jul 2004
Location: Rio de Janeiro - Brazil
Distribution: Conectiva 10 - Conectiva 8 - Slackware 9 - starting with LFS
Posts: 519

Rep: Reputation: 34

Hi GP00,

Something stinks there. Are the electrical installation properly grounded?

Did your machine works after reset?

From your last post, "Destination unreachable" is a route problem. Enter the command
Code:
route -n
to see what the kernel is understanding. I guess that the PEERDNS is not being honored as you have an static route and this option is used when you get a lease address.

You could reconfigure your machine easily to get the dynamic IP. Just enter
Code:
netconfig
it will show you a dialog box that, when you check the "DHCP" config, it's done. Then,
Code:
service network restart
and you're done.
 
Old 11-08-2006, 06:25 PM   #17
GP00
LQ Newbie
 
Registered: Nov 2006
Posts: 18

Original Poster
Rep: Reputation: 0
I'm ready to head home for the day, been here too long.
Just a few mins ago, I came back and reset the computer, then redid the
tail command... I unplugged the cable, there was no message, plugged back in, no message change...

I did the network-restart command thing, then the tail again, but again, this time, unplugging the cable, didn't report it going down. Checking right now to see if the arp has something to do with that sequence of events. nope, ran arp -a then did the tail command thing again, no message changes when unplugged and replugged.

I'm going to head home for the night, hopefully give a go in the morning again
 
Old 11-08-2006, 06:28 PM   #18
GP00
LQ Newbie
 
Registered: Nov 2006
Posts: 18

Original Poster
Rep: Reputation: 0
route -n

kernel ip routing table
desintation gateway genmask flags metric ref use iface
aaa.bbb.ccc.0 0.0.0.0 255.255.255.0 u 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 u 0 0 0 eth0
0.0.0.0 aaa.bbb.ccc.1 0.0.0.0 ug 0 0 0 eth0


will try the switch to dynamic and restart
 
Old 11-08-2006, 06:31 PM   #19
GP00
LQ Newbie
 
Registered: Nov 2006
Posts: 18

Original Poster
Rep: Reputation: 0
issued command, got the funky lores setup screen, checked DHCP

issued network restarting command, okayed the shutdown, setup, and loopback, but

determining ip information for eth0 ... failed

was hoping. now, I'm heading out
 
Old 11-08-2006, 06:48 PM   #20
osvaldomarques
Member
 
Registered: Jul 2004
Location: Rio de Janeiro - Brazil
Distribution: Conectiva 10 - Conectiva 8 - Slackware 9 - starting with LFS
Posts: 519

Rep: Reputation: 34
You deserves a good dream this night!!! See you tomorrow.
 
Old 11-09-2006, 10:09 AM   #21
GP00
LQ Newbie
 
Registered: Nov 2006
Posts: 18

Original Poster
Rep: Reputation: 0
I reconfigured it for static ip this time again, and reset the newtork service and did the 'route' command again
this time, its the same table as above, but instead of the third line being
0.0.0.0 aaa.bbb.ccc.1 .....
it says
default aaa.bbb.ccc.1 .....

does that mean anything?

And for that matter, what does the route table say - is everything "as it should be" or different from what is expected, therefor, check the xxxxxx file and manually change the ppp.qqq.rrr.sss to ....... type things?
 
Old 11-09-2006, 10:12 AM   #22
GP00
LQ Newbie
 
Registered: Nov 2006
Posts: 18

Original Poster
Rep: Reputation: 0
actually, I'm wrong - another change NOW is that the route table has
*
in place of the 0.0.0.0 in the gateway column for the first two entries as well
 
Old 11-09-2006, 01:54 PM   #23
GP00
LQ Newbie
 
Registered: Nov 2006
Posts: 18

Original Poster
Rep: Reputation: 0
status update

got bold, got brave, got curious. command ifup eth0 was tossing the RTNETLINK answers: Invalid argument error

Edited the ifup script with echo statements to trace, got through to the ifup-post, then ifup-route, craps out in ifup-route in the handle_file function.
Craps out on this command:

/sbin/ip route add $line

where $line = aaa.bbb.ccc.19/24 via aaa.bbb.ccc.1 dev eth0

so, it seems that the hardware issue itself has been fixed up - though I really don't know if it was the combination of doing, undoing, redoing, reundoing, doing, undoing, and redoing while undoing and the moon was directly overhead, or if the moon was more on the horizon at the time....
 
Old 11-09-2006, 03:48 PM   #24
osvaldomarques
Member
 
Registered: Jul 2004
Location: Rio de Janeiro - Brazil
Distribution: Conectiva 10 - Conectiva 8 - Slackware 9 - starting with LFS
Posts: 519

Rep: Reputation: 34
Hi GP00,

I told you yesterday to enter "route -n"; this option show all the address as numbers: "default" means "0.0.0.0" and vice-versa. On the gateway, "*" also means "0.0.0.0", which means "no gateway".

I think this route command of the last post a bit strange as you don't need route into your subnetwork. The ARP protocol should resolve the destinations.

Can you ping to your gateway with and without your route command?
 
Old 11-13-2006, 12:00 PM   #25
GP00
LQ Newbie
 
Registered: Nov 2006
Posts: 18

Original Poster
Rep: Reputation: 0
been away for a while - I'm not someone who will abandon a thread and leave the participants in the dark....

pertaining to the arp thing, is that something I'd have to execute EVERY TIME I start the computer in order for the likelyhood of something to work?

As for the error-trackdown in the script, I had repeatedly tested it by running
ifup eth0 over and over, and it seems that it might be that when the system boots it puts that info into the table, then when I rerun it, it is trying to add existing info to the table? Somehow, somewhere, an entry for aaa.bbb.ccc.0 was made to aaa.bbb.ccc.19 and when I changed it to 0, the script no longer craps a message in bootup about an invalid argument, but rather "file exists" at the point now where it is executing the command to add ip route
aaa.bbb.ccc.0/24 via aaaa.bbb.ccc.1 dev eth0
 
Old 11-13-2006, 12:42 PM   #26
osvaldomarques
Member
 
Registered: Jul 2004
Location: Rio de Janeiro - Brazil
Distribution: Conectiva 10 - Conectiva 8 - Slackware 9 - starting with LFS
Posts: 519

Rep: Reputation: 34
Hi GP00,

Just after you complete your boot procedure, you should have a routing table as you displayed on your post of 11-08-06, 10:28 PM, if you have the ifcfg-eth0 as you displayed on your post of 11-08-06 09:49 PM.

Having this routing table, you should ping all the aaa.bbb.ccc.xxx net. You should also ping outside this subnet as you have aaa.bbb.ccc.1 as your default gateway.

If you can't do this, you may have one of two problems:
- your physical/electrical link is not working (cable, nic, switch)
- the de2471x driver does not work.

I would suggest you to get another nic, of the popular ones, such as realtek or via, replace and see if your computer enters the network.
This would eliminate the cable and switch problems or would confirm this problem is outside your computer.

If it works with another card, you should contact Red Hat to see if there is some problem with this device driver on the version you are using.
 
Old 11-13-2006, 02:07 PM   #27
GP00
LQ Newbie
 
Registered: Nov 2006
Posts: 18

Original Poster
Rep: Reputation: 0
Yeah, I am getting to that point where its time to change the network card again, and hope that all the trouble into locating 'the right driver' will be better this time. I'd feel MUCH better about doing so if I knew what exactly worked last time to suddenly make the card active, because it only seemed that after the nth time rbooting and remaking a change back to an earlier change from an earlier change that hadn't worked, etc, did it suddenly become active.. but, close to the point of trying, yes - got to get another card.
 
Old 05-22-2007, 06:34 PM   #28
UhhMaybe
Member
 
Registered: Jul 2004
Location: Salt Lake City, Utah
Distribution: Absolute 12.0 Studio 64 1.3.0
Posts: 470

Rep: Reputation: 30
Cool

Seems a replacement PCI Ethernet Card is warranted. Try http://www.pcsurplusonline.com and http://www.outletpc.com for inexpensive hardware. Watch the shipping costs and it will be worth YOUR while. I use 3COM 3c905b cards. Linux Distro's have the drivers included. Setup Networking during the install, reboot, and YOU'RE online. YOUR system has the older Kernel, so this will work for YOU. YOU need to use the tools..."ifconfig -a" and "ifconfig", "lspci", "lsusb", "lsmod", "modprobe", "route -n", "route", "ethtool", and "dig". And the network start and stop commands. And the Eth0 <Eth1, Eth2,etc.> up and down commands.
 
Old 06-04-2009, 10:54 AM   #29
cmalone_vms
LQ Newbie
 
Registered: Jun 2009
Posts: 1

Rep: Reputation: 0
Red face HELP!!!

I have been in this cold, nosy room for three days, please help. I rebuilt my Red Hat server and unable to connect out to anything. I am need to Linux but I think I have been through the basics. My problems are similiar to the thread above. Please help!
 
  


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
RH9 on VMWare Eth0 "No Link Present" GGSpike Linux - Networking 11 04-01-2008 07:32 AM
FC5 ndiswrapper "device wlan0 does not seem to be present" Dragnet Linux - Newbie 3 10-27-2006 01:16 AM
eth0 "not present" according to Redhat 9 briankb713 Linux - Networking 7 01-25-2005 03:45 AM
"3C509XX not present on eth0, deferring configuration" pcardout Linux - Newbie 0 07-11-2004 04:36 AM
audio not working.."device not present"?? abiagi Linux - Hardware 4 12-05-2003 10:41 PM

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

All times are GMT -5. The time now is 03:14 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