2005-10-22 22:51:01 +00:00
|
|
|
## <summary>RADIUS authentication and accounting server.</summary>
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Use radius over a UDP connection.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`radius_use',`
|
|
|
|
gen_require(`
|
2005-11-29 21:27:15 +00:00
|
|
|
type radiusd_t;
|
2005-10-22 22:51:01 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 radiusd_t:udp_socket sendto;
|
|
|
|
allow radiusd_t $1:udp_socket recvfrom;
|
|
|
|
|
|
|
|
allow radiusd_t $1:udp_socket sendto;
|
|
|
|
allow $1 radiusd_t:udp_socket recvfrom;
|
|
|
|
')
|