LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 12-19-2002, 10:31 PM   #1
carlosrm
LQ Newbie
 
Registered: Dec 2002
Location: Pomona, Ca
Distribution: Mandrake
Posts: 5

Rep: Reputation: 0
netdev watchdog mdk 9.0


I installed new mb (ms-6524) ever since unable to get to my gateway or any other machine on my network. I tried onboard 8139 with no luck.I reinsatlled mdk, tried putting my linksys nic100 in 3 different slots and still no success. I'm dual boot and everything ok in win. Here is what shows in log:
/etc/hotplug/net.agent: invoke ifup eth0
network: Bringing up interface eth0: succeeded
kernel: NETDEV WATCHDOG: eth0: transmit timed out
kernel: eth0: Transmit timed out, status ec670015, CSR12 45e1d0cc, resetting...
How can I find out what this message is telling me?
Thanks,
Carlos
 
Old 12-19-2002, 11:17 PM   #2
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
with the linksys nic in the system try putting this in /etc/modules.conf


Code:
alias eth0 tulip
options tulip options=0
run these commands

Code:
modprobe tulip

depmod -ae

ifconfig eth0
post the output of ifconfig eth0

Last edited by DavidPhillips; 12-19-2002 at 11:20 PM.
 
Old 12-19-2002, 11:56 PM   #3
carlosrm
LQ Newbie
 
Registered: Dec 2002
Location: Pomona, Ca
Distribution: Mandrake
Posts: 5

Original Poster
Rep: Reputation: 0
Here are the results:
added code to /etc/modules.config

# modprobe tulip
# depmod -ae
# ifconfig eth0
eth0 Link encap:Ethernet HWaddr editted out
inet addr:192.168.1.105 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:489 overruns:0 frame:0
TX packets:0 errors:288 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Interrupt:19 Base address:0xe800

rebooted

# ping 192.168.1.1
PING 192.168.1.1 (192.168.1.1) from 192.168.1.105 : 56(84) bytes of data.
From 192.168.1.105 icmp_seq=1 Destination Host Unreachable
From 192.168.1.105 icmp_seq=2 Destination Host Unreachable
From 192.168.1.105 icmp_seq=3 Destination Host Unreachable
--- 192.168.1.1 ping statistics ---
6 packets transmitted, 0 received, +3 errors, 100% loss, time 5028ms
, pipe 3

# modprobe tulip
# depmod -ae
ifconfig # ifconfig eth0
eth0 Link encap:Ethernet HWaddr editted out inet addr:192.168.1.105 Bcast:192.168.1.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:24 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Interrupt:19 Base address:0xe800

same reults in messages
Thanks,
Carlos

Last edited by carlosrm; 12-19-2002 at 11:59 PM.
 
Old 12-22-2002, 04:08 PM   #4
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
hey carlos, I got your email. We did not forget about you.


things are out of place here, lets see what we have

ok the commands

Code:
modprobe tulip

depmod -ae

ifconfig eth0
we must assume the the combination of /etc/modules.conf and running the commands have basically installed your network card.

Now where you rebooted, then ran ping, we see that your ip address is assigned. was this assigned manually by you in a script, by dhcp, or from the command line?

we will want to look at the output of this

Code:
route -n
to see if this is a routing problem

also you might want to check the netmask and ips on your network, make sure you are in the same network

now for the errors, It is starting to look like a kernel problem

here's the deal..

You have tried two different types of nics with the same result, ( I assume the resulting error messages are the same, let us know if they're different) .

so I think it's not the nic


Do you have another kernel you can boot? if not please try to download a different kernel version in the form of a mandrake rpm and try it.
 
Old 12-23-2002, 09:36 AM   #5
carlosrm
LQ Newbie
 
Registered: Dec 2002
Location: Pomona, Ca
Distribution: Mandrake
Posts: 5

Original Poster
Rep: Reputation: 0
David,
Thanks for the response. IP address was set during setup. Here are results of route and other commands. I don't have another kernel to use. Any idea what the status in my 1st msg is saying?
# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 0.0.0.0 255.255.255.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 192.168.1.1 0.0.0.0 UG 0 0 0 eth0

# cat /etc/sysconfig/network
NETWORKING=yes
FORWARD_IPV4=false
HOSTNAME=Micron
DOMAINNAME=localdomain
GATEWAY=192.168.1.1

# cat /etc/resolv.conf
# search localdomain
search localdomain
nameserver 4.2.2.1
nameserver 4.2.2.2
# domain 192.168.1.1
# ppp temp entry

Thanks again have a nice holiday,
Carlos
 
Old 12-23-2002, 10:22 AM   #6
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
I think the message is a kernel error


I know that card should work
 
  


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
NETDEV WATCHDOG: eth0: transmit timed out octain Linux - Networking 7 12-30-2008 06:02 PM
NETDEV WATCHDOG: eth0:transmit timed out ricardof Linux - Networking 4 08-09-2008 06:24 PM
NETDEV WATCHDOG: Transmit timed out davcefai Debian 0 07-28-2005 12:15 PM
I *WANT* NETDEV WATCHDOG to tell me eth2 is timing out, but it won't... rexmundi Linux - Networking 2 10-10-2003 04:49 PM
netdev watchdog emanners Linux - Networking 2 08-17-2001 02:16 PM

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

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