[Bug 86039] knetworkmanager can't connect to dlink di-524 using wpa-psk
Baczek
imbaczek at gmail.com
Sun Feb 18 14:41:14 UTC 2007
Public bug reported:
Binary package hint: knetworkmanager
This MAY be a dupe of #46136, I don't know.
The point is that a hand-written script using such config:
$ cat wifi_bacznet.cfg
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
eapol_version=1
fast_reauth=1
network={
ssid="bacznet"
#psk="..."
psk=...
}
and a script like this:
#!/bin/sh
iwconfig eth1 essid bacznet
wpa_cli terminate
wpa_supplicant -c wifi_bacznet.cfg -i eth1 -D wext -B
echo -n 'Waiting for connection...'
sleep 5
I=0
while [ "$I" -lt 20 ]; do
sleep 2
echo -n '.'
FINISHED=`wpa_cli status | grep 'wpa_state=COMPLETED'`
if [ -n "$FINISHED" ]; then break; fi
I=$(($I+1))
done
if [ -n "$FINISHED" ]; then
echo "connected."
dhclient3 eth1
exit 0
else
echo "Connection failed!" >&2
wpa_cli terminate
exit 1
fi
connects without problems.
I'm running up-to-date feisty and have a DI-524 and a HP nx7400 (Intel
3495abg).
ii knetworkmanager 0.1-0ubuntu8
ii network-manager 0.6.4-6ubuntu2
ii wpasupplicant 0.5.5-4
** Affects: knetworkmanager (Ubuntu)
Importance: Undecided
Status: Unconfirmed
--
knetworkmanager can't connect to dlink di-524 using wpa-psk
https://launchpad.net/bugs/86039
More information about the kubuntu-bugs
mailing list