Troubleshooting: FortiGate and RADIUS
I recently encountered a strange case where RADIUS authentication on a FortiGate cluster was failing on the secondary node. The cluster uses multiple VDOMs configured in a vcluster, and each FortiGate has its own out-of-band management IP. Authentication had been working fine previously.
On the secondary FortiGate, I enabled debugging to see if authentication requests were reaching the firewall:
diagnose debug console timestamp enable
diagnose debug application fnbamd -1
diagnose debug application radiusd -1
diagnose debug enable
Surprisingly, no output was generated, and no requests were arriving at the RADIUS server. The issue was likely with the fnbamd daemon, which handles remote authentication. First, find the process ID:
diagnose sys process pidof fnbamd
The process ID is printed on screen. Then, restart the process using:
diagnose sys kill 11 <process id>
After restarting fnbamd, RADIUS authentication started working again. Don’t forget to disable debugging:
diagnose debug disable
René Jorissen
Latest posts by René Jorissen (see all)
- ClearPass 6.12 EAP-TLS Authentication Issues – “No Suitable Signature Algorithm” - February 11, 2026
- Aruba AOS 10 and Mesh Networking - January 28, 2026
- Deploy HPE 9106 gateways - January 20, 2026