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 05-05-2004, 11:10 AM   #1
ChangeOfPace
Member
 
Registered: Mar 2003
Posts: 34

Rep: Reputation: 15
Error fetching interface...


Hi all,

Running SuSE 7.3
Ran into a snag trying to set up my ethernet card:

"Error fetching interface information: Device not found"

/sbin/lspci

01:05:0 Ethernet Controller: Realtek Semiconductor RTL-8029(AS)
01:09:0 Ethernet Controller: BROADCOM Corp: Unknown Device 4401 (rev01)

Only Realtek I see in the device module list is RTL8129/0139. I guess this is not a compatible driver.

Any suggestions for a networking ??
 
Old 05-05-2004, 12:16 PM   #2
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168
after a bit of googling it looks like that rtl-8029 chip is compatible w/the ne2000 module. the drivers for the broadcom card can be found here

http://www.broadcom.com/drivers/downloaddrivers.php

also have a look at this

http://www.linuxquestions.org/hcl/sh...hp?product=273

good luck.
 
Old 05-05-2004, 12:58 PM   #3
ChangeOfPace
Member
 
Registered: Mar 2003
Posts: 34

Original Poster
Rep: Reputation: 15
Well that solved my driver issue (Thanks), but I am back to where I started with a config issue.

Can't ping my Linux machine from my network. I am positive it is the not the physical connection, but I think it is the gw.

route -n

Destination 10.1.10.0
Gateway 0.0.0.0
Genmask 255.255.255.0
Flags U
Metric 0
Ref 0
Use 0
Iface eth0

I tried:

route add default gw ip.of.new.gateway

but that just adds another line to route -n, with the same info as above except the

Destination 0.0.0.0
Gateway 10.1.10.1
Flags UG

Any help would great.
 
Old 05-05-2004, 01:36 PM   #4
greggiepoo
LQ Newbie
 
Registered: May 2004
Location: Baton Rouge, LA
Distribution: Fedora Core 1
Posts: 19

Rep: Reputation: 0
Try "ifconfig eth0 10.0.0.2 netmask 255.255.255.0 gw 10.0.0.1 up"

Of course, substitute your IP address for 10.0.0.2, your netmask for 255.255.255.0, and your gateway address for 10.0.0.1. You shouldn't need to manually add the default gateway route to your routing table -- that should appear automatically when you run this command.

Also, know that just by running this command it will not save -- you must edit your networking startup scripts to make the changes permament.

<edit>
--oops: just realized that gw is not a valid option.

Uh, which distro are you using?

<edit>
Duh, I need to learn how to read... SuSE 7.3... Sorry...

Last edited by greggiepoo; 05-05-2004 at 01:41 PM.
 
Old 05-05-2004, 01:39 PM   #5
ChangeOfPace
Member
 
Registered: Mar 2003
Posts: 34

Original Poster
Rep: Reputation: 15
I will give it a shot.

"edit your networking startup scripts "

Where would I locate them in SuSE 7.3

Thanks much.
 
Old 05-05-2004, 01:40 PM   #6
greggiepoo
LQ Newbie
 
Registered: May 2004
Location: Baton Rouge, LA
Distribution: Fedora Core 1
Posts: 19

Rep: Reputation: 0
I'm not quite sure in SuSE 7.3. Do you have a directory "/etc/sysconfig"?
 
Old 05-05-2004, 01:46 PM   #7
ChangeOfPace
Member
 
Registered: Mar 2003
Posts: 34

Original Poster
Rep: Reputation: 15
no i dont
 
Old 05-05-2004, 01:50 PM   #8
ChangeOfPace
Member
 
Registered: Mar 2003
Posts: 34

Original Poster
Rep: Reputation: 15
ifconfig eth0 10.0.0.2 netmask 255.255.255.0 gw 10.0.0.1 up

gw: Host name lookup failure
 
Old 05-05-2004, 01:52 PM   #9
greggiepoo
LQ Newbie
 
Registered: May 2004
Location: Baton Rouge, LA
Distribution: Fedora Core 1
Posts: 19

Rep: Reputation: 0
yes, I realized my mistake in my earlier post -- gw is not an option for ifconfig. I was thinking about the Windows command ipconfig. My mistake.

I wish I was more familiar with SuSE and where it places the network scripts. I'm searching right now. As soon as I find something, I'll let you know.
 
Old 05-05-2004, 01:56 PM   #10
ChangeOfPace
Member
 
Registered: Mar 2003
Posts: 34

Original Poster
Rep: Reputation: 15
thanks for the help
 
Old 05-05-2004, 01:56 PM   #11
greggiepoo
LQ Newbie
 
Registered: May 2004
Location: Baton Rouge, LA
Distribution: Fedora Core 1
Posts: 19

Rep: Reputation: 0
Here is a link that might help:

http://portal.suse.com/sdb/en/1999/0...eshooting.html

Seems that if you have YaST installed that you can configure networking through it. Basically, these are the commands that you would have to run manually to get it to work:

ifconfig eth0 10.0.0.2 netmask 255.255.255.0 up
route add -net 10.0.0.0 netmask 255.255.255.0 dev eth0
route add default gw 10.0.0.1

If you run those commands, your networking SHOULD be set up properly, if I'm not mistaken.
 
  


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
HELP error fetching interface nkeever Linux - Newbie 1 05-09-2005 07:31 PM
error while fetching mail; spooge Linux - Networking 0 01-26-2004 06:38 PM
error while fetching mail spooge Linux - Networking 0 12-01-2003 03:12 PM
Ximian Evolution error fetching mail fletcher Linux - Software 1 08-07-2003 10:50 AM
error fetching interface information jw.pi Linux - Networking 2 06-22-2001 06:37 PM

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

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