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)
- Host: GitHub
- URL: https://github.com/zeroby0/example.raspberrypi-wpa-wpa2-enterprise
- Owner: zeroby0
- License: unlicense
- Created: 2019-04-09T17:18:18.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-10T03:41:59.000Z (about 7 years ago)
- Last Synced: 2026-04-22T08:12:38.863Z (about 2 months ago)
- Language: Shell
- Size: 9.77 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Connect Raspberrypi to WPA/WPA2-Enterprise
[](http://unlicense.org/)
[](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.