- If you clicked on your network in the previous step, skip this one, otherwise enter the name of your network in Network Name. The Network Name is better known as the SSID.
- The value of Wireless Security will depend on how the wireless network was secured but WPA Personal is usually what's used unless there are some older wireless devices on the network.
- All that's left is to enter the wireless network's passphrase or password (it might be easier if you click the Show password checkbox first) and finally click Connect.
- Once the connection succeeds, you might be prompted to enter or create a password for the default keyring.
- If you have saved passwords before, enter the master password. It is separate from your account's password and can be different.
- If you don't remember the master password, you will need to delete your default keyring if you want the password to be remembered.
- If you asked to choose a password, this will protect all the passwords remembered by the built-in password manager with a single, master password. If you ever let other people borrow your computer without using another account, you should enter a password here, otherwise you can just leave it empty and click OK.
Note: Follow these instructions if you are unable to use the built-in Network Manager-based UI in the neighbourhood. I have found this to be the case when attempting to connect to a WPA-protected access point. Sources of inspiration:
- http://www.alvarezp.org/blog/2007/12/18/howto-diagnose-connectivity-to-your-wireless-network-using-linux/
- http://wiki.laptop.org/go/Manual_Wireless_Association
- http://olpcnews.com/forum/index.php?topic=2217.0
- http://linux.die.net/man/8/wpa_supplicant
- Start the Terminal activity.
- Create a text file (using, say, nano) called radio.sh with the following contents:
- #!/bin/sh
- # make sure the fancy stuff isn't enabled
- service NetworkManager stop
- service network stop
- # make sure the manual stuff isn't in the way
- pkill dhclient
- pkill wpa_supplicant
- if [ "$1" ]; then
- echo "Connecting to $1..."
- MY_PATH="`dirname \"$0\"`"
- wpa_supplicant -B -i eth0 -c $MY_PATH/$1
- dhclient eth0
- else
- echo "Turning off radio..."
- fi
- Before we connect to a network for the first time, we need to create a configuration file. We do this by running the following command from within your home directory, replacing both instances of SSID with the SSID of the network you are connecting to (i.e. Gator):
- wpa_passphrase SSID > SSID
- # reading passphrase from stdin
- I am one with the universe
- network={
- ssid="Gator"
- #psk="I am one with the universe"
- psk=a14b11ec75a1a374b28fc4ee0e1f2e1571ba28fb4acc672e92cb7b1b18d80d80
- }