LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora > Fedora - Installation
User Name
Password
Fedora - Installation This forum is for the discussion of installation issues with Fedora.

Notices


Reply
  Search this Thread
Old 08-11-2006, 11:18 AM   #1
alela3
LQ Newbie
 
Registered: Oct 2003
Posts: 12

Rep: Reputation: 0
Fedora core 5 installation - network doesn't work


I've installed Fedora core 5 in a pc with 3 network cards. I've assigned them their static ip, and netmasks and gateway and none of those 3 cards can ping the gateway. Exactly as if the network cables are cut. So the ping from within the machine works perfect, but not link with the outside is registered.

Obviously I've exchanged wires with functioning machines. I've connected a windows machine with the same ip configuration and it worked without problem. I've used the same cables, the same switch and the same ip's on the windows box (my laptop).
Everything is allright, except that for the fedora installation network is not reached.

What should I check to begin catching the problem?

Thank you,

Alejandro
 
Old 08-29-2006, 02:46 AM   #2
punker22
Member
 
Registered: Sep 2003
Location: Tucson
Distribution: Fedora
Posts: 64

Rep: Reputation: 15
what does a 'ifconfig' show? what does a 'netstat -rn' show?

With that info I can provide you with further assistance :-)

-Scott
 
Old 08-30-2006, 08:42 PM   #3
alela3
LQ Newbie
 
Registered: Oct 2003
Posts: 12

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by punker22
what does a 'ifconfig' show? what does a 'netstat -rn' show?

With that info I can provide you with further assistance :-)

-Scott
Thank you very much scott.
I have 3 servers in a datacenter and the number 1 and number 2 work perfectly. The number 3 is the problematic one.

I am almost lost with this problem. I asked some linux gurus and they worket a couple of hours and finnaly they gave up. They told me that they have set private ips to the machines conected to the switch (servers 1,2 and 3) and that this machine (server 3) is not able to communicate with others on the same switch. They said that the problem may be due to some very strange problem on the PCI bus of the mother.
The mother is an A8VMX, and the processor is an AMD 64bit.
I've installed a fedora 5 distro, 64 bit ready.
This linux gurus also changed network cards (they tried 4 in total), exchanged cables with the other servers on the same switch, and the network still didn't work on server 3. Finally they installed a knoppix distro and everything worked in a minute, except the network, that still refused to work.
His advice was to install a windows os and see if it works, and I am going to do this tomorrow. If the windows os works, they promised to resing and dedicate to sell hot-dogs.

After taking a look at netstat -rn on this server number 3 I've got something like (I've took a picture at the screen but I can recheck tomorrow):

[root@s3 /]# netstat -rn
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
200.111.130.0 " 255.255.255.0 U 0 0 0 eth0


whereas the server number 2 reads (I've checked a minute ago):


[root@s2 /]# netstat -rn
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
200.111.130.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
127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 0 lo
0.0.0.0 200.111.130.1 0.0.0.0 UG 0 0 0 eth0

The server s3 has the following ifconfig (from another picture):

[root@s3 /]# ifconfig eth0
Link encap: Ethernet NWaddr 00:15:F2:C1:EB:E8
inet addr: 200.111.130.4 Bcast: 200.111.130.255 Mask:255.255.255.0
BROADCAST MULTICAST MTV:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Interrupt:11 base address:0xc400


Any idea?
Alejandro
 
Old 08-30-2006, 08:56 PM   #4
punker22
Member
 
Registered: Sep 2003
Location: Tucson
Distribution: Fedora
Posts: 64

Rep: Reputation: 15
You need to add a default route to s3 the command for you would be something along the lines of:

route add default 0.0.0.0 gw 200.111.130.1 netmask 255.255.255.0 dev eth0

now thats off the top of my head after a long day of work. But network connectivity will not work without a default route, why it's not providing you one when you do a 'service network restart' is beyond me, but the above is worth a try.

-Scott
 
Old 08-31-2006, 09:53 AM   #5
alela3
LQ Newbie
 
Registered: Oct 2003
Posts: 12

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by punker22
You need to add a default route to s3 the command for you would be something along the lines of:

route add default 0.0.0.0 gw 200.111.130.1 netmask 255.255.255.0 dev eth0

now thats off the top of my head after a long day of work. But network connectivity will not work without a default route, why it's not providing you one when you do a 'service network restart' is beyond me, but the above is worth a try.

-Scott
Scott, I've already tried something similar:

route add default gw 200.111.130.1

Is there a chance that this command has failed, and that the command you suggest:

route add default 0.0.0.0 gw 200.111.130.1 netmask 255.255.255.0 dev eth0

will work?
 
Old 08-31-2006, 10:30 AM   #6
DotHQ
Member
 
Registered: Mar 2006
Location: Ohio, USA
Distribution: Red Hat, Fedora, Knoppix,
Posts: 548

Rep: Reputation: 33
I suppose it's worth mentioning (but you've probably already done it) ...to turn off iptables and be sure your hosts.allow and hosts.deny are not getting in the way.
Your ifconfig shows no packets received or transmitted. That is a bad sign.
 
Old 08-31-2006, 11:15 AM   #7
alela3
LQ Newbie
 
Registered: Oct 2003
Posts: 12

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by DotHQ
I suppose it's worth mentioning (but you've probably already done it) ...to turn off iptables and be sure your hosts.allow and hosts.deny are not getting in the way.
Your ifconfig shows no packets received or transmitted. That is a bad sign.
Both hosts.allow and hosts.deny are void, as this is a brand new fedora core 5 standard installation.

I've completely turned off iptables.
Nothing happens.
 
Old 08-31-2006, 11:17 AM   #8
alela3
LQ Newbie
 
Registered: Oct 2003
Posts: 12

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by alela3
Both hosts.allow and hosts.deny are void, as this is a brand new fedora core 5 standard installation.

I've completely turned off iptables.
Nothing happens.
Scott:

Besides is really strange that knoppix installed so well in less than 3 minutes and the network is still not working, isn't it?

Alejandro
 
Old 09-04-2006, 10:33 AM   #9
alela3
LQ Newbie
 
Registered: Oct 2003
Posts: 12

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by alela3
Scott:

Besides is really strange that knoppix installed so well in less than 3 minutes and the network is still not working, isn't it?

Alejandro
Uffffffff, finally I've consulted a linux guru that made what follows:

He installed windows 2003 server for 64bits on the machine, which is a AMD 64 bits on a mother Assus AV8MX.

Everything worked perfect. Then he tried different versions of the linux kernel and he atributes the problem to an incompatibility between the verision of the kernel I am trying to install (it's a fedora core 5 for x86_64)and the mother from assus.

Notably nobody reported this kind of incompatibility that is supposed to happen on the asignation of interruptions of the mother.

This beloved guru told me that he will suggest a couple of alternatives in order to get things up and running.

Thank you all for your answers. I will post the solution if I am able to find it.

Alejandro
 
Old 09-19-2006, 10:14 PM   #10
lsropia
Member
 
Registered: Dec 2002
Distribution: RedHat
Posts: 30

Rep: Reputation: 15
Unhappy Fedora core 5 installation - network doesn't work

Sir,

I got the same problem. Same mother board and trying to make network "on", on FC5 x-64 installation.


Alex
 
Old 09-20-2006, 05:50 AM   #11
alela3
LQ Newbie
 
Registered: Oct 2003
Posts: 12

Original Poster
Rep: Reputation: 0
I finally changed the motherboard and the chip to intel and everything worked perfect. Also with the mother assus av8mx I wasn't able to use SATA disks, whereas no problem with the intel motherboard.

It's a compatibility problem, but unfortunately it took one month and a half and a good deal of money solve the problem.

Alejandro
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
making a network installation server for Fedora Core 1 scottie4442 Fedora 5 10-15-2006 04:59 PM
After installation of Fedora Core I and reboot mouse and keyboard will not work wheckel Fedora 3 03-03-2004 10:54 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora > Fedora - Installation

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