We use the Eduroam wireless network at the University of Kent. There’s various guides for getting it working on Linux, but I thought I’d try on FreeBSD. It’s pretty simple.
First create /etc/wpa_supplicant.conf with the following content:
network={
ssid="eduroam"
proto=WPA WPA2
key_mgmt=WPA-EAP
eap=PEAP
group=TKIP
identity="tdb@kent.ac.uk"
password="YourPassword"
}
Then add the following to /etc/rc.conf:
ifconfig_ath0="WPA DHCP"
Replacing ath0 with your wireless adapter if it’s different.
Then start it up as follows (or reboot):
# /etc/rc.d/netif start
You can use ifconfig to confirm the link is up, and ping to test.
For more general information about wireless networking in FreeBSD please see this section of the handbook.
Related posts:
- FreeBSD with Netgear WG311T How to get a Netgear WG311T to work on FreeBSD in a Soekris net5501....
- FreeBSD stuff I’ve done a bit of work on my FreeBSD ports lately. Firstly, after building my new server, I got round to upgrading from SlimServer to SqueezeCenter. This also meant sorting out ports for all the plugins I use. This didn’t take too long, and you can find them all over here. So far I’m liking [...]...
- NFS+IPsec Performance We’ve recently moved to having our filestore NFS exported from a cluster. This provides almost complete resilience from hardware failures, and moves us away from depending on individual end-user systems with locally attached filestore. Given the inherent insecurities with NFS we opted to use IPsec authentication (but not encryption) between the hosts involved. The NFS server [...]...
Old news. I had that working happily quite some time ago.
I suppose it was largely an exercise in documenting it