Click to See Complete Forum and Search --> : 2 ethernet cards.


Gertrude
02-05-2003, 06:49 AM
I have a pc with a built in ethernet card in it, and a Linksys pci ethernet card.. I installed the tulip drivers for the Linksys card, and it works fine... but it does not seem to detect the built in ethernet.. Im using debian.. I detected both with Slackware..



FuR:~# ifconfig -a
eth0 Link encap:Ethernet HWaddr 00:04:5A:50:32:C5
inet addr:192.168.0.4 Bcast:192.168.0.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1357 errors:0 dropped:0 overruns:0 frame:0
TX packets:1183 errors:0 dropped:0 overruns:0 carrier:0
collisions:12 txqueuelen:100
RX bytes:134252 (131.1 KiB) TX bytes:191614 (187.1 KiB)
Interrupt:11 Base address:0xdc00

eth1 Link encap:Ethernet HWaddr 00:04:5A:50:32:C5
BROADCAST 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
collisions:0 txqueuelen:100
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Interrupt:11 Base address:0x2400

lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:3924 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)


the mac addresses of eth0 and eth1 are the same?


FuR:/etc/network# cat interfaces
# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)

# The loopback interface
auto lo
iface lo inet loopback

# The first network card - this entry was created during the Debian installation
# (network, broadcast and gateway are optional)
auto eth0
iface eth0 inet static
address 192.168.0.4
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.3



FuR:/etc/network# ifup eth1
Ignoring unknown interface eth1=eth1.

endoalpha
02-05-2003, 07:06 AM
What onboard ethernet do you have?

rioguia
02-05-2003, 05:06 PM
what is the output from
dmesg | grep eth

lsmod | grep Ethernet

lspci (only need to report NIC related info)

DMR
02-05-2003, 06:09 PM
Originally posted by Gertrude
the mac addresses of eth0 and eth1 are the same? Nope. That's obviously an error.

I noticed that ifconfig reports eth0 and eth1 as both using IRQ 11. If that' correct, you need to clear that up:

1. Turn off Plug-N-Play support in your BIOS. It's the number 1 culprit when it comes to resource conflicts in Linux.

2. If that doesn't work, move the PCI card to another slot. That should force an IRQ reassignment.