Skip to content

Commit

Permalink
hotfix(fastestvpn): re-fix Openvpn configuration
Browse files Browse the repository at this point in the history
- add `auth sha256` option
- remove `remote-cert-tls server` option
  • Loading branch information
qdm12 committed Jun 26, 2022
1 parent f5e0a47 commit fcee209
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/provider/fastestvpn/openvpnconf.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ func (p *Provider) OpenVPNConfig(connection models.Connection,
settings settings.OpenVPN) (lines []string) {
//nolint:gomnd
providerSettings := utils.OpenVPNProviderSettings{
RemoteCertTLS: true,
AuthUserPass: true,
AuthUserPass: true,
Ciphers: []string{
openvpn.AES256cbc,
},
Auth: openvpn.SHA256,
MssFix: 1450,
TLSCipher: "TLS-DHE-RSA-WITH-AES-256-GCM-SHA384:TLS-DHE-RSA-WITH-AES-256-CBC-SHA256:TLS-DHE-RSA-WITH-CAMELLIA-256-CBC-SHA:TLS-DHE-RSA-WITH-AES-256-CBC-SHA:TLS-RSA-WITH-CAMELLIA-256-CBC-SHA:TLS-RSA-WITH-AES-256-CBC-SHA", //nolint:lll
AuthToken: true,
Expand Down

0 comments on commit fcee209

Please sign in to comment.