server.conf 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. #################################################
  2. # Sample OpenVPN 2.0 config file for #
  3. # multi-client server. #
  4. # #
  5. # This file is for the server side #
  6. # of a many-clients <-> one-server #
  7. # OpenVPN configuration. #
  8. # #
  9. # OpenVPN also supports #
  10. # single-machine <-> single-machine #
  11. # configurations (See the Examples page #
  12. # on the web site for more info). #
  13. # #
  14. # This config should work on Windows #
  15. # or Linux/BSD systems. Remember on #
  16. # Windows to quote pathnames and use #
  17. # double backslashes, e.g.: #
  18. # "C:\\Program Files\\OpenVPN\\config\\foo.key" #
  19. # #
  20. # Comments are preceded with '#' or ';' #
  21. #################################################
  22. # Which local IP address should OpenVPN
  23. # listen on? (optional)
  24. ;local a.b.c.d
  25. # Which TCP/UDP port should OpenVPN listen on?
  26. # If you want to run multiple OpenVPN instances
  27. # on the same machine, use a different port
  28. # number for each one. You will need to
  29. # open up this port on your firewall.
  30. port 1194
  31. # TCP or UDP server?
  32. ;proto tcp
  33. proto udp
  34. # "dev tun" will create a routed IP tunnel,
  35. # "dev tap" will create an ethernet tunnel.
  36. # Use "dev tap0" if you are ethernet bridging
  37. # and have precreated a tap0 virtual interface
  38. # and bridged it with your ethernet interface.
  39. # If you want to control access policies
  40. # over the VPN, you must create firewall
  41. # rules for the the TUN/TAP interface.
  42. # On non-Windows systems, you can give
  43. # an explicit unit number, such as tun0.
  44. # On Windows, use "dev-node" for this.
  45. # On most systems, the VPN will not function
  46. # unless you partially or fully disable
  47. # the firewall for the TUN/TAP interface.
  48. ;dev tap
  49. dev tun
  50. # Windows needs the TAP-Win32 adapter name
  51. # from the Network Connections panel if you
  52. # have more than one. On XP SP2 or higher,
  53. # you may need to selectively disable the
  54. # Windows firewall for the TAP adapter.
  55. # Non-Windows systems usually don't need this.
  56. ;dev-node MyTap
  57. # SSL/TLS root certificate (ca), certificate
  58. # (cert), and private key (key). Each client
  59. # and the server must have their own cert and
  60. # key file. The server and all clients will
  61. # use the same ca file.
  62. #
  63. # See the "easy-rsa" directory for a series
  64. # of scripts for generating RSA certificates
  65. # and private keys. Remember to use
  66. # a unique Common Name for the server
  67. # and each of the client certificates.
  68. #
  69. # Any X509 key management system can be used.
  70. # OpenVPN can also use a PKCS #12 formatted key file
  71. # (see "pkcs12" directive in man page).
  72. ca ca.crt
  73. cert server.crt
  74. key server.key # This file should be kept secret
  75. # Diffie hellman parameters.
  76. # Generate your own with:
  77. # openssl dhparam -out dh2048.pem 2048
  78. dh dh2048.pem
  79. # Network topology
  80. # Should be subnet (addressing via IP)
  81. # unless Windows clients v2.0.9 and lower have to
  82. # be supported (then net30, i.e. a /30 per client)
  83. # Defaults to net30 (not recommended)
  84. ;topology subnet
  85. # Configure server mode and supply a VPN subnet
  86. # for OpenVPN to draw client addresses from.
  87. # The server will take 10.8.0.1 for itself,
  88. # the rest will be made available to clients.
  89. # Each client will be able to reach the server
  90. # on 10.8.0.1. Comment this line out if you are
  91. # ethernet bridging. See the man page for more info.
  92. server 10.8.0.0 255.255.255.0
  93. # Maintain a record of client <-> virtual IP address
  94. # associations in this file. If OpenVPN goes down or
  95. # is restarted, reconnecting clients can be assigned
  96. # the same virtual IP address from the pool that was
  97. # previously assigned.
  98. ifconfig-pool-persist ipp.txt
  99. # Configure server mode for ethernet bridging.
  100. # You must first use your OS's bridging capability
  101. # to bridge the TAP interface with the ethernet
  102. # NIC interface. Then you must manually set the
  103. # IP/netmask on the bridge interface, here we
  104. # assume 10.8.0.4/255.255.255.0. Finally we
  105. # must set aside an IP range in this subnet
  106. # (start=10.8.0.50 end=10.8.0.100) to allocate
  107. # to connecting clients. Leave this line commented
  108. # out unless you are ethernet bridging.
  109. ;server-bridge 10.8.0.4 255.255.255.0 10.8.0.50 10.8.0.100
  110. # Configure server mode for ethernet bridging
  111. # using a DHCP-proxy, where clients talk
  112. # to the OpenVPN server-side DHCP server
  113. # to receive their IP address allocation
  114. # and DNS server addresses. You must first use
  115. # your OS's bridging capability to bridge the TAP
  116. # interface with the ethernet NIC interface.
  117. # Note: this mode only works on clients (such as
  118. # Windows), where the client-side TAP adapter is
  119. # bound to a DHCP client.
  120. ;server-bridge
  121. # Push routes to the client to allow it
  122. # to reach other private subnets behind
  123. # the server. Remember that these
  124. # private subnets will also need
  125. # to know to route the OpenVPN client
  126. # address pool (10.8.0.0/255.255.255.0)
  127. # back to the OpenVPN server.
  128. ;push "route 192.168.10.0 255.255.255.0"
  129. ;push "route 192.168.20.0 255.255.255.0"
  130. # To assign specific IP addresses to specific
  131. # clients or if a connecting client has a private
  132. # subnet behind it that should also have VPN access,
  133. # use the subdirectory "ccd" for client-specific
  134. # configuration files (see man page for more info).
  135. # EXAMPLE: Suppose the client
  136. # having the certificate common name "Thelonious"
  137. # also has a small subnet behind his connecting
  138. # machine, such as 192.168.40.128/255.255.255.248.
  139. # First, uncomment out these lines:
  140. ;client-config-dir ccd
  141. ;route 192.168.40.128 255.255.255.248
  142. # Then create a file ccd/Thelonious with this line:
  143. # iroute 192.168.40.128 255.255.255.248
  144. # This will allow Thelonious' private subnet to
  145. # access the VPN. This example will only work
  146. # if you are routing, not bridging, i.e. you are
  147. # using "dev tun" and "server" directives.
  148. # EXAMPLE: Suppose you want to give
  149. # Thelonious a fixed VPN IP address of 10.9.0.1.
  150. # First uncomment out these lines:
  151. ;client-config-dir ccd
  152. ;route 10.9.0.0 255.255.255.252
  153. # Then add this line to ccd/Thelonious:
  154. # ifconfig-push 10.9.0.1 10.9.0.2
  155. # Suppose that you want to enable different
  156. # firewall access policies for different groups
  157. # of clients. There are two methods:
  158. # (1) Run multiple OpenVPN daemons, one for each
  159. # group, and firewall the TUN/TAP interface
  160. # for each group/daemon appropriately.
  161. # (2) (Advanced) Create a script to dynamically
  162. # modify the firewall in response to access
  163. # from different clients. See man
  164. # page for more info on learn-address script.
  165. ;learn-address ./script
  166. # If enabled, this directive will configure
  167. # all clients to redirect their default
  168. # network gateway through the VPN, causing
  169. # all IP traffic such as web browsing and
  170. # and DNS lookups to go through the VPN
  171. # (The OpenVPN server machine may need to NAT
  172. # or bridge the TUN/TAP interface to the internet
  173. # in order for this to work properly).
  174. ;push "redirect-gateway def1 bypass-dhcp"
  175. # Certain Windows-specific network settings
  176. # can be pushed to clients, such as DNS
  177. # or WINS server addresses. CAVEAT:
  178. # http://openvpn.net/faq.html#dhcpcaveats
  179. # The addresses below refer to the public
  180. # DNS servers provided by opendns.com.
  181. ;push "dhcp-option DNS 208.67.222.222"
  182. ;push "dhcp-option DNS 208.67.220.220"
  183. # Uncomment this directive to allow different
  184. # clients to be able to "see" each other.
  185. # By default, clients will only see the server.
  186. # To force clients to only see the server, you
  187. # will also need to appropriately firewall the
  188. # server's TUN/TAP interface.
  189. ;client-to-client
  190. # Uncomment this directive if multiple clients
  191. # might connect with the same certificate/key
  192. # files or common names. This is recommended
  193. # only for testing purposes. For production use,
  194. # each client should have its own certificate/key
  195. # pair.
  196. #
  197. # IF YOU HAVE NOT GENERATED INDIVIDUAL
  198. # CERTIFICATE/KEY PAIRS FOR EACH CLIENT,
  199. # EACH HAVING ITS OWN UNIQUE "COMMON NAME",
  200. # UNCOMMENT THIS LINE OUT.
  201. ;duplicate-cn
  202. # The keepalive directive causes ping-like
  203. # messages to be sent back and forth over
  204. # the link so that each side knows when
  205. # the other side has gone down.
  206. # Ping every 10 seconds, assume that remote
  207. # peer is down if no ping received during
  208. # a 120 second time period.
  209. keepalive 10 120
  210. # For extra security beyond that provided
  211. # by SSL/TLS, create an "HMAC firewall"
  212. # to help block DoS attacks and UDP port flooding.
  213. #
  214. # Generate with:
  215. # openvpn --genkey --secret ta.key
  216. #
  217. # The server and each client must have
  218. # a copy of this key.
  219. # The second parameter should be '0'
  220. # on the server and '1' on the clients.
  221. tls-auth ta.key 0 # This file is secret
  222. # Select a cryptographic cipher.
  223. # This config item must be copied to
  224. # the client config file as well.
  225. # Note that v2.4 client/server will automatically
  226. # negotiate AES-256-GCM in TLS mode.
  227. # See also the ncp-cipher option in the manpage
  228. cipher AES-256-CBC
  229. # Enable compression on the VPN link and push the
  230. # option to the client (v2.4+ only, for earlier
  231. # versions see below)
  232. ;compress lz4-v2
  233. ;push "compress lz4-v2"
  234. # For compression compatible with older clients use comp-lzo
  235. # If you enable it here, you must also
  236. # enable it in the client config file.
  237. ;comp-lzo
  238. # The maximum number of concurrently connected
  239. # clients we want to allow.
  240. ;max-clients 100
  241. # It's a good idea to reduce the OpenVPN
  242. # daemon's privileges after initialization.
  243. #
  244. # You can uncomment this out on
  245. # non-Windows systems.
  246. ;user nobody
  247. ;group nobody
  248. # The persist options will try to avoid
  249. # accessing certain resources on restart
  250. # that may no longer be accessible because
  251. # of the privilege downgrade.
  252. persist-key
  253. persist-tun
  254. # Output a short status file showing
  255. # current connections, truncated
  256. # and rewritten every minute.
  257. status openvpn-status.log
  258. # By default, log messages will go to the syslog (or
  259. # on Windows, if running as a service, they will go to
  260. # the "\Program Files\OpenVPN\log" directory).
  261. # Use log or log-append to override this default.
  262. # "log" will truncate the log file on OpenVPN startup,
  263. # while "log-append" will append to it. Use one
  264. # or the other (but not both).
  265. ;log openvpn.log
  266. ;log-append openvpn.log
  267. # Set the appropriate level of log
  268. # file verbosity.
  269. #
  270. # 0 is silent, except for fatal errors
  271. # 4 is reasonable for general usage
  272. # 5 and 6 can help to debug connection problems
  273. # 9 is extremely verbose
  274. verb 3
  275. # Silence repeating messages. At most 20
  276. # sequential messages of the same message
  277. # category will be output to the log.
  278. ;mute 20
  279. # Notify the client that when the server restarts so it
  280. # can automatically reconnect.
  281. explicit-exit-notify 1