Guest User

Untitled

a guest
May 17th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. prefix = /usr
  2. exec_prefix = /usr
  3. sysconfdir = /etc
  4. localstatedir = /var
  5. sbindir = ${exec_prefix}/sbin
  6. logdir = /var/log/freeradius
  7. raddbdir = /etc/freeradius
  8. radacctdir = ${logdir}/radacct
  9.  
  10. name = freeradius
  11.  
  12. confdir = ${raddbdir}
  13. modconfdir = ${confdir}/mods-config
  14. certdir = ${confdir}/certs
  15. cadir = ${confdir}/certs
  16. run_dir = ${localstatedir}/run/${name}
  17.  
  18. db_dir = ${raddbdir}
  19.  
  20. libdir = /usr/lib/freeradius
  21.  
  22. pidfile = ${run_dir}/${name}.pid
  23.  
  24. correct_escapes = true
  25.  
  26. max_request_time = 90
  27.  
  28. cleanup_delay = 5
  29.  
  30. max_requests = 1280000
  31.  
  32. hostname_lookups = no
  33.  
  34. log {
  35. destination = files
  36.  
  37. colourise = yes
  38.  
  39. file = ${logdir}/radius.log
  40.  
  41. syslog_facility = daemon
  42.  
  43. stripped_names = no
  44.  
  45. auth = no
  46.  
  47. auth_badpass = no
  48. auth_goodpass = no
  49.  
  50. msg_denied = "You are already logged in - access denied"
  51. }
  52.  
  53. checkrad = ${sbindir}/checkrad
  54.  
  55. security {
  56. user = freerad
  57. group = freerad
  58.  
  59. allow_core_dumps = no
  60.  
  61. max_attributes = 200
  62.  
  63. reject_delay = 1
  64.  
  65. status_server = yes
  66.  
  67.  
  68. }
  69.  
  70. proxy_requests = yes
  71. $INCLUDE proxy.conf
  72.  
  73.  
  74. $INCLUDE clients.conf
  75.  
  76.  
  77. thread pool {
  78. start_servers = 256
  79.  
  80. max_servers = 1024
  81.  
  82. min_spare_servers = 256
  83. max_spare_servers = 1024
  84.  
  85.  
  86. max_requests_per_server = 0
  87.  
  88. auto_limit_acct = no
  89. }
  90.  
  91. modules {
  92. $INCLUDE mods-enabled/
  93. }
  94.  
  95. instantiate {
  96. }
  97.  
  98. policy {
  99. $INCLUDE policy.d/
  100. }
  101.  
  102. $INCLUDE sites-enabled/
Add Comment
Please, Sign In to add comment