I have an Intel Centrino chip and instead of the PCMCIA wireless card I was
previously using, I decided to give the IPW2200 driver a spin.
Installed ieee802111 and then ipw2200. I have hotplug firmware support in
the kernel (2.6.12.3).
I have the following line in my /etc/modules.conf :
alias eth1 ipw2200
In /etc/dhclient.conf :
interface "eth1" {
request subnet-mask, broadcast-address, time-offset, routers,
domain-name, domain-name-servers, host-name;
require subnet-mask, domain-name-servers;
script "/etc/dhclient-script";
}
lsmod :
ipw2200 185096 0
firmware_class 11392 1 ipw2200
ieee80211 50692 1 ipw2200
ieee80211_crypt 7624 2 ipw2200,ieee80211
An attempt to bring up eth1 fails :
#ifup eth1
Continuing at if-pre-up
Internet Software Consortium DHCP Client 2.0pl5
Copyright 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium.
All rights reserved.
Please contribute if you find this software useful.
For info, please visit
http://www.isc.org/dhcp-contrib.html
eth1: ERROR while getting interface flags: No such device
Listening on LPF/eth0/<obfuscated hardware address for my eth0 - Intel
Pro+100 card>
<Above line repeated>
Bind socket to interface: No such device
exiting.
Failed to bring up eth1.
dmesg | grep "ipw" :
# dmesg | grep "ipw"
ipw2200: Intel(R) PRO/Wireless 2200/2915 Network Driver, 1.0.6
ipw2200: Copyright(c) 2003-2004 Intel Corporation
What am I missing ?
Btw., what is the difference between ipw2200 and ipw2100 drivers ?
Thanks.