Ich hab schon eine Weile gegoogelt und vor allem hier im Archiv gesucht aber bin nicht fündig geworden.
Debian Etch netinst
Asus Board mit onboard Ethernet Adapter.
Wird problemlos erkannt beim installieren hat ja auch alles geklappt.
Danach hab ich ne zweite Netzwerkkarte (3com) reingesteckt.
Daraufhin wurde die neue 3com als eth0 erkannt und die onboard ward verschwunden.
Hab daraufhin den eth0 Eintrag in /etc/network/interfaces kopiert und mit eth1 statt eth0 versehen. Geht aber nicht.
Code: Alles auswählen
wood:~# ifup eth1
Internet Systems Consortium DHCP Client V3.0.4
Copyright 2004-2006 Internet Systems Consortium.
All rights reserved.
For info, please visit http://www.isc.org/sw/dhcp/
SIOCSIFADDR: No such device
eth1: ERROR while getting interface flags: No such device
eth1: ERROR while getting interface flags: No such device
Bind socket to interface: No such device
Failed to bring up eth1.
Code: Alles auswählen
wood:~# lspci | grep Ethernet
00:0a.0 Ethernet controller: 3Com Corporation 3c905C-TX/TX-M [Tornado] (rev 74)
00:0f.0 Ethernet controller: ADMtek NC100 Network Everywhere Fast Ethernet 10/100 (rev 11)
Code: Alles auswählen
wood:~# pcimodules
via-agp
shpchp
parport_pc
generic
via82cxxx
uhci-hcd
i2c-viapro
via686a
via82cxxx_audio
snd-via82xx
3c59x
tulip
tridentfb
cyblafb
Code: Alles auswählen
wood:~# cat /etc/network/interfaces
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp
# The secondary network interface
allow-hotplug eth1
iface eth1 inet dhcp
david