This repository has been archived by the owner on Jun 27, 2022. It is now read-only.
Releases: dpb587/openvpn-bosh-release
Releases · dpb587/openvpn-bosh-release
v4.2.0
v4.1.0
v4.0.0
Please review these changes carefully - many properties and defaults have changed which may impact connectivity. While breaking changes are generally avoided, the goals of this release necessitated some significant changes. Those goals were: utilize modern BOSH features, encourage secure defaults, avoid duplicating features, and simplify configuration requirements.
Breaking Changes
- properties are no longer prefixed with
openvpn
namespace - the
openvpn
job will no longer act as a client (see the newopenvpn-client
job) - the
openvpn
job improves security defaults (either explicitly use older values, or upgrade clients as necessary)cipher
is nowAES-256-CBC
(this must be in sync with clients; previous defaultBF-CBC
)tls_version_min
is now1.2
(requires clients 2.3.3+; previous default1.0
)
- custom iptables rules are no longer managed (use the
iptables
job of networking release instead) - server and client certificates are now configured with the
tls_server
andtls_client
properties, respectively (previously viaca_crt
,certificate
, andprivate_key
properties) - certificate revocation lists for
openvpn
are now configured with thetls_crl
property (previously viacrl_pem
property)
New Features
- UDP is now supported (see
protocol
property ofopenvpn
) - the openvpn
compress
option is now supported (seecompress
property ofopenvpn
) - the openvpn
tls-crypt
option is now supported (seetls_crypt
property ofopenvpn
) - new
extra_configs
property ofopenvpn
andopenvpn-client
(similar toextra_config
, but accepts an array of openvpn directives) - new
device
property is now supported for explicit virtual network device usage - certificate-related properties can now be dynamically generated
Development & Tooling
- git version tags now refer to the commit a release was created from (previously the commit which finalized the release was used)