个人工具

“UbuntuHelp:DavicomEthernet”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
(新页面: {{From|https://help.ubuntu.com/community/DavicomEthernet}} {{Languages|UbuntuHelp:DavicomEthernet}} This is quite short, but I spent many hours trying to figure out how to fix my router. ...)
 
第1行: 第1行:
 
{{From|https://help.ubuntu.com/community/DavicomEthernet}}
 
{{From|https://help.ubuntu.com/community/DavicomEthernet}}
 
{{Languages|UbuntuHelp:DavicomEthernet}}
 
{{Languages|UbuntuHelp:DavicomEthernet}}
 +
== Davicom Ethernet ==
 
This is quite short, but I spent many hours trying to figure out how to fix my router.  
 
This is quite short, but I spent many hours trying to figure out how to fix my router.  
 
Basically, a Davicom-based ethernet card would appear in System->Administration->Networking
 
Basically, a Davicom-based ethernet card would appear in System->Administration->Networking
第9行: 第10行:
 
my lspci :  
 
my lspci :  
  
 +
<pre><nowiki>
 
0000:00:0b.0 Ethernet controller: Davicom Semiconductor, Inc. 21x4x DEC-Tulip compatible 10/100 Ethernet (rev 40)
 
0000:00:0b.0 Ethernet controller: Davicom Semiconductor, Inc. 21x4x DEC-Tulip compatible 10/100 Ethernet (rev 40)
 +
</nowiki></pre>
  
As you can see, it is supposedly tulip-compatible. It isn't _totally_ compatible though.
+
As you can see, it is supposedly tulip-compatible. It isn't _totally_ compatible though. It's compatible enough to be detected and picked up, but not to work. What I had to do was:
It's compatible enough to be detected and picked up, but not to work. What I had to do
+
was:
+
  
 +
<pre><nowiki>
 
sudo rmmod tulip
 
sudo rmmod tulip
 
 
sudo rmmod dmfe
 
sudo rmmod dmfe
 
 
sudo modprobe dmfe
 
sudo modprobe dmfe
 +
</nowiki></pre>
  
  
第25行: 第26行:
  
 
------
 
------
[[category:CategoryDocumentation]] [[category:CategoryCleanup]]
+
[[category:CategoryDocumentation]]  
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2007年11月22日 (四) 12:18的版本

Davicom Ethernet

This is quite short, but I spent many hours trying to figure out how to fix my router. Basically, a Davicom-based ethernet card would appear in System->Administration->Networking but would _never_ get an IP address from the router with dhcp. The cabling was OK, the green lights turned on on the router and on the ethernet card, but still no IP.

After lots of frustration, I figured the problem out. To understand it, here's my lspci :

0000:00:0b.0 Ethernet controller: Davicom Semiconductor, Inc. 21x4x DEC-Tulip compatible 10/100 Ethernet (rev 40)

As you can see, it is supposedly tulip-compatible. It isn't _totally_ compatible though. It's compatible enough to be detected and picked up, but not to work. What I had to do was:

sudo rmmod tulip
sudo rmmod dmfe
sudo modprobe dmfe


The dmfe driver is more compatible than the tulip one, and it worked immediately.