blob: 6f11795c7c4f1940f5f47b244944803138f906d4 [file] [log] [blame]
Zack Williamsbecdc0e2022-03-26 07:08:25 -07001# openvpn client.conf - {{ ansible_managed }}
2{#
3SPDX-FileCopyrightText: © 2022 Open Networking Foundation <support@opennetworking.org>
4SPDX-License-Identifier: Apache-2.0
5#}
6
7# security
8tls-client
9tls-version-min 1.3
10cipher AES-256-GCM
11auth SHA256
12
13# connection
14dev tun
15proto udp
16port 1194
17remote {{ openvpn_server_name }}
18
19# security
20remote-cert-tls server
21auth-nocache
22nobind
23persist-key
24persist-tun
25
26# logging
27verb 4
28mute 10
29
30# IP config
31topology subnet
32pull
33
34# CA certificates
35<ca>
36</ca>
37
38# TLS auth
39key-direction 1
40<tls-auth>
41</tls-auth>
42
43# client key
44<key>
45</key>
46
47# client cert
48<cert>
49</cert>