I have a problem i can connect in wireless with wpa_suppli
cant on some network, but i need to connect on a network where the SSID contain a "é" and it won't work and I don't understand why, when i do : iwlist scan I get the ssid in this way :
Cell 01 - Address: 00:22:07:59:K5:C9
ESSID:"t\xC3\xA9test"
Protocol:IEEE 802.11bgn
Mode:Master
Frequency:2.412 GHz (Channel 1)
Encryption key:on
Bit Rates:144 Mb/s
Extra:rsn_ie=30140100000fac040100000fac040100000fac020c00
IE: IEEE 802.11i/WPA2 Version 1
Group Cipher : CCMP
Pairwise Ciphers (1) : CCMP
Authentication Suites (1) : PSK
So I try some thing like add a P before my SSID like :
network={
ssid=P"t\xC3\xA9st"
psk="My password"
}
also
network={
ssid=P"tést"
psk="My password"
}
network={
ssid="t\xC3\xA9st"
psk="My password"
}
network={
ssid="tést"
psk="My password"
}
but none of this work,
Whent I try to launch the wpa_supplicant here's the error I get :
root@MSDEV264:~# /sbin/wpa_supplicant -i p2p0 -D nl80211,wext -c /etc/wpa_supplicant/wpa_supplicant.conf
Successfully initialized wpa_supplicant
nl80211: Could not re-add multicast membership for vendor events: -2 (No such file or directory)
p2p0: Trying to associate with 00:22:07:59:f5:c9 (SSID='t\xC3\xA9st' freq=2412 MHz)
p2p0: Association request to the driver failed
then it continue in an infinite loop of :
p2p0: Trying to associate with 00:22:07:59:f5:c9 (SSID='t\xC3\xA9st' freq=2412 MHz)
p2p0: Association request to the driver failed
My locale are correctly set to UTF-8 .
If you have some ideas, Thank you in advance. I've add more precision about the error message.