| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 | ## radiusd.conf	-- FreeRADIUS server configuration file.name = radiusdprefix = /usrexec_prefix = ${prefix}sysconfdir = /etclocalstatedir = /varsbindir = ${exec_prefix}/sbinlogdir = ${localstatedir}/log/radiusraddbdir = /etc/freeradiusradacctdir = ${logdir}/radacct#  Location of config and logfiles.confdir = ${raddbdir}run_dir = ${localstatedir}/rundb_dir = ${raddbdir}libdir = /usr/lib/freeradiuspidfile = ${run_dir}/${name}.piduser = radiusgroup = radius#chroot = /path/to/chroot/directorymax_request_time = 30cleanup_delay = 5max_requests = 1024listen {	type = auth	ipaddr = *	port = 1812}listen {	type = acct	ipaddr = *	port = 1813}hostname_lookups = noallow_core_dumps = noregular_expressions = yesextended_expressions = yeslog {	destination = syslog	syslog_facility = daemon	stripped_names = no	auth = no	auth_badpass = no	auth_goodpass = no}checkrad = ${sbindir}/checkradsecurity {	max_attributes = 200	reject_delay = 1	status_server = yes}$INCLUDE clients.confthread pool {	start_servers = 4	max_servers = 8	min_spare_servers = 3	max_spare_servers = 10	max_requests_per_server = 0}modules {}instantiate {}
 |