Guest User

radiusd.conf

a guest
Jul 30th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 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. syslog_facility = daemon
  38. stripped_names = no
  39. auth = no
  40. auth_badpass = no
  41. auth_goodpass = no
  42. }
  43. checkrad = ${sbindir}/checkrad
  44. security {
  45. max_attributes = 200
  46. reject_delay = 1
  47. status_server = yes
  48. }
  49. proxy_requests = yes
  50. $INCLUDE proxy.conf
  51. $INCLUDE clients.conf
  52. thread pool {
  53. start_servers = 5
  54. max_servers = 32
  55. min_spare_servers = 3
  56. max_spare_servers = 10
  57. max_requests_per_server = 0
  58. }
  59. modules {
  60. $INCLUDE ${confdir}/modules/
  61. $INCLUDE eap.conf
  62. $INCLUDE sql.conf
  63. }
  64. instantiate {
  65. exec
  66. expr
  67. expiration
  68. logintime
  69. }
  70. $INCLUDE policy.conf
  71. $INCLUDE sites-enabled/
Advertisement
Add Comment
Please, Sign In to add comment