暫無描述

ocserv.conf.template 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. # User authentication method. Could be set multiple times and in that case
  2. # all should succeed.
  3. # Options: certificate, pam.
  4. #auth = "certificate"
  5. #auth = "pam"
  6. # The gid-min option is used by auto-select-group option, in order to
  7. # select the minimum group ID.
  8. #auth = "pam[gid-min=1000]"
  9. # The plain option requires specifying a password file which contains
  10. # entries of the following format.
  11. # "username:groupname:encoded-password"
  12. # One entry must be listed per line, and 'ocpasswd' can be used
  13. # to generate password entries.
  14. auth = "|AUTH|"
  15. # A banner to be displayed on clients
  16. banner = "Welcome to OpenWRT"
  17. #isolate-workers = true
  18. # When the server has a dynamic DNS address (that may change),
  19. # should set that to true to ask the client to resolve again on
  20. # reconnects.
  21. listen-host-is-dyndns = |DYNDNS|
  22. # Use listen-host to limit to specific IPs or to the IPs of a provided
  23. # hostname.
  24. #listen-host = [IP|HOSTNAME]
  25. # Limit the number of clients. Unset or set to zero for unlimited.
  26. #max-clients = 1024
  27. max-clients = |MAX_CLIENTS|
  28. # Limit the number of client connections to one every X milliseconds
  29. # (X is the provided value). Set to zero for no limit.
  30. rate-limit-ms = 100
  31. # Limit the number of identical clients (i.e., users connecting
  32. # multiple times). Unset or set to zero for unlimited.
  33. max-same-clients = |MAX_SAME|
  34. # TCP and UDP port number
  35. tcp-port = |PORT|
  36. |UDP|udp-port = |PORT|
  37. # Stats report time. The number of seconds after which each
  38. # worker process will report its usage statistics (number of
  39. # bytes transferred etc). This is useful when accounting like
  40. # radius is in use.
  41. #stats-report-time = 360
  42. # Keepalive in seconds
  43. keepalive = 32400
  44. # Dead peer detection in seconds.
  45. dpd = |DPD|
  46. # Dead peer detection for mobile clients. The needs to
  47. # be much higher to prevent such clients being awaken too
  48. # often by the DPD messages, and save battery.
  49. # (clients that send the X-AnyConnect-Identifier-DeviceType)
  50. #mobile-dpd = 1800
  51. # MTU discovery (DPD must be enabled)
  52. try-mtu-discovery = false
  53. # The key and the certificates of the server
  54. # The key may be a file, or any URL supported by GnuTLS (e.g.,
  55. # tpmkey:uuid=xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxx;storage=user
  56. # or pkcs11:object=my-vpn-key;object-type=private)
  57. #
  58. # There may be multiple certificate and key pairs and each key
  59. # should correspond to the preceding certificate.
  60. server-cert = /etc/ocserv/server-cert.pem
  61. server-key = /etc/ocserv/server-key.pem
  62. # Diffie-Hellman parameters. Only needed if you require support
  63. # for the DHE ciphersuites (by default this server supports ECDHE).
  64. # Can be generated using:
  65. # certtool --generate-dh-params --outfile /path/to/dh.pem
  66. #dh-params = /path/to/dh.pem
  67. # If you have a certificate from a CA that provides an OCSP
  68. # service you may provide a fresh OCSP status response within
  69. # the TLS handshake. That will prevent the client from connecting
  70. # independently on the OCSP server.
  71. # You can update this response periodically using:
  72. # ocsptool --ask --load-cert=your_cert --load-issuer=your_ca --outfile response
  73. # Make sure that you replace the following file in an atomic way.
  74. #ocsp-response = /path/to/ocsp.der
  75. # In case PKCS #11 or TPM keys are used the PINs should be available
  76. # in files. The srk-pin-file is applicable to TPM keys only, and is the
  77. # storage root key.
  78. #pin-file = /path/to/pin.txt
  79. #srk-pin-file = /path/to/srkpin.txt
  80. # The Certificate Authority that will be used to verify
  81. # client certificates (public keys) if certificate authentication
  82. # is set.
  83. #ca-cert = /etc/ocserv/ca.pem
  84. # The object identifier that will be used to read the user ID in the client
  85. # certificate. The object identifier should be part of the certificate's DN
  86. # Useful OIDs are:
  87. # CN = 2.5.4.3, UID = 0.9.2342.19200300.100.1.1
  88. #cert-user-oid = 0.9.2342.19200300.100.1.1
  89. # The object identifier that will be used to read the user group in the
  90. # client certificate. The object identifier should be part of the certificate's
  91. # DN. Useful OIDs are:
  92. # OU (organizational unit) = 2.5.4.11
  93. #cert-group-oid = 2.5.4.11
  94. # The revocation list of the certificates issued by the 'ca-cert' above.
  95. #crl = /etc/ocserv/crl.pem
  96. # Uncomment this to enable compression negotiation (LZS, LZ4).
  97. |COMPRESSION|compression = true
  98. # GnuTLS priority string
  99. tls-priorities = "NORMAL:%SERVER_PRECEDENCE:%COMPAT:-VERS-SSL3.0"
  100. # To enforce perfect forward secrecy (PFS) on the main channel.
  101. #tls-priorities = "NORMAL:%SERVER_PRECEDENCE:%COMPAT:-VERS-SSL3.0:-RSA"
  102. # The time (in seconds) that a client is allowed to stay connected prior
  103. # to authentication
  104. auth-timeout = 40
  105. # The time (in seconds) that a client is allowed to stay idle (no traffic)
  106. # before being disconnected. Unset to disable.
  107. #idle-timeout = 1200
  108. # The time (in seconds) that a mobile client is allowed to stay idle (no
  109. # traffic) before being disconnected. Unset to disable.
  110. #mobile-idle-timeout = 2400
  111. # The time (in seconds) that a client is not allowed to reconnect after
  112. # a failed authentication attempt.
  113. min-reauth-time = 360
  114. # Banning clients in ocserv works with a point system. IP addresses
  115. # that get a score over that configured number are banned for
  116. # min-reauth-time seconds. By default a wrong password attempt is 10 points,
  117. # a KKDCP POST is 1 point, and a connection is 1 point. Note that
  118. # due to difference processes being involved the count of points
  119. # will not be real-time precise.
  120. #
  121. # Score banning cannot be reliably used when receiving proxied connections
  122. # locally from an HTTP server (i.e., when listen-clear-file is used).
  123. #
  124. # Set to zero to disable.
  125. max-ban-score = 50
  126. # The time (in seconds) that all score kept for a client is reset.
  127. ban-reset-time = 300
  128. # In case you'd like to change the default points.
  129. #ban-points-wrong-password = 10
  130. #ban-points-connection = 1
  131. #ban-points-kkdcp = 1
  132. # Cookie timeout (in seconds)
  133. # which he can reconnect. That cookie will be invalided if not
  134. # used within this timeout value. On a user disconnection, that
  135. # cookie will also be active for this time amount prior to be
  136. # invalid. That should allow a reasonable amount of time for roaming
  137. # between different networks.
  138. cookie-timeout = 300
  139. # Whether roaming is allowed, i.e., if true a cookie is
  140. # restricted to a single IP address and cannot be re-used
  141. # from a different IP.
  142. deny-roaming = false
  143. # ReKey time (in seconds)
  144. # ocserv will ask the client to refresh keys periodically once
  145. # this amount of seconds is elapsed. Set to zero to disable.
  146. rekey-time = 172800
  147. # ReKey method
  148. # Valid options: ssl, new-tunnel
  149. # ssl: Will perform an efficient rehandshake on the channel allowing
  150. # a seamless connection during rekey.
  151. # new-tunnel: Will instruct the client to discard and re-establish the channel.
  152. # Use this option only if the connecting clients have issues with the ssl
  153. # option.
  154. rekey-method = ssl
  155. # Script to call when a client connects and obtains an IP
  156. # Parameters are passed on the environment.
  157. # REASON, USERNAME, GROUPNAME, HOSTNAME (the hostname selected by client),
  158. # DEVICE, IP_REAL (the real IP of the client), IP_LOCAL (the local IP
  159. # in the P-t-P connection), IP_REMOTE (the VPN IP of the client),
  160. # ID (a unique numeric ID); REASON may be "connect" or "disconnect".
  161. # These scripts are not needed if you have setup an interface for all vpns+
  162. # devices.
  163. #connect-script = /usr/bin/ocserv-script
  164. #disconnect-script = /usr/bin/ocserv-script
  165. # UTMP
  166. use-utmp = false
  167. # Whether to enable support for the occtl tool (i.e., either through D-BUS,
  168. # or via a unix socket).
  169. use-occtl = true
  170. # socket file used for IPC with occtl. You only need to set that,
  171. # if you use more than a single servers.
  172. occtl-socket-file = /var/run/occtl.socket
  173. # PID file. It can be overriden in the command line.
  174. pid-file = /var/run/ocserv.pid
  175. # The default server directory. Does not require any devices present.
  176. chroot-dir = /var/lib/ocserv
  177. # socket file used for IPC, will be appended with .PID
  178. # It must be accessible within the chroot environment (if any)
  179. #socket-file = /var/run/ocserv-socket
  180. socket-file = ocserv-socket
  181. # The user the worker processes will be run as. It should be
  182. # unique (no other services run as this user).
  183. run-as-user = ocserv
  184. run-as-group = ocserv
  185. # Set the protocol-defined priority (SO_PRIORITY) for packets to
  186. # be sent. That is a number from 0 to 6 with 0 being the lowest
  187. # priority. Alternatively this can be used to set the IP Type-
  188. # Of-Service, by setting it to a hexadecimal number (e.g., 0x20).
  189. # This can be set per user/group or globally.
  190. #net-priority = 3
  191. # Set the VPN worker process into a specific cgroup. This is Linux
  192. # specific and can be set per user/group or globally.
  193. #cgroup = "cpuset,cpu:test"
  194. #
  195. # Network settings
  196. #
  197. # The name of the tun device
  198. device = vpns
  199. # Whether the generated IPs will be predictable, i.e., IP stays the
  200. # same for the same user when possible.
  201. predictable-ips = |PREDICTABLE_IPS|
  202. # The default domain to be advertised
  203. |ENABLE_DEFAULT_DOMAIN|default-domain = |DEFAULT_DOMAIN|
  204. # The pool of addresses that leases will be given from.
  205. ipv4-network = |IPV4ADDR|
  206. ipv4-netmask = |NETMASK|
  207. # The advertized DNS server. Use multiple lines for
  208. # multiple servers.
  209. # dns = fc00::4be0
  210. #dns = 192.168.1.2
  211. # The NBNS server (if any)
  212. #nbns = 192.168.1.3
  213. # The IPv6 subnet that leases will be given from.
  214. |ENABLE_IPV6|ipv6-network = |IPV6ADDR|
  215. # The domains over which the provided DNS should be used. Use
  216. # multiple lines for multiple domains.
  217. #split-dns = example.com
  218. # Prior to leasing any IP from the pool ping it to verify that
  219. # it is not in use by another (unrelated to this server) host.
  220. ping-leases = |PING_LEASES|
  221. # Unset to assign the default MTU of the device
  222. # mtu =
  223. # Unset to enable bandwidth restrictions (in bytes/sec). The
  224. # setting here is global, but can also be set per user or per group.
  225. #rx-data-per-sec = 40000
  226. #tx-data-per-sec = 40000
  227. # The number of packets (of MTU size) that are available in
  228. # the output buffer. The default is low to improve latency.
  229. # Setting it higher will improve throughput.
  230. #output-buffer = 10
  231. # Routes to be forwarded to the client. If you need the
  232. # client to forward routes to the server, you may use the
  233. # config-per-user/group or even connect and disconnect scripts.
  234. #
  235. # To set the server as the default gateway for the client just
  236. # comment out all routes from the server.
  237. #route = 192.168.1.0/255.255.255.0
  238. #route = 192.168.5.0/255.255.255.0
  239. #route = fef4:db8:1000:1001::/64
  240. # Configuration files that will be applied per user connection or
  241. # per group. Each file name on these directories must match the username
  242. # or the groupname.
  243. # The options allowed in the configuration files are dns, nbns,
  244. # ipv?-network, ipv4-netmask, ipv6-prefix, rx/tx-per-sec, iroute, route,
  245. # net-priority and cgroup.
  246. #
  247. # Note that the 'iroute' option allows to add routes on the server
  248. # based on a user or group. The syntax depends on the input accepted
  249. # by the commands route-add-cmd and route-del-cmd (see below).
  250. config-per-user = /etc/ocserv/config-per-user/
  251. config-per-group = /etc/ocserv/config-per-group/
  252. # When config-per-xxx is specified and there is no group or user that
  253. # matches, then utilize the following configuration.
  254. #default-user-config = /etc/ocserv/defaults/user.conf
  255. #default-group-config = /etc/ocserv/defaults/group.conf
  256. # Groups that a client is allowed to select from.
  257. # A client may belong in multiple groups, and in certain use-cases
  258. # it is needed to switch between them. For these cases the client can
  259. # select prior to authentication. Add multiple entries for multiple groups.
  260. #select-group = group1
  261. #select-group = group2[My group 2]
  262. #select-group = tost[The tost group]
  263. # The name of the group that if selected it would allow to use
  264. # the assigned by default group.
  265. #default-select-group = DEFAULT
  266. # Instead of specifying manually all the allowed groups, you may instruct
  267. # ocserv to scan all available groups and include the full list. That
  268. # option is only functional on plain authentication.
  269. #auto-select-group = true
  270. # The system command to use to setup a route. %{R} will be replaced with the
  271. # route/mask and %{D} with the (tun) device.
  272. #
  273. # The following example is from linux systems. %{R} should be something
  274. # like 192.168.2.0/24
  275. route-add-cmd = "/sbin/route add -net %{R} dev %{D}"
  276. route-del-cmd = "/sbin/route del -net %{R} dev %{D}"
  277. # This option allows to forward a proxy. The special strings '%{U}'
  278. # and '%{G}', if present will be replaced by the username and group name.
  279. #proxy-url = http://example.com/
  280. #proxy-url = http://example.com/%{U}/%{G}/hello
  281. #
  282. # The following options are for (experimental) AnyConnect client
  283. # compatibility.
  284. # Client profile xml. A sample file exists in doc/profile.xml.
  285. # This file must be accessible from inside the worker's chroot.
  286. # It is not used by the openconnect client.
  287. #user-profile = profile.xml
  288. # Binary files that may be downloaded by the CISCO client. Must
  289. # be within any chroot environment.
  290. #binary-files = /path/to/binaries
  291. # Unless set to false it is required for clients to present their
  292. # certificate even if they are authenticating via a previously granted
  293. # cookie and complete their authentication in the same TCP connection.
  294. # Legacy CISCO clients do not do that, and thus this option should be
  295. # set for them.
  296. cisco-client-compat = |CISCO_COMPAT|
  297. #Advanced options
  298. # Option to allow sending arbitrary custom headers to the client after
  299. # authentication and prior to VPN tunnel establishment.
  300. #custom-header = "X-My-Header: hi there"