Advertisement
Guest User

Untitled

a guest
Aug 20th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.04 KB | None | 0 0
  1. ; Complete documentation about the Duo Auth Proxy can be found here:
  2. ; https://duo.com/docs/authproxy_reference
  3.  
  4. ; MAIN: Include this section to specify global configuration options.
  5. ; All settings are optional.
  6. ; Reference: https://duo.com/docs/authproxy_reference#main-section
  7. ;[main]
  8.  
  9.  
  10. ; CLIENTS: Include one or more of the following configuration sections.
  11. ; To configure more than one client configuration of the same type, append a
  12. ; number to the section name (e.g. [ad_client2])
  13.  
  14. ; Include ad_client if you want to use an Active Directory domain controller
  15. ; for primary auth.
  16. [ad_client]
  17. ; The hostname or IP address of your domain controller
  18. host=
  19. ; Username of the account that will read from your Active Directory database
  20. service_account_username=
  21. ; Password corresponding to service_account_username
  22. service_account_password=
  23. ; The LDAP distinguished name of an AD or OU containing all of the users you
  24. ; wish to permit to log in
  25. search_dn=
  26.  
  27. ; Include radius_client if you want the Auth Proxy to contact another RADIUS
  28. ; server to perform primary auth
  29. ; Config Options: https://duo.com/docs/authproxy_reference#radius_client
  30. ;[radius_client]
  31.  
  32. ; Include duo_only_client if your device supports separate configurations for
  33. ; primary and secondary authentication and you wish to use the Auth Proxy for
  34. ; secondary authentication and let the device handle primary authentication.
  35. ; Reference: https://duo.com/docs/authproxy_reference#duo_only_client
  36. ;[duo_only_client]
  37.  
  38.  
  39. ; SERVERS: Include one or more of the following configuration sections.
  40. ; To configure more than one server configuration of the same type, append a
  41. ; number to the section name (e.g. radius_server_auto1, radius_server_auto2)
  42.  
  43. ; radius_server_auto is recommended for most applications and is compatible
  44. ; with almost all systems that support RADIUS auth. User's device and factor
  45. ; is automatically selected for each login
  46. ; Config options: https://duo.com/docs/authproxy_reference#radius-auto
  47. [radius_server_auto]
  48. ; Your Duo integration key
  49. ikey=
  50. ; Your Duo secret key
  51. skey=
  52. ; Your Duo API hostname (e.g. "api-XXXX.duosecurity.com")
  53. api_host=
  54. ; The IP address or IP range of the device(s) or application(s) that will be
  55. ; contacting the authentication proxy via RADIUS
  56. radius_ip_1=
  57. ; A shared secret that you'll enter both here and in the configuration of the
  58. ; device(s) or application(s) with the corresponding radius_ip_x value. We
  59. ; recommend as strong a password as possible. (max 128 chars)
  60. radius_secret_1=
  61. ; Protocol followed in the event that Duo services are down.
  62. ; Safe: Authentication permitted if primary authentication succeeds
  63. ; Secure: All authentication attempts will be rejected
  64. failmode=safe
  65. ; Mechanism the Auth Proxy should use to perform primary auth. Should correspond
  66. ; with a "client" section elsewhere in this configuration file
  67. client=ad_client
  68. ; Port on which to listen for incoming RADIUS Access Requests
  69. port=1812
  70.  
  71. ; radius_server_iframe shows users a web-based authentication prompt. This mode
  72. ; is only available on supported devices.
  73. ; Config Options: https://duo.com/docs/authproxy_reference#radius-iframe
  74. ;[radius_server_iframe]
  75.  
  76. ; radius_server_challenge presents users with a textual challenge after entering
  77. ; their existing passwords
  78. ; Config Options: https://duo.com/docs/authproxy_reference#radius-challenge
  79. ;[radius_server_challenge]
  80.  
  81. ; radius_server_concat has users append a Duo passcode to their existing passwords
  82. ; Config Options: https://duo.com/docs/authproxy_reference#radius-concat
  83. ;[radius_server_concat]
  84.  
  85. ; Include radius_server_duo_only when primary auth is handled elsewhere and you want
  86. ; to submit the passcode or factor choice as the RADIUS password field
  87. ; Config Options: https://duo.com/docs/authproxy_reference#radius-duo-only
  88. ;[radius_server_duo_only]
  89.  
  90. ; Include ldap_server_auto to use with an LDAP integration. The passcode or factor
  91. ; will be appended to the password or a default factor can be selected
  92. ; Config Options: https://duo.com/docs/authproxy_reference#ldap-auto
  93. ;[ldap_server_auto]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement