Freeradius 2.1-1: failure modes
    Alan DeKok 
    aland at deployingradius.com
       
    Wed Mar 11 03:40:10 CET 2009
    
    
  
leopold wrote:
> For my situation since radiusd keeps everything in DB and if ALL databases
> cannot be contacted the radiusd should not respond at all.
> Is there any way to force radiusd to drop request and not to respond with
> Access-Reject?
  Try something like this:
authorize {
	...
	redundant {
		sql1
		sql2
	}
	if (fail) {
		update control {
			Response-Packet-Type = 256
		}
		reject
	}
	...
}
  That should tell the server "don't respond".
  Alan DeKok.
    
    
More information about the Freeradius-Users
mailing list