Connectivity > AU Wireless > How To Connect To AU_WiFi with Linux (Ubuntu)
How To Connect To AU_WiFi with Linux (Ubuntu)
- Make sure that the wpa_supplicant package is installed (yum
install wpasupplicant).
Note:
You will not need to edit the
wpa_supplicant.conf file.
- Edit the /etc/network/interfaces file to include the following (do not include the comments):
auto eth1
iface eth1 inet dhcp
wpa-driver wext
wpa-ssid AU_WiFi
wpa-ap-scan 1
wpa-proto RSN
wpa-pairwise CCMP
wpa-group CCMP
wpa-eap PEAP
wpa-key-mgmt WPA-EAP
wpa-identity username
wpa-password password |
# Wireless driver; wext is a generic driver
# Wireless network SSID - no quotes
# 1 = Broadcast of SSID; 2 = Hidden Broadcast of SSID
# RSN = WPA(2); WPA = WPA(1)
# CCMP = AES cipher; TKIP = TKIP cipher
# Same as above
# Type of EAP to use
# Authentication via enterprise auth. server
# Your AU User Name
# Your AU Password
|
- Once this is done, you will need to restart networking
(/etc/init.d/networking restart). You should see your wireless
interface obtain an DHCP address.
- Note: Sometimes at
boot time, you may have to manually restart networking to bring up the
wireless connection. To correct this problem:
- Create startup script: sudo gedit /etc/init.d/wireless-network.sh
- Add this line & save file: /etc/init.d/networking restart
- Change permission (executable): sudo chmod +x /etc/init.d/wireless-network.sh
- Create symbolic link: sudo ln -s /etc/init.d/wireless-network.sh /etc/rcS.d/S40wireless-network
[Note: You may have to choose a boot sequence other than S40.]
- Restart