also nach unzähligen versuchen hats gestern abend noch geklappt...musste es zwar manuell über die konsole einrichten aber es funktioniert....von daher kann ich bestätigen das Ubuntu 9.04 auf der PS3 mit WPA funktioniert.
hier das howto mit dem ichs hinbekommen hab, falls es jemand braucht:
How to get WPA working in Ubuntu 9.04
You will need wireless-tools to do this, however it should have been automatically installed.
First type:
Code:
iwconfig wlan0
This should return:
Code:
wlan0 IEEE 802.11bg Nickname:"gelic_wl"
Mode:Managed Access Point: Not-Associated
Link Signal level=92/100
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
If it does not, you have not got the drivers for the WLAN card. Try a reinstall
Now, clean your current configuration so it doesn't interfere with our new one:
Code:
sudo ifconfig wlan0 down
then
Code:
sudo ifconfig wlan0 up
Next, we can search for the AP:
Code:
sudo iwlist wlan0 scanning
This will return a list of the locally availible APs, something like this:
Code:
wlan0 Scan completed :
Cell 01 - Address: 00:14:BF:61:EB:F0
ESSID:"linksys"
Channel:6
Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
48 Mb/s; 54 Mb/s
Encryption key

n
Mode:Master
Signal level=100/100
IE: WPA Version 1
Group Cipher : TKIP
Pairwise Ciphers (2) : TKIP CCMP
Authentication Suites (1) : PSK
IE: IEEE 802.11i/WPA2 Version 1
Group Cipher : TKIP
Pairwise Ciphers (2) : TKIP CCMP
Authentication Suites (1) : PSK
Now, set the passphrase for the AP we're connecting to: (replace passphrase)
Code:
sudo iwconfig wlan0 key s

assphrase
And then set the SSID: (replace SSID)
Code:
sudo iwconfig wlan0 essid SSID
Now check to see if you can get an IP:
Code:
sudo dhclient wlan0
If it gives you an IP address, check to see if you have an internet connection:
Code:
ping
www.google.com
If it returns this:
Code:
PING
www.l.google.com (209.85.229.99) 56(84) bytes of data.
64 bytes from ww-in-f99.google.com (209.85.229.99): icmp_seq=1 ttl=239 time=56.6 ms
64 bytes from ww-in-f99.google.com (209.85.229.99): icmp_seq=2 ttl=239 time=28.5 ms
You're in the money! (Press Ctrl+C to cancel the ping)
Anmerkung: Beim ersten versuch von "sudo dhclient wlan0
" bekam ich keine dhcp antwort. nachdem ich den network client über den grafischen desktop einmal aus und wieder eingeschaltet hatte, hats dann funktioniert.
Gruß
HangmansJoke