[CentOS] Wireless DELL M90 with CentOS 5.1

Wed Jan 23 13:49:21 UTC 2008
MOKRANI Rachid <Rachid.MOKRANI at ifp.fr>

Hi,

I have a laptop DELL M90 with an Intel PRO/Wireless 3945ABG card. 

After installed new rpm drivers (see below), my card is recognized and I can see my wireless acces point with (iwlist - iwconfig) but it's impossible to connect to it. It seem that I can't obtain an IP address. In the log message I have "dhclient : DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval )


The same laptop installed in Windows XP connect imediatly to my wireless acces point. Other Windows XP laptops can connect immediatly so. 

My laptop is installed with CentOS 5.1 - kernel 2.6.18-53.el5
 

Any help ?
Best Regards.


I have installed the following rpm :

ieee80211-kmdl-2.6.18-53.el5-1.2.18-21.el5.x86_64.rpm
ipw3945-ucode-1.14.2-4.at.noarch.rpm
ipw3945d-1.7.22-4.at.x86_64.rpm
ipw3945-kmdl-2.6.18-53.el5-1.2.0-18.4.el5.x86_64.rpm
ipw3945-1.2.0-18.4.el5.x86_64.rpm


I'm using the following script in the booting process for recognizd the card.

########################################################################################
#! /bin/sh
#
# Intel Pro/wireless 3945BG:   ipw3945d deamon
#
#chkconfig: 35 20 86
#description: This is a daemon for automatically switching \
#            ipw3945d on to get access to any AP.
#

# Source function library.
. /etc/rc.d/init.d/functions

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DESC="Intel PRO/Wireless 3945BG"
NAME=ipw3945d
SCRIPTNAME=/etc/init.d/ipw3945

# Hopefully exit if the package has been removed.
test -x $SCRIPTNAME || exit 0

# Loads the driver and starts the regulatory daemon
load() {
       /sbin/modprobe --ignore-install ipw3945
       /sbin/ipw3945d --timeout=-1 --quiet
}

# Unloads the driver (killing the regulatory daemon)
unload() {
       /sbin/ipw3945d --kill 2>/dev/null
       /sbin/modprobe -r --ignore-remove ipw3945
}

case "$1" in
 start|restart)
       echo -n "Starting $DESC: $NAME"
       unload
       sleep 3
       load
       sleep 3
       echo "."
       ;;
 stop)
       echo -n "Stopping $DESC: $NAME"
       unload
       echo "."
       ;;
 *)
       echo "Usage: $0 {start|stop|restart}"
       exit 1
esac

exit 0


__________________________

Ce message (et toutes ses pièces jointes éventuelles) est confidentiel et établi à l'intention exclusive de ses destinataires. Toute utilisation de ce message non conforme à sa destination, toute diffusion ou toute publication, totale ou partielle, est interdite, sauf autorisation expresse. L'IFP décline toute responsabilité au titre de ce message.

This message and any attachments (the message) are confidential and intended solely for the addressees. Any unauthorised use or dissemination is prohibited. IFP should not be liable for this message.

Visitez notre site Web / Visit our web site : http://www.ifp.fr
__________________________
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.centos.org/pipermail/centos/attachments/20080123/3d72ec7b/attachment-0003.html>