Realtek 8139 ethernet card defect (acpi related)
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
linux (Ubuntu) |
Won't Fix
|
Medium
|
Unassigned |
Bug Description
Pentium 5
Ubuntu 5.1 32bit PC
Ethernet Card: Realtek Semiconductor Co., Ltd. RTL-8139
After a fresh installation of ubuntu the the ethernet stack is not working. (Same for live CD).
The ethernet card works under other OSs on the same HW (debian, windows XP).
-------- PCI info --------
root@ubuntu:~# lspci | grep -i eth
0000:00:06.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/
-------- physical layer --------
root@ubuntu:~# mii-tool eth0
eth0: negotiated 100baseTx-FD flow-control, link ok
-------- software driver --------
root@ubuntu:~# ifconfig eth0
eth0 Link encap:Ethernet HWaddr 00:E0:7D:74:1C:17
inet addr:10.1.1.2 Bcast:10.1.1.255 Mask:255.255.255.0
inet6 addr: fe80::2e0:
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
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
-------- driver loaded --------
root@ubuntu:~# lsmod | grep mii
mii 5248 2 8139too,8139cp
-------- find router --------
root@ubuntu:~# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
10.1.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
0.0.0.0 10.1.1.1 0.0.0.0 UG 0 0 0 eth0
-------- ping router --------
root@ubuntu:~# ping 10.1.1.1
PING 10.1.1.1 (10.1.1.1) 56(84) bytes of data.
From 10.1.1.2 icmp_seq=2 Destination Host Unreachable
From 10.1.1.2 icmp_seq=3 Destination Host Unreachable
From 10.1.1.2 icmp_seq=4 Destination Host Unreachable
From 10.1.1.2 icmp_seq=6 Destination Host Unreachable
From 10.1.1.2 icmp_seq=7 Destination Host Unreachable
From 10.1.1.2 icmp_seq=8 Destination Host Unreachable
--- 10.1.1.1 ping statistics ---
9 packets transmitted, 0 received, +6 errors, 100% packet loss, time 8000ms
, pipe 3
-------- ping 10.1.1.2 --------
works
-------- ifconfig after ping --------
root@ubuntu:~# ifconfig
eth0 Link encap:Ethernet HWaddr 00:E0:7D:74:1C:17
inet addr:10.1.1.2 Bcast:10.1.1.255 Mask:255.255.255.0
inet6 addr: fe80::2e0:
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
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:8547 errors:0 dropped:0 overruns:0 frame:0
TX packets:8547 errors:0 dropped:0 overruns:0 carrier:0
RX bytes:546915 (534.0 KiB) TX bytes:546915 (534.0 KiB)
-------- /etc/network/
root@ubuntu:~# cat /etc/network/
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# This is a list of hotpluggable network interfaces.
# They will be activated automatically by the hotplug subsystem.
mapping hotplug
script grep
map eth0
# The primary network interface
iface eth0 inet static
address 10.1.1.2
netmask 255.255.255.0
network 10.1.1.0
broadcast 10.1.1.255
gateway 10.1.1.1
# dns-* options are implemented by the resolvconf package, if installed
booting with kernel option pci=noacpi solves the problem
description: | updated |
Changed in gnome-network: | |
status: | Incomplete → New |
First of all, are you sure that 10.1.1.1 isn't firewalling ping packets (is it running a firewall at all?)
Secondly does doing
ping -I eth0 10.1.1.1
yield a different result?
Is there anything interesting in
dmesg | tail