I have successfully used the OVPN file from my Merlin router to connect to my VPN, but I have some questions regarding the OVPN files.
When I look at examples of OVPN files on the net they are supposed to look like this:
The first time I exported an OVPN file it looked like that, but I have exported two others and they are much smaller and seem to not have the cert or key sections. They look like this:
Why is this? And with Merlin how do you create an OVPN file for a specific client that you have created keys for? How do you export separate OVPN files for client1, client2, client3, etc?
One other question - when I change one of the server settings do I have to recreate the OVPN file? I would think so as don't these ovpn files tell the clients what parameters to use?
When I look at examples of OVPN files on the net they are supposed to look like this:
Code:
client
dev tun
proto tcp
remote 1.2.3.4 1194
resolv-retry infinite
nobind
persist-key
persist-tun
ca [inline]
cert [inline]
key [inline]
verb 1
keepalive 10 900
inactive 3600
comp-lzo
<ca>
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
</ca>
<cert>
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
</cert>
<key>
-----BEGIN RSA PRIVATE KEY-----
...
-----END RSA PRIVATE KEY-----
</key>
The first time I exported an OVPN file it looked like that, but I have exported two others and they are much smaller and seem to not have the cert or key sections. They look like this:
Code:
client
dev tun
proto udp
remote myip.asuscomm.com 1194
float
comp-lzo adaptive
keepalive 15 60
auth-user-pass
<ca>
-----BEGIN CERTIFICATE-----
.........
-----END CERTIFICATE-----
</ca>
ns-cert-type server
resolv-retry infinite
nobind
Why is this? And with Merlin how do you create an OVPN file for a specific client that you have created keys for? How do you export separate OVPN files for client1, client2, client3, etc?
One other question - when I change one of the server settings do I have to recreate the OVPN file? I would think so as don't these ovpn files tell the clients what parameters to use?