UIC-Wireless with Linux

UIC-Wireless does not exist! You should be connecting to UIC-WiFi, this page lists the differences 

http://acm.cs.uic.edu/uicwifi-linux

 

This is a quick guide to connecting to the UIC-Wireless network using Linux with either network manager or wpa_supplicant.

UIC-Wireless with network manager

This guide should work with any Linux distribution that uses the network manager applet. This guide was made using the GNOME Desktop environment that comes standard with Ubuntu. Basic appearance and color scheme may differ depending on distribution and settings. This guide assumes that you have the correct wireless drivers installed and that you are connecting on the UIC campus.

Step 1:

Click the network manager applet icon and select "UIC-Wireless" from the list of available networks.

Step 2:

A window should now open up similar to the one below asking for the security information. Set the security type to "Dynamic WEP (802.1x)". You should then be able to enter the rest of the information as seen below.

Step 3:

The location of the CA certificate, by default, should be in "/etc/ssl/certs". The certs should be installed by default on Ubuntu. If they are missing from your system then you will have to do a web search on how to install them on your Linux distribution as the package manager and names can change between different Linux distributions.

Step 4:

You should now be able to connect to UIC-Wireless, if you have any problems try going through the guide again to make sure you didn't miss something, and check that you entered the correct user name and password. Keep in mind that the UIC ACCC does not officially support Linux in any way so they will not be able to help in the event of a problem, unless you believe that there is a problem with one of their access points itself. Hopefully this guide served you well and you are now able to take advantage of Linux at UIC using the UIC-Wireless network. Read on for information of how to configure wpa_supplicant to use the UIC-Wireless network.

UIC-Wireless with wpa_supplicant

wpa_supplicant is a Linux utility for connecting to wireless networks through the command line. This section of the guide assumes you have a good amount of familiarity using the command line in Linux and will just list the configuration information that one needs to connect to the UIC-Wireless network.

The configuration info

Insert this text into your wpa_supplicant config file or in a separate file of your choice. Be sure to add your account information in the corresponding fields.

network={
   ssid="UIC-Wireless"
   key_mgmt=IEEE8021X
   eap=TTLS
   identity="netid-here"
   anonymous_identity="anonymous"
   password="password-here"
   ca_cert="/etc/ssl/certs/Thawte_Premium_Server_CA.pem"
   phase2="auth=PAP"
   priority=1
}

Once that is done you can connect to UIC-Wireless using these commands.

  ifconfig wlan0 up
  wpa_supplicant -B -Dwext -i wlan0 -c /etc/wpa_supplicant.conf
  dhcpcd wlan0

You may have to replace wlan0 with the correct name of your wireless device. You can also save these commands in a file where the first line is "#!/bin/bash" and run it with "./file-name" in order to simplify the process.