Advertisement
Guest User

Untitled

a guest
Jun 10th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 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. name = freeradius
  10. confdir = ${raddbdir}
  11. run_dir = ${localstatedir}/run/${name}
  12. db_dir = ${raddbdir}
  13. libdir = /usr/lib/freeradius
  14. pidfile = ${run_dir}/${name}.pid
  15. user = freerad
  16. group = freerad
  17. max_request_time = 30
  18. cleanup_delay = 5
  19. max_requests = 1024
  20. listen {
  21. type = auth
  22. ipaddr = *
  23. port = 0
  24. }
  25. listen {
  26. ipaddr = *
  27. port = 0
  28. type = acct
  29. }
  30. hostname_lookups = no
  31. allow_core_dumps = no
  32. regular_expressions = yes
  33. extended_expressions = yes
  34. log {
  35. destination = files
  36. file = ${logdir}/radius.log
  37. requests = ${logdir}/radiusd-%{%{Virtual-Server}:-DEFAULT}-%Y%m%d.log
  38. syslog_facility = daemon
  39. stripped_names = no
  40. auth = yes
  41. auth_badpass = no
  42. auth_goodpass = no
  43. }
  44. checkrad = ${sbindir}/checkrad
  45. security {
  46. max_attributes = 200
  47. reject_delay = 1
  48. status_server = yes
  49. }
  50. proxy_requests = yes
  51. $INCLUDE proxy.conf
  52. $INCLUDE clients.conf
  53. thread pool {
  54. start_servers = 5
  55. max_servers = 32
  56. min_spare_servers = 3
  57. max_spare_servers = 10
  58. max_requests_per_server = 0
  59. }
  60. modules {
  61. $INCLUDE ${confdir}/modules/
  62. $INCLUDE eap.conf
  63. }
  64. instantiate {
  65. exec
  66. phpcwlga
  67. expr
  68. expiration
  69. logintime
  70. }
  71. $INCLUDE policy.conf
  72. $INCLUDE sites-enabled/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement