I'm having difficulty setting up my RPi to use wireless. I've gone to sudo nano /etc/network/interfaces and entered:
auto lo
iface lo inet loopback
iface eth0 inet static
address 192.168.0.82
netmask 255.255.255.0
broadcast 192.168.0.255
gateway 192.168.1.254
auto wlan0
allow-hotplug wlan0
iface eth0 inet static
address 192.168.0.82
netmask 255.255.255.0
broadcast 192.168.0.255
gateway 192.168.1.254
wpa-ssid "myssid"
wpa-psk "mypassword"
The setup works fine for Ethernet, but not wireless. My router's security mode is "WPA2 Personal". Encryption is "TKIP or AES".
Is my configuration string incorrect &/or how do I troubleshoot? I'm suspecting I need to change the last two lines of the configuration string, but I'm not sure to what.
Thanks in advance,
Andrew