Difference between revisions of "WebDT 366 WPA2"

From LinuxMCE
Jump to: navigation, search
 
Line 26: Line 26:
 
Boot and install the Pad Orbiter software.
 
Boot and install the Pad Orbiter software.
 
<br>
 
<br>
to be cont when I have time ......
+
When you get to the wireless setup just hit cancel and open up a terminal: CTRL + T then C
 +
<br>
 +
<pre>
 +
lspci
 +
</pre>
 +
Should show that the RT2500 module is loaded.
 +
<br>
 +
Then we have to edit the network interfaces file to allow for WPA2 and SSID details. My preferred editor is nano but choose your own.
 +
<br>
 +
<pre>
 +
nano /etc/network/interfaces
 +
</pre>
 +
Then edit the network interfaces file, delete the eth0 lines and change to show:
 +
<pre>
 +
allow-hotplug wlan0
 +
iface wlan0 inet dhcp
 +
wpa-driver wext
 +
wpa-ssid <your_essid>
 +
wpa-ap-scan 1
 +
wpa-proto RSN
 +
wpa-pairwise CCMP
 +
wpa-group CCMP
 +
wpa-key-mgmt WPA-PSK
 +
wpa-psk <your_hex_key>
 +
</pre>
 +
wpa-ap-scan: 1 = broadcast of essid, 2 = hidden essid
 +
<br>
 +
wpa-proto: RSN = WPA2, WPA = WPA
 +
<br>
 +
wpa-pairwise and wpa-group: CCMP = AES, TKIP = TKIP
 +
<br>
 +
wpa-key-mgmt: WPA-PSK = Authentication via pre-shared key
 +
<br>
 +
wpa-psk: <see below for hex key generation>
 +
<br>
 +
In a terminal type
 +
<pre>
 +
wpa_passphrase <your_essid> <password>
 +
</pre>
 +
and you should get an output after the psk= line and that is what you need to input.
 +
<br>
 +
Save and exit and then start up wlan0
 +
<pre>
 +
ifup wlan0
 +
</pre>
 +
After that the Pad Orbiter should continue loading.

Latest revision as of 22:48, 3 April 2011

Version Status Date Updated Updated By
710 Unknown N/A N/A
810 Unknown N/A N/A
1004 Unknown N/A N/A
1204 Unknown N/A N/A
1404 Unknown N/A N/A
Usage Information
Edup.JPG

Wpa2webdt.JPG


Info

How to get WPA2 wireless on the WebDT 366
NOTE: At this stage suspend does not work as the driver doesn't support restart from suspend so won't connect to the core. A patch to the kernel should be possible but is both beyond my capabilities and my WebDT's stay on all the time.

Hardware

You will need a PCMCIA wireless card
I purchased an EDUP wireless PCMCIA card which runs the Ralink RT2500 driver which is supported out of the box with the Pad Orbiter software
There are other branded RT2500 cards out there I believe but this one is pretty cheap on ebay.

Installation

Remove the Cisco card and put the EDUP card in.
Boot and install the Pad Orbiter software.
When you get to the wireless setup just hit cancel and open up a terminal: CTRL + T then C

lspci

Should show that the RT2500 module is loaded.
Then we have to edit the network interfaces file to allow for WPA2 and SSID details. My preferred editor is nano but choose your own.

nano /etc/network/interfaces

Then edit the network interfaces file, delete the eth0 lines and change to show:

allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-driver wext
wpa-ssid <your_essid>
wpa-ap-scan 1
wpa-proto RSN
wpa-pairwise CCMP
wpa-group CCMP
wpa-key-mgmt WPA-PSK
wpa-psk <your_hex_key>

wpa-ap-scan: 1 = broadcast of essid, 2 = hidden essid
wpa-proto: RSN = WPA2, WPA = WPA
wpa-pairwise and wpa-group: CCMP = AES, TKIP = TKIP
wpa-key-mgmt: WPA-PSK = Authentication via pre-shared key
wpa-psk: <see below for hex key generation>
In a terminal type

wpa_passphrase <your_essid> <password>

and you should get an output after the psk= line and that is what you need to input.
Save and exit and then start up wlan0

ifup wlan0

After that the Pad Orbiter should continue loading.