Ik heb een netgear router daarbij zat een usb wireless stick de WG111v2. Dit zit via het verleng kabeltje in de usb poort. Ubuntu net opgestart en network-manager-gnome ziet 2 netwerken. So far so good. Nu wil ik verbinding maken met mijn draadloos netwerk met wpa sleutel.
Nu krijg ik de volgende foutmelding:
Error connecting to wireless network
The requested wireless network requires security capabilities unsupported by your hardware.
Ik vond deze site:
http://ubuntuforums.org/s...&highlight=netgear&page=2
Daarvan alles geprobeerd maar niks werkt
O.a:
WPA is supported in Feisty using the native module, you just need to configure it manually, instead of using NetworkManager.
The way I did it was this:
EDIT: You shouldn't need to remove NetworkManager for this to work. I didn't, and it works perfectly. I just had to remove the applet from my startup.
1. Generate WPA key
Code:
wpa_passphrase <SSID> <ASCII-Key>
Where <SSID> is the SSID of your router/access point and <ASCII-Key> is the WPA key you would normally enter.
2. Copy the output from that into /etc/wpa_supplicant.conf. You should have something like this: (If the proto and key_mgmt lines aren't there add them exactly as shown)
Code:
network={
ssid="SSID"
proto=WPA
key_mgmt=WPA-PSK
psk=945609a382413e64d57daef00eb5fab3ae228716e1e440981c004bc61dccc98c
}
3. Edit your /etc/network/interfaces file to include the following:
Code:
auto wlan0
inet wlan0 inet dhcp
wpa-driver wext
wpa-conf /etc/wpa_supplicant.conf
4. Restart networking:
Code:
sudo /etc/init.d/networking restart
5. Enjoy your wireless!
Maar als ik dan stap 4 doe zegt ie dat ie mn /etc/network/interfaces niet kan lezen.
Ik krijg ook deze melding:
ndiswrapper -l
net111v2 : driver installed
device (0846:6A00) present (alternate driver: rtl8187)
Dus geprobeerd met de realtek driver ook dat helpt niet.
Iemand enig idee?
Nu krijg ik de volgende foutmelding:
Error connecting to wireless network
The requested wireless network requires security capabilities unsupported by your hardware.
Ik vond deze site:
http://ubuntuforums.org/s...&highlight=netgear&page=2
Daarvan alles geprobeerd maar niks werkt
O.a:
WPA is supported in Feisty using the native module, you just need to configure it manually, instead of using NetworkManager.
The way I did it was this:
EDIT: You shouldn't need to remove NetworkManager for this to work. I didn't, and it works perfectly. I just had to remove the applet from my startup.
1. Generate WPA key
Code:
wpa_passphrase <SSID> <ASCII-Key>
Where <SSID> is the SSID of your router/access point and <ASCII-Key> is the WPA key you would normally enter.
2. Copy the output from that into /etc/wpa_supplicant.conf. You should have something like this: (If the proto and key_mgmt lines aren't there add them exactly as shown)
Code:
network={
ssid="SSID"
proto=WPA
key_mgmt=WPA-PSK
psk=945609a382413e64d57daef00eb5fab3ae228716e1e440981c004bc61dccc98c
}
3. Edit your /etc/network/interfaces file to include the following:
Code:
auto wlan0
inet wlan0 inet dhcp
wpa-driver wext
wpa-conf /etc/wpa_supplicant.conf
4. Restart networking:
Code:
sudo /etc/init.d/networking restart
5. Enjoy your wireless!
Maar als ik dan stap 4 doe zegt ie dat ie mn /etc/network/interfaces niet kan lezen.
Ik krijg ook deze melding:
ndiswrapper -l
net111v2 : driver installed
device (0846:6A00) present (alternate driver: rtl8187)
Dus geprobeerd met de realtek driver ook dat helpt niet.
Iemand enig idee?