Solved How to make WPA-Enterpise Host-based Access Point?

The FreeBSD Handbook has an information how to setting up a FreeBSD access point using the WPA2-PSK.

How to setting up a FreeBSD access point using the WPA-Enterpise? (with RADIUS end certificates)
 
I have found that hostapd also contains a command line utility for configuration. Very useful when you set debug=x for logging.
hostapd_cli



 
I have found that hostapd also contains a command line utility for configuration. Very useful when you set debug=x for logging.
hostapd_cli
I saw it, but I can't find any documentation about meaning these variables
Code:
set <name> <value> = set runtime variables
get <name> = get runtime info
so I can't use hostapd_cli.
Thank you. That's almost my case except for an integrated EAP server.
These days, I set up an Asus access point to work but can't set up the FreeBSD box. The FreeBSD box's Wi-Fi is WEP-protected, not WPA Enterprise.
While reading the README from hostapd, I realized I used symbolic constants from the hostapd.conf(5) like
Code:
wpa = WPA-RADIUS
, but in the Handbook, the link above, and the README from hostapd, integer constants were used like
Code:
wpa=2
.
Later I can come to the FreeBSD box and check the WiFi.
 
OK, I have checked the WiFi today, and the network is WPA-Enterprise protected.
The error was in the hostapd.conf
Code:
wpa = WPA-RADIUS
instead of correcting
Code:
wpa=2
.
The FreeBSD Handbook has correct information.

My next quiz is "Why can't the FreeBSD client connect to the RADIUS server?"
Nothing happened to the RADIUS server's log when I tried to connect from my phone.
 
These days, I set up an Asus access point to work but can't set up the FreeBSD box.
I am on the fence too. Would rather have WPA3-SAE.
OpenRadius server might be easier from my reading but no experience there.

I dove deep into OpenWRT x86_64 Access Point. Working up from 80211AC to AX with Atheros modules. I moved up from APU1 to APU2 and that made it work very well..
Max speed I see on Atheros 80211N modules on FreeBSD is 108megabit with OpenWRT (physical 80megabit).
I have a bunch of Intel AX modules to test on FreeBSD. I look forward to more speed.

I thought about just buying an Asus AX3000 WAP for 60 bucks used but I like using the custom hardware I have already.
 
I am on the fence too. Would rather have WPA3-SAE.
It depends on your environment. For small offices and homes, I would prefer password protection too. It's easier and doesn't require your attention for a working auth server.
I'm going to use about a dozen APs to cover three floors for 20-30 users. So EAP-TLS is good choice for me.
OpenRadius server might be easier from my reading but no experience there.
I know nothing about it.
I dove deep into OpenWRT x86_64 Access Point. Working up from 80211AC to AX with Atheros modules. I moved up from APU1 to APU2 and that made it work very well..
Max speed I see on Atheros 80211N modules on FreeBSD is 108megabit with OpenWRT (physical 80megabit).
Do you use FreeBSD as a client, not as an AP?
 
Back
Top