feat: add support for TLSAuth to Openvpn - #2969
Merged
Merged
Conversation
Author
|
related #2846 |
Collaborator
|
Please provide additional details regarding the communication test with the actual server. |
Author
I have tested the connection using my company's OpenVPN server, and the communication works without problem with the following config: - name: openvpn
type: openvpn
server: xxx.xxx.xxx.xxx
port: 1194
proto: udp
cipher: AES-256-GCM
udp: true
comp-lzo: "yes"
ca: |
...
cert: |
...
key: |
...
tls-auth: |
...
key-direction: "1"
peer-info:
IV_PROTO: "8094"
UV_UUID: xxxx
...The server is not under my control, so I cannot perform further testing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
tls-authsupport to OpenVPN outbound.Considering the value of
key-directioncan be1,0, or empty, this field is set to a string type instead of an int.