An open API service indexing awesome lists of open source software.

https://github.com/zeroby0/example.raspberrypi-wpa-wpa2-enterprise

Connect Raspberrypi to WPA2-Enterprise (IIITB-Milan)
https://github.com/zeroby0/example.raspberrypi-wpa-wpa2-enterprise

Last synced: about 1 month ago
JSON representation

Connect Raspberrypi to WPA2-Enterprise (IIITB-Milan)

Awesome Lists containing this project

README

          

# Connect Raspberrypi to WPA/WPA2-Enterprise
[![License: Unlicense](https://img.shields.io/badge/license-Unlicense-blue.svg)](http://unlicense.org/)
[![](https://img.shields.io/github/issues/zeroby0/example.raspberrypi-WPA-WPA2-enterprise.svg?color=blue)](https://github.com/zeroby0/example.raspberrypi-WPA-WPA2-enterprise/issues)

Tested on IIITB-Milan.

`wget https://git.io/fjtb1 -O wpa.sh && bash wpa.sh`
or
`bash -c "$(curl -sL https://git.io/fjtb1)"`

## Manual
1. Add these lines to your `/etc/wpa_supplicant/wpa_supplicant.conf`
```
network={
ssid="IIITB-Milan"
proto=RSN
key_mgmt=WPA-EAP
pairwise=CCMP TKIP
group=CCMP TKIP
identity="iiitb\user.name"
password="Your password"
phase1="peaplabel=0"
phase2="auth=MSCHAPV2"
}
```

2. Add these to your `/etc/network/interface`
```
auto wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
pre-up wpa_supplicant -B -Dwext -i wlan0 -c/etc/wpa_supplicant/wpa_supplicant.conf
post-down killall -q wpa_supplicant
```
3. Restart you pi

----

- Edit files as root with sudo. `ctrl-shift-v` to paste to terminal.
- I found ethernet to be orders of magnitude faster with 3B. Use ethernet for large downloads.