LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 02-13-2006, 01:38 PM   #1
AndyGhost
LQ Newbie
 
Registered: Feb 2006
Location: Timisoara, Romania
Distribution: Slackware
Posts: 5

Rep: Reputation: 0
Problems installing network interface realtek 8139


Hi everyone,

I recently installed Slackware 10.2 with setup option "full install" but I couldn't make the network to work.

Here are some details about my configurations:

- I'm connected to internet through a router in a LAN
- Slackware was setup to run hotplug at boot time
- running "netconfig" and setting up the static IP for my station, the gateway (router's IP) and the DNS of the ISP makes working just the loopback
- pinging the router returns no packets

What i tried to do:
- I booted with nohotplug option (I assumed this feature might screw my network card)
- I loaded the 8139oo driver module in rc.modules
- rebooting (still with nohotplug option) the network card works as with hotplug set and no manual loading of the driver (this means I can ping my own station but I cannot see the router)

More...
- following the steps described in slackbook I've noticed that no rc.netdevice script was created in /etc/rc.d
- the settings in rc.inet1.conf seem OK (IP set, gateway set, netmask set)
- resolv.conf seems ok also (the DNS is in place)
- ifconfig command shows me that the eth0 interface is created

I don't know what else to try - running KNOPPIX directly from the CD and with minor network settings (IP, netmask, gateway and DNS)made the internet connection to work fine - I assume that there is no problem with my hardware configuration and the problem comes from some "special" settings in Slackware that I miss somehow.

Thank you,
Andi
 
Old 02-13-2006, 02:02 PM   #2
uselpa
Senior Member
 
Registered: Oct 2004
Location: Luxemburg
Distribution: Slackware, OS X
Posts: 1,507

Rep: Reputation: 47
I have this card too and it has always worked well with Slack so I assume a config error here.
First thing is to get the eth0 interface up.
What input did you give to netconfig?
What is the output of `ifconfig -a` ?
What is the output of `cat /etc/rc.d/rc.inet1.conf | grep -v ^#` ?
 
Old 02-13-2006, 02:47 PM   #3
AndyGhost
LQ Newbie
 
Registered: Feb 2006
Location: Timisoara, Romania
Distribution: Slackware
Posts: 5

Original Poster
Rep: Reputation: 0
Hi uselpa,

Here it is the information you asked for:

netconfig inputs:
hostname : RoseRed
domainname : rdstm.ro
static IP : 192.168.0.7
netmask : 255.255.255.0
gateway : 192.168.0.1
nameserver : 193.231.233.1

(Same inputs worked fine with KNOPPIX except domain name which I was not asked for by the configtool of that distribution. Because I'm not using a domain here - the router just connects to the ISP and 4 other stations including mine are connecting to the Internet - i put an imaginary domain)

outputs from ifconfig command:

eth0 Link encap:Ethernet HWaddr 00:E0:4D:06:748
inet addr:192.168.0.7 Bcast:192.168.0.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU: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:9 Base address:0x1000

lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:12 errors:0 dropped:0 overruns:0 frame:0
TX packets:12 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:1176 (1.1 Kb) TX bytes:1176 (1.1 Kb)


outputs from rc.inet1.conf:

IPADDR[0]="192.168.0.7"
NETMASK[0]="255.255.255.0"
USE_DHCP[0]=""
DHCP_HOSTNAME[0]=""

IPADDR[1]=""
NETMASK[1]=""
USE_DHCP[1]=""
DHCP_HOSTNAME[1]=""

IPADDR[2]=""
NETMASK[2]=""
USE_DHCP[2]=""
DHCP_HOSTNAME[2]=""

IPADDR[3]=""
NETMASK[3]=""
USE_DHCP[3]=""
DHCP_HOSTNAME[3]=""

GATEWAY="192.168.0.1"

DEBUG_ETH_UP="no"


# the default 'eth4'
# 1360 when you use NAT'ed IPSec traffic.
# your default gateway
# server
# defined in rc.wireless.conf, by prepending
# 'WLAN_' to the parameter's name. Useful for
# those with multiple wireless interfaces.
# Some drivers require a private ioctl to be
# set through the iwpriv command. If more than
# one is required, you can place them in the
# IWPRIV parameter (space-separated, see the
# example).

I hope it is useful for you to help me,
Thanks,
Andi
 
Old 02-13-2006, 03:04 PM   #4
uselpa
Senior Member
 
Registered: Oct 2004
Location: Luxemburg
Distribution: Slackware, OS X
Posts: 1,507

Rep: Reputation: 47
What is the output of `route`?
 
Old 02-13-2006, 03:25 PM   #5
AndyGhost
LQ Newbie
 
Registered: Feb 2006
Location: Timisoara, Romania
Distribution: Slackware
Posts: 5

Original Poster
Rep: Reputation: 0
Hi uselpa,

The output of route command is:

Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
localnet * 255.255.255.0 U 0 0 0 eth0
loopback * 255.0.0.0 U 0 0 0 lo
default 192.168.0.1 0.0.0.0 UG 1 0 0 eth0

Thanks,
Andi
 
Old 02-13-2006, 03:44 PM   #6
uselpa
Senior Member
 
Registered: Oct 2004
Location: Luxemburg
Distribution: Slackware, OS X
Posts: 1,507

Rep: Reputation: 47
Looks right to me.
What is the result of `ping -c 5 68.142.197.83` ?
 
Old 02-13-2006, 03:59 PM   #7
AndyGhost
LQ Newbie
 
Registered: Feb 2006
Location: Timisoara, Romania
Distribution: Slackware
Posts: 5

Original Poster
Rep: Reputation: 0
The output of ping command:

PING 68.142.197.83 (68.142.197.83) 56(84) bytes of data.
From 192.168.0.7 icmp_seq=1 Destination Host Unreachable
From 192.168.0.7 icmp_seq=2 Destination Host Unreachable
From 192.168.0.7 icmp_seq=3 Destination Host Unreachable
From 192.168.0.7 icmp_seq=4 Destination Host Unreachable
From 192.168.0.7 icmp_seq=5 Destination Host Unreachable

--- 68.142.197.83 ping statistics ---
5 packets transmitted, 0 received, +5 errors, 100% packet loss, time 4020ms
, pipe 3
 
Old 02-15-2006, 05:29 PM   #8
gusgoose_it
LQ Newbie
 
Registered: Jan 2006
Location: todi (italy)
Posts: 18

Rep: Reputation: 0
Hi AndyGhost
I had the same problem, I post it 2 months ago on two italian forum without results, then I post here some weeks ago, you can read it on "LAN K.O. on Slack 10.2" on the page 3 of this forum. With the huge help of win32sux, after 17 attemps of installation I resolved my problem: at the boot, I disabled in the BIOS "PnP OS" and the Realtek worked.
 
Old 02-16-2006, 11:57 AM   #9
AndyGhost
LQ Newbie
 
Registered: Feb 2006
Location: Timisoara, Romania
Distribution: Slackware
Posts: 5

Original Poster
Rep: Reputation: 0
Many many thanks,
I've disabled the plug-n-play feature in BIOS and everything works fine.
Thanks again gusgoose
 
  


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
Realtek network card 8139 under FC4 realcr Linux - Hardware 9 08-18-2005 06:38 PM
realtek 8139 slow network splotch Slackware 2 09-29-2004 11:28 AM
Network with Debian Woody and Realtek 8139 grcbheax Linux - Networking 2 08-09-2004 10:10 AM
Network problems - Realtek 8139 The SIN Raven Slackware 14 08-14-2003 05:41 AM
Problems installing netscape 4.78 and realtek 8139 Hano Linux - Networking 3 09-04-2001 07:37 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

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