Closed angelbarrera92 closed 3 years ago
Ciao team!
While creating a ovpn profile for a client using the command:
$ furyagent configure openvpn-client --client-name angel --config furyagent.yml
furyagent.yml example file:
furyagent.yml
storage: provider: s3 bucketName: ${bucketName} aws_access_key: ${aws_access_key} aws_secret_key: ${aws_secret_key} region: ${region} clusterComponent: openvpn: certDir: /etc/openvpn/pki servers: - my.server.ip.address
It will create an ovpn file with the port 1194 hardcoded. As it could be customized, we have to find a way to make it variable.
Maybe we can figure out it like:
my.server.ip.address
1194
my.server.ip.address:1194
my.server.ip.address:1195
1195
What do you think?
You're right and I like the proposed solution. If you have time to work on this issue, go for it! :shipit:
Ciao team!
While creating a ovpn profile for a client using the command:
furyagent.yml
example file:It will create an ovpn file with the port 1194 hardcoded. As it could be customized, we have to find a way to make it variable.
Maybe we can figure out it like:
my.server.ip.address
: IP:my.server.ip.address
port1194
(default)my.server.ip.address:1194
: IP:my.server.ip.address
port1194
my.server.ip.address:1195
: IP:my.server.ip.address
port1195
What do you think?