forked from voxpupuli/puppet-openvpn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.pp
733 lines (711 loc) · 21.4 KB
/
server.pp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
# == Define: openvpn::server
#
# This define creates the openvpn server instance which can run in server or
# client mode.
#
# === Parameters
#
# [*country*]
# String. Country to be used for the SSL certificate,
# mandatory for server mode.
# Default: undef
#
# [*province*]
# String. Province to be used for the SSL certificate,
# mandatory for server mode.
# Default: undef
#
# [*city*]
# String. City to be used for the SSL certificate, mandatory for server mode.
# Default: undef
#
# [*organization*]
# String. Organization to be used for the SSL certificate,
# mandatory for server mode.
# Default: undef
#
# [*email*]
# String. Email address to be used for the SSL certificate,
# mandatory for server mode.
# Default: undef
#
# [*remote*]
# Array. List of OpenVPN endpoints to connect to.
# Default: undef
#
# [*common_name*]
# String. Common name to be used for the SSL certificate
# Default: server
#
# [*compression*]
# String. Which compression algorithim to use
# Default: comp-lzo
# Options: comp-lzo or '' (disable compression)
#
# [*dev*]
# String. TUN/TAP virtual network device
# Default: tun0
# Options: tunX (routed connections), tapX (bridged connections). X
# can be omitted for a dynamic device.
#
# [*user*]
# String. Group to drop privileges to after startup
# Default: nobody
#
# [*group*]
# String. User to drop privileges to after startup
# Default: depends on your $::osfamily
#
# [*ipp*]
# Boolean. Persist ifconfig information to a file to retain client IP
# addresses between sessions
# Default: false
#
# [*duplicate_cn*]
# Boolean. Allow multiple connections on one cn
# Default: false
#
# [*local*]
# String. Interface for openvpn to bind to.
# Default: $::ipaddress_eth0
# Options: An IP address or '' to bind to all ip addresses
#
# [*logfile*]
# String. Logfile for this openvpn server
# Default: false
# Options: false (syslog) or log file name
#
# [*port*]
# Integer. The port the openvpn server service is running on
# Default: 1194
#
# [*portshare*]
# String. The address and port to which non openvpn request shall be forwared, e.g. 127.0.0.1 8443
# Default: undef
#
# [*proto*]
# String. What IP protocol is being used.
# Default: tcp
# Options: tcp or udp
#
# [*status_log*]
# String. Logfile for periodic dumps of the vpn service status
# Default: "/var/log/openvpn/${name}-status.log"
#
# [*status_version*]
# Integer. Choose the status file format version number.
# Can be 1, 2 or 3 and defaults to 1
# Default: None (=1)
#
# [*server*]
# String. Network to assign client addresses out of
# Default: None. Required in tun mode, not in tap mode
#
# [*server_ipv6*]
# String. IPv6 network to assign client addresses out of
# Default: None.
#
# [*server_bridge*]
# String. Server configuration to comply with existing DHCP server
# Default: None.
#
# [*push*]
# Array. Options to push out to the client. This can include routes, DNS
# servers, DNS search domains, and many other options.
# Default: []
#
# [*route*]
# Array. Add route to routing table after connection is established.
# Multiple routes can be specified.
# Default: []
#
# [*route_ipv6*]
# Array. Add IPv6 route to routing table after connection is established.
# Multiple routes can be specified.
# Default: []
#
# [*keepalive*]
# String. Add keepalive directive (ping and ping-restart) to server.
# Should match the form "n m".
# Default: None
#
# [*ssl_key_size*]
# String. Length of SSL keys (in bits) generated by this module.
# Default: 2048
#
# [*topology*]
# String. Define the network topology type
# Default: net30
#
# [*c2c*]
# Boolean. Enable client to client visibility
# Default: false
#
# [*tcp_nodelay*]
# Boolean, Enable/Disable.
# Default: false
#
# [*ccd-exclusive*]
# Boolean, Enable/Disable.
# Default: false
#
# [*pam*]
# Boolean, Enable/Disable.
# Default: false
#
# [*pam_module_arguments*]
# String. Arguments to pass to the PAM module. For FreeIPA, set this to
# "openvpn login USERNAME password PASSWORD" and create HBAC Service
# "openvpn".
# Default: login
#
# [*management*]
# Boolean. Enable management interface
# Default: false
#
# [*management_ip*]
# String. IP address where the management interface will listen
# Default: localhost
#
# [*management_port*]
# String. Port where the management interface will listen
# Default: 7505
#
# [*up*]
# String, Script which we want to run when openvpn server starts
#
# [*down*]
# String, Script which we want to run when openvpn server stops
#
# [*username_as_common_name*]
# Boolean. If true then set username-as-common-name
# Default: false
#
# [*client_cert_not_required*]
# Boolean. If true then set client-cert-not-required
# Default: false
#
# [*ldap_enabled*]
# Boolean. If ldap is enabled, do stuff
# Default: false
#
# [*ldap_server*]
# String. URL of LDAP server. ie. ldap://URL:PORT
# Default: None
#
# [*ldap_binddn*]
# String. LDAP DN to bind as
# Default: None
#
# [*ldap_bindpass*]
# String. LDAP password for ldapbinddn
# Default: None
#
# [*ldap_u_basedn*]
# String. Place in the LDAP tree to look for users
# Default: None
#
# [*ldap_u_filter*]
# String. User SearchFilter for LDAP accounts
# Default: None
#
# [*ldap_g_basedn*]
# String. Place in the LDAP tree to look for groups
# Default: None
#
# [*ldap_gmember*]
# Boolean. If defined use group block in ldap.conf
# Default: false
#
# [*ldap_g_filter*]
# String. Group SearchFilter for LDAP accounts
# Default: None
#
# [*ldap_memberatr*]
# String. Attribute for MemberAttribute. Used with ldapfilter
# Default: None
#
# [*ldap_tls_enable*]
# Boolean. Enable TLS for the LDAP authentication
# Default: false
#
# [*ldap_tls_ca_cert_file*]
# String. LDAP TLS authentication: path to the CA certificate.
# Default: None
#
# [*ldap_tls_ca_cert_dir*]
# String. LDAP TLS authentication: path to the CA certificates.
# Default: None
#
# [*ldap_tls_client_cert_file*]
# String. LDAP TLS authentication: path to the tls client certificate
# Default: None
#
# [*ldap_tls_client_key_file*]
# String. LDAP TLS authentication: path to the tls client key
# Default: None
#
# [*verb*]
# Integer. Level of logging verbosity
# Default: 3
#
# [*cipher*]
# String, Cipher to use for packet encryption
# Default: AES-256-CBC
#
# [*tls_cipher*]
# String, TLS Ciphers to use
# Default: TLS-DHE-RSA-WITH-AES-256-GCM-SHA384:TLS-DHE-RSA-WITH-AES-256-CBC-SHA256:TLS-DHE-RSA-WITH-AES-128-GCM-SHA256:TLS-DHE-RSA-WITH-AES-128-CBC-SHA256
#
# [*persist_key*]
# Boolean. Try to retain access to resources that may be unavailable
# because of privilege downgrades
# Default: false
#
# [*persist_tun*]
# Boolean. Try to retain access to resources that may be unavailable
# because of privilege downgrades
# Default: false
#
# [*key_expire*]
# String. The number of days to certify the server certificate for
# Default: 3650
#
# [*ca_expire*]
# String. The number of days to certify the CA certificate for
# Default: 3650
#
# [*key_name*]
# String. Value for name_default variable in openssl.cnf and
# KEY_NAME in vars
# Default: None
#
# [*key_ou*]
# String. Value for organizationalUnitName_default variable in openssl.cnf
# and KEY_OU in vars
# Default: None
#
# [*key_cn*]
# String. Value for commonName_default variable in openssl.cnf
# and KEY_CN in vars
# Default: None
#
# [*tls_auth*]
# Boolean. Activates tls-auth to Add an additional layer of HMAC
# authentication on top of the TLS control channel to protect
# against DoS attacks.
# Default: false
#
# [*tls_server*]
# Boolean. If proto not tcp it lets you choose if the parameter
# tls-server is set or not.
# Default: false
#
# [*tls_client*]
# Boolean. Allows you to set this server up as a tls-client connection.
# Default: false
#
# [*server_poll_timeout*]
# Integer. Value for timeout before trying the next server.
# Default: undef
#
# [*ping_timer_rem*]
# Boolean. Do not start clocking timeouts until a remote peer connects.
# Default: false
#
# [*sndbuf*]
# Integer, Set the TCP/UDP socket send buffer size.
# Default: undef
#
# [*rcvbuf*]
# Integer, Set the TCP/UDP socket receive buffer size.
# Default: undef
#
# [*shared_ca*]
# String. Name of a openssl::ca resource to use config with
# Default: undef
#
# [*crl_verify*]
# Boolean. Enable CRL checking. Disabling this is not recommended.
# Default: true
#
# [*extca_enabled*]
# Boolean. Turn this on if you are using an external CA solution, like FreeIPA.
# Once enabled, you must configure the remaining extca_* parameters.
# Default: false
#
# [*extca_ca_cert_file*]
# String. External CA: Path to the CA certificate.
# Default: undef
#
# [*extca_ca_crl_file*]
# String. External CA: Path to the CA's CRL file.
# For FreeIPA-based CAs, CRLs expire every four hours, which means you
# may need your own solution for maintaining a local copy of your CA's CRL.
# Otherwise, you can set crl_verify to false (not recommended).
# Default: undef
#
# [*extca_server_cert_file*]
# String. External CA: Path to the external CA issued OpenVPN server certificate.
# Default: undef
#
# [*extca_server_key_file*]
# String. External CA: Path to the key file that corresponds to $extca_server_cert_file
# Default: undef
#
# [*extca_dh_file*]
# String. External CA: Path to your Dillie-Hellman parameter file. You will need to create one yourself.
# Make sure key-size matches the public key size of your CA-issued server certificate.
# Like this: openssl dhparam -out /path/to/dh.pem 2048
# Note: This is only required if you are enabling $tls_server.
# Default: undef
#
# [*extca_tls_auth_key_file*]
# String. External CA: If you are enabling $extca_enabled and $tls_auth, you will also need to create
# the tls-auth key file and specify its location here.
# The file can be created like this: openvpn --genkey --secret /path/to/ta.key
# Note: you will need to distribute this file to your clients as well.
#
# [*autostart*]
# Boolean. Enable autostart for server if openvpn::autostart_all is false.
# Default: undef
#
# [*ns_cert_type*]
# Boolean. Enable or disable use of ns-cert-type for the session. Generally
# used with client configuration
# Default: true
#
# [*nobind*]
# Boolean. Whether or not to bind to a specific port number.
# Default: false
#
# [*secret*]
# String. A pre-shared static key.
# Default: undef
#
# [*custom_options*]
# Hash of additional options to append to the configuration file.
#
# === Examples
#
# openvpn::client {
# 'my_user':
# server => 'contractors',
# remote_host => 'vpn.mycompany.com'
# }
#
# * Removal:
# Manual process right now, todo for the future
#
#
# === Authors
#
# * Raffael Schmid <mailto:raffael@yux.ch>
# * John Kinsella <mailto:jlkinsel@gmail.com>
# * Justin Lambert <mailto:jlambert@letsevenup.com>
#
# === License
#
# Copyright 2013 Raffael Schmid, <raffael@yux.ch>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
define openvpn::server(
$country = undef,
$province = undef,
$city = undef,
$organization = undef,
$email = undef,
$remote = undef,
$common_name = 'server',
$compression = 'comp-lzo',
$dev = 'tun0',
$user = 'nobody',
$group = false,
$ipp = false,
$duplicate_cn = false,
$local = $::ipaddress_eth0,
$logfile = false,
$port = '1194',
$portshare = undef,
$proto = 'tcp',
$status_version = '',
$status_log = "/var/log/openvpn/${name}-status.log",
$server = '',
$server_ipv6 = '',
$server_bridge = '',
$push = [],
$route = [],
$route_ipv6 = [],
$keepalive = '',
$fragment = false,
$ssl_key_size = 2048,
$topology = 'net30',
$c2c = false,
$tcp_nodelay = false,
$ccd_exclusive = false,
$pam = false,
$pam_module_arguments = 'login',
$management = false,
$management_ip = 'localhost',
$management_port = 7505,
$up = '',
$down = '',
$username_as_common_name = false,
$client_cert_not_required = false,
$ldap_enabled = false,
$ldap_server = '',
$ldap_binddn = '',
$ldap_bindpass = '',
$ldap_u_basedn = '',
$ldap_g_basedn = '',
$ldap_gmember = false,
$ldap_u_filter = '',
$ldap_g_filter = '',
$ldap_memberatr = '',
$ldap_tls_enable = false,
$ldap_tls_ca_cert_file = '',
$ldap_tls_ca_cert_dir = '',
$ldap_tls_client_cert_file = '',
$ldap_tls_client_key_file = '',
$ca_expire = 3650,
$key_expire = 3650,
$key_cn = '',
$key_name = '',
$key_ou = '',
$verb = '',
$cipher = 'AES-256-CBC',
$tls_cipher = 'TLS-DHE-RSA-WITH-AES-256-GCM-SHA384:TLS-DHE-RSA-WITH-AES-256-CBC-SHA256:TLS-DHE-RSA-WITH-AES-128-GCM-SHA256:TLS-DHE-RSA-WITH-AES-128-CBC-SHA256',
$persist_key = false,
$persist_tun = false,
$tls_auth = false,
$tls_server = false,
$tls_client = false,
$server_poll_timeout = undef,
$ping_timer_rem = false,
$sndbuf = undef,
$rcvbuf = undef,
$shared_ca = undef,
$crl_verify = true,
$extca_enabled = false,
$extca_ca_cert_file = undef,
$extca_ca_crl_file = undef,
$extca_server_cert_file = undef,
$extca_server_key_file = undef,
$extca_dh_file = undef,
$extca_tls_auth_key_file = undef,
$autostart = undef,
$ns_cert_type = true,
$nobind = false,
$secret = undef,
$custom_options = {},
) {
include openvpn
Class['openvpn::install']
-> Openvpn::Server[$name]
if $::openvpn::params::systemd and $::openvpn::params::namespecific_rclink {
fail("Using systemd and namespecific rclink's (BSD-style) is not allowed")
}
if $::openvpn::manage_service {
if $::openvpn::params::systemd {
$lnotify = Service["openvpn@${name}"]
} elsif $::openvpn::params::namespecific_rclink {
$lnotify = Service["openvpn_${name}"]
} else {
$lnotify = Service['openvpn']
Openvpn::Server[$name] -> Service['openvpn']
}
}
else {
$lnotify = undef
}
# Selection block to enable or disable tls-server flag
# Check if we want to run as a client or not
if !$tls_client {
if $tls_server and !$extca_enabled {
$real_tls_server = $tls_server
} elsif ($extca_enabled and $extca_dh_file) or (!$extca_enabled) {
$real_tls_server = $proto ? {
/tcp/ => true,
default => false
}
} else {
$real_tls_server = false
}
}
$pam_module_path = $::openvpn::params::pam_module_path
$etc_directory = $::openvpn::params::etc_directory
$root_group = $::openvpn::params::root_group
$group_to_set = $group ? {
false => $openvpn::params::group,
default => $group
}
if $shared_ca {
$ca_name = $shared_ca
} elsif !$extca_enabled {
$ca_name = $name
}
File {
group => $group_to_set,
}
file { "${etc_directory}/openvpn/${name}":
ensure => directory,
mode => '0750',
notify => $lnotify,
}
if $shared_ca {
ensure_resource(file, "${etc_directory}/openvpn/${ca_name}", {
ensure => directory,
mode => '0750',
})
}
if $extca_enabled {
# VPN Server or Client with external CA
if $extca_ca_cert_file == undef { fail('extca_ca_cert_file has to be specified in extca mode') }
if $extca_ca_crl_file == undef and $crl_verify and !$remote { fail('extca_ca_crl_file has to be specified in extca mode if crl_verify is enabled') }
if $extca_server_cert_file == undef { fail('extca_server_cert_file has to be specified in extca mode') }
if $extca_server_key_file == undef { fail('extca_server_key_file has to be specified in extca mode') }
if $extca_dh_file == undef and !$remote and $tls_server { fail('cant enable tls_server: missing extca_dh_file') }
if $extca_tls_auth_key_file == undef and !$remote and $tls_auth { fail('cant enable tls_auth: missing extca_tls_auth_key_file') }
}
if !$remote {
if !$shared_ca and !$extca_enabled {
# VPN Server Mode
if $country == undef {
fail('country has to be specified in server mode')
}
if $province == undef {
fail('province has to be specified in server mode')
}
if $city == undef { fail('city has to be specified in server mode') }
if $organization == undef {
fail('organization has to be specified in server mode')
}
if $email == undef { fail('email has to be specified in server mode') }
$ca_common_name = $common_name
::openvpn::ca { $name:
country => $country,
province => $province,
city => $city,
organization => $organization,
email => $email,
common_name => $common_name,
group => $group,
ssl_key_size => $ssl_key_size,
ca_expire => $ca_expire,
key_expire => $key_expire,
key_cn => $key_cn,
key_name => $key_name,
key_ou => $key_ou,
tls_auth => $tls_auth,
}
} elsif !$extca_enabled {
if !defined(Openvpn::Ca[$shared_ca]) {
fail("Openvpn::ca[${name}] is not defined for shared_ca")
}
$ca_common_name = getparam(Openvpn::Ca[$shared_ca], 'common_name')
} else {
$ca_common_name = undef
}
file {
[ "${etc_directory}/openvpn/${name}/auth",
"${etc_directory}/openvpn/${name}/client-configs",
"${etc_directory}/openvpn/${name}/download-configs" ]:
ensure => directory,
mode => '0750',
recurse => true,
}
} else {
# VPN Client Mode
$ca_common_name = $name
file { "${etc_directory}/openvpn/${name}/keys":
ensure => directory,
mode => '0750',
recurse => true,
}
}
if $::osfamily == 'Debian' and !$::openvpn::autostart_all and $autostart {
concat::fragment { "openvpn.default.autostart.${name}":
content => "AUTOSTART=\"\$AUTOSTART ${name}\"\n",
target => '/etc/default/openvpn',
order => '10',
}
}
file { "${etc_directory}/openvpn/${name}.conf":
owner => root,
group => $root_group,
mode => '0440',
content => template('openvpn/server.erb'),
notify => $lnotify,
}
$ensure = $secret ? {
undef => absent,
default => present,
}
file { "/etc/openvpn/${name}/keys/pre-shared.secret":
ensure => $ensure,
owner => root,
group => root,
mode => '0440',
content => $secret,
notify => $lnotify,
}
if $ldap_enabled == true {
file {
"${etc_directory}/openvpn/${name}/auth/ldap.conf":
ensure => present,
owner => root,
mode => '0400',
content => template('openvpn/ldap.erb'),
require => Package['openvpn-auth-ldap'],
}
}
if $::openvpn::params::systemd {
if $::openvpn::manage_service {
service { "openvpn@${name}":
ensure => running,
enable => true,
provider => 'systemd',
require => File["${etc_directory}/openvpn/${name}.conf"],
}
if !$extca_enabled and !$remote {
Openvpn::Ca[$ca_name] -> Service["openvpn@${name}"]
}
}
}
if $::openvpn::params::namespecific_rclink {
file { "/usr/local/etc/rc.d/openvpn_${name}":
ensure => link,
target => "${etc_directory}/rc.d/openvpn",
}
file { "/etc/rc.conf.d/openvpn_${name}":
owner => root,
group => $root_group,
mode => '0644',
content => template('openvpn/etc-rc.d-openvpn.erb'),
}
if $::openvpn::manage_service {
service { "openvpn_${name}":
ensure => running,
enable => true,
require => [
File["${etc_directory}/openvpn/${name}.conf"],
File["/usr/local/etc/rc.d/openvpn_${name}"],
],
}
if !extca_enabled and !$remote {
Openvpn::Ca[$ca_name] -> Service["openvpn_${name}"]
}
}
}
}