Hi Maciej, On Wed, 2009-09-16 at 12:59 -0700, Maciej Rutecki wrote: > Script (wifi_wpa.sh): > #!/bin/sh > INTERFACE=wlan0 > WPA_FILE=/etc/wpa_supplicant/wpa_supplicant.conf > DRIVER=wext > ifconfig eth0 down > ifconfig $INTERFACE up > sleep 3 > killall wpa_supplicant &> /dev/null > wpa_supplicant -c $WPA_FILE -D $DRIVER -i $INTERFACE -B > dhclient $INTERFACE I think there is a potential race here. You start wpa_supplicant in background and then immediately request an IP. It is not guaranteed at this point that you are associated. Could you perform the last three steps of your script manually? Reinette -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html