WiFi Security - Enterprise Radius Server IP Address Mutiple

Would love to see the ability to put in at lest 2 radius server IP addresses for Enterprise Authentication for Cloud Radius Service Providers

Welcome to the Alta community! I can confirm that this is on our roadmap.

Fantastic! Looking forward to it!

Hostapd doesn’t really have load-balencing for radius servers but it does have native failover.

https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf

I’ve not tested this, but if you enable the power user settings, you should be able to enable failover at least by doing something like the following

{
"hostapd": "
  # RADIUS client configuration
# Primary RADIUS server
auth_server_addr=192.168.1.2
auth_server_port=1812
auth_server_shared_secret=secret1

# Secondary RADIUS server
auth_server_addr=192.168.1.3
auth_server_port=1812
auth_server_shared_secret=secret2

# Optionally, you can configure accounting servers as well
# Primary Accounting server
#acct_server_addr=192.168.1.2
#acct_server_port=1813
#acct_server_shared_secret=secret1

# Secondary Accounting server
#acct_server_addr=192.168.1.3
#acct_server_port=1813
#acct_server_shared_secret=secret2
"
}