View previous topic :: View next topic |
Author |
Message |
TrojanShield n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
![](images/avatars/1505386091413a849ae4986.jpg)
Joined: 01 Sep 2004 Posts: 29
|
Posted: Fri Jul 01, 2005 4:53 pm Post subject: (Solved)Unable to setup D-Link DFE-530TXS |
|
|
This is my first linux system so be precise about things.
I have tried to setup my D-link DFE-530TXS ethernet card but was unsuccessfull. I have looked in my menuconfig and made sure that 'RealTek RTL-8139 PCI Fast Ethernet Adapter Support' was set as module which it was already. There is also a second realtek set to module 'RealTek RTL-8139 C+ PCI Fast Ethernet Adapter Support'. Now I didn't re-compiled my kernel since these two were already set to module.
I then went into my module.autoload and inserted '8139too'. It does load and it shows up in lsmod. Unfortunately it doesn't show my Ethernet card in dmesg | grep eth.
I should inform you that this is my second card that I wish to install in order to connect another computer to this one. My primary card, eth0, is noticed and works fine although I have errors in my dmesg | grep eth. The error is: 10.177.0.1 sent an invalid ICMP type 3, code 13 error to a broadcast: 69.60.239.255 on eth0. I don't think it makes a big difference since I can connect with no problems.
I added iface_eth1="dhcp" in my /etc/conf.d/net file. I don't know if this part is suppose to be in there, I am just making a guess here in hopes of making it work .
Now what am I missing here? Is the 8139too module not the right one for the D-Link?
BTW I am using the 2.6 kernel.
Last edited by TrojanShield on Sun Jul 03, 2005 4:51 pm; edited 1 time in total |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
ikaro Advocate
![Advocate Advocate](/images/ranks/rank-G-1-advocate.gif)
![](images/avatars/130830920042dd3d4464379.jpg)
Joined: 14 Jul 2003 Posts: 2527 Location: Denmark
|
Posted: Fri Jul 01, 2005 9:40 pm Post subject: |
|
|
the 8139 is ok for both cards, they are using the same chip. _________________ linux: #232767 |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
TrojanShield n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
![](images/avatars/1505386091413a849ae4986.jpg)
Joined: 01 Sep 2004 Posts: 29
|
Posted: Fri Jul 01, 2005 10:17 pm Post subject: |
|
|
The D-Link is my second card, my first card is the onboard NIC from my MB.
Now for some reason the D-Link isn't showing anywhere but the module is. Any one know why? |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
widan Veteran
![Veteran Veteran](/images/ranks/rank_rect_5_vet.gif)
![](images/avatars/142533236243680bda6f27b.jpg)
Joined: 07 Jun 2005 Posts: 1512 Location: Paris, France
|
Posted: Fri Jul 01, 2005 10:54 pm Post subject: |
|
|
Are you sure it's really a realtek chip ? A grep in the "network drivers" directory of the kernel sources seem to indicate your card is supported by the "sundance" driver ("Sundance Alta support" in menuconfig):
Code: | stephanie net # grep -Ri DFE-530 *
sundance.c: {"D-Link DFE-530TXS FAST Ethernet Adapter"}, |
|
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
ikaro Advocate
![Advocate Advocate](/images/ranks/rank-G-1-advocate.gif)
![](images/avatars/130830920042dd3d4464379.jpg)
Joined: 14 Jul 2003 Posts: 2527 Location: Denmark
|
Posted: Fri Jul 01, 2005 11:31 pm Post subject: |
|
|
my old dlink card had a realtek chip, but it was only TX, yours is TXS, so that might explain it. _________________ linux: #232767 |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
TrojanShield n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
![](images/avatars/1505386091413a849ae4986.jpg)
Joined: 01 Sep 2004 Posts: 29
|
Posted: Sat Jul 02, 2005 7:02 pm Post subject: |
|
|
Ok, I do have the sundance alta support set to module in menuconfig. I don't know what the module is called to put it in module.autoload.
And do I need that iface_eth1="dhcp" in /etc/conf.d/net? Or should it be different in order to find my second computer? |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
widan Veteran
![Veteran Veteran](/images/ranks/rank_rect_5_vet.gif)
![](images/avatars/142533236243680bda6f27b.jpg)
Joined: 07 Jun 2005 Posts: 1512 Location: Paris, France
|
Posted: Sat Jul 02, 2005 8:13 pm Post subject: |
|
|
I think the module is simply called "sundance". |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
TrojanShield n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
![](images/avatars/1505386091413a849ae4986.jpg)
Joined: 01 Sep 2004 Posts: 29
|
Posted: Sun Jul 03, 2005 4:50 pm Post subject: |
|
|
That worked just right. Thanks. The sundance module was the one.
Now if you don't mind me asking how did you find out it might be sundance? |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
widan Veteran
![Veteran Veteran](/images/ranks/rank_rect_5_vet.gif)
![](images/avatars/142533236243680bda6f27b.jpg)
Joined: 07 Jun 2005 Posts: 1512 Location: Paris, France
|
Posted: Tue Jul 05, 2005 4:14 pm Post subject: |
|
|
How did I find it was sundance ? Simply grepping the kernel's network drivers sources (/usr/src/linux/drivers/net/*) for the model of your card. They usually contain a list of the cards supported somewhere (and also the associated PCI vendor/product ids):
Code: | stephanie net # grep -Ri DFE-530 *
sundance.c: {"D-Link DFE-530TXS FAST Ethernet Adapter"}, |
|
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
|