个人工具

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

来自Ubuntu中文

跳转至: 导航, 搜索
 
(未显示同一用户的1个中间版本)
第6行: 第6行:
 
but would _never_ get an IP address from the router with dhcp. The cabling was OK,
 
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.
 
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
 
After lots of frustration, I figured the problem out. To understand it, here's
 
my lspci :  
 
my lspci :  
 
 
<pre><nowiki>
 
<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>
 
</nowiki></pre>
 
 
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:
 
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:
 
 
<pre><nowiki>
 
<pre><nowiki>
 
sudo rmmod tulip
 
sudo rmmod tulip
第21行: 第17行:
 
sudo modprobe dmfe
 
sudo modprobe dmfe
 
</nowiki></pre>
 
</nowiki></pre>
 
 
 
The dmfe driver is more compatible than the tulip one, and it worked immediately.
 
The dmfe driver is more compatible than the tulip one, and it worked immediately.
 
 
------
 
------
[[category:CategoryDocumentation]]  
+
[[category:CategoryHardware]] [[category:CategoryNetworking]]
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2008年12月16日 (二) 18:13的最新版本

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.