Editing WLAN Access Point with PS3 Jupiter
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
=Introduction= | =Introduction= | ||
Line 9: | Line 8: | ||
* 802.11bg support | * 802.11bg support | ||
* Wireless Extension interface | * Wireless Extension interface | ||
* | * WEP, WPA1 and WPA2 support (work in progress) | ||
=PS3 Jupiter Driver= | =PS3 Jupiter Driver= | ||
Line 23: | Line 22: | ||
git clone git://gitorious.ps3dev.net/ps3linux/ps3jupiter.git | git clone git://gitorious.ps3dev.net/ps3linux/ps3jupiter.git | ||
cd ps3jupiter | cd ps3jupiter | ||
make KSRC_DIR=/home/glevand/kernel/linux-3.5. | make KSRC_DIR=/home/glevand/kernel/linux-3.5.3 ARCH=powerpc CROSS_COMPILE=powerpc64-linux- | ||
</pre> | </pre> | ||
Line 64: | Line 63: | ||
==No Security== | ==No Security== | ||
==WEP== | |||
== | |||
==WPA1 | ==WPA1== | ||
<pre> | <pre> | ||
iwconfig wlan1 channel 6 | iwconfig wlan1 channel 6 | ||
iwconfig wlan1 essid wlan_rockz | iwconfig wlan1 essid wlan_rockz | ||
Line 121: | Line 79: | ||
</pre> | </pre> | ||
== | ==WPA2== | ||
<pre> | <pre> | ||
iwconfig wlan1 channel 6 | iwconfig wlan1 channel 6 | ||
iwconfig wlan1 essid wlan_rockz | iwconfig wlan1 essid wlan_rockz | ||
iwpriv wlan1 set_wpa_mode | iwpriv wlan1 set_wpa_mode 2 | ||
iwpriv wlan1 set_wpa_group 3 | iwpriv wlan1 set_wpa_group 3 | ||
iwpriv wlan1 set_wpa_pairwise 3 | iwpriv wlan1 set_wpa_pairwise 3 | ||
Line 136: | Line 92: | ||
ifconfig wlan1 up | ifconfig wlan1 up | ||
</pre> | </pre> | ||
==Test== | ==Test== | ||
* Tested on my PS3 Slim with Linux kernel 3.5. | * Tested on my PS3 Slim with Linux kernel 3.5.3 and Debian | ||
* Tested | * Tested with no security | ||
=Testing AP Mode with libusb= | =Testing AP Mode with libusb= | ||
Line 179: | Line 108: | ||
=TODO List= | =TODO List= | ||
* | * Implement WEP, WPA1 and WPA2 security | ||
* Find out how to get connected station MAC address and how to enable MAC access control | * Find out how to get connected station MAC address and how to enable MAC access control | ||
=Future Work= | =Future Work= | ||
Line 193: | Line 120: | ||
* Linux kernel 3.2 and libsusb problem: http://marc.info/?l=linux-usb&m=132440828606642&w=2 | * Linux kernel 3.2 and libsusb problem: http://marc.info/?l=linux-usb&m=132440828606642&w=2 | ||