1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
# RADIUS settings
nas-identifier my-nas-id
# RADIUS server to use for authentication requests.
# Optionally you can specify the port number on which the remote
# RADIUS server listens separated by a colon from the hostname.
# If no port is specified /etc/services is consulted for the radius
# service. In case this fails a compiled in default is used.
authserver localhost
# RADIUS server to use for accouting requests.
# All settings for authserver apply, too.
#
acctserver localhost
# File holding shared secrets used for the communication
# between the RADIUS client and server.
servers ./servers-temp
# Dictionary file of allowed attributes and values
# just like in the normal RADIUS distributions
dictionary ../etc/dictionary
# Default authentication realm to append to all usernames.
# The radiusd program directly from Livingston doesn't
# use any realms, so leave it blank then.
default_realm
# Time to wait for a reply from the RADIUS server.
radius_timeout 10
# Resend request this many times before trying the next server.
radius_retries 3
# Local address from which RADIUS packets have to be sent.
bindaddr *
|