Configure OpenVPN client on Windows

How to configure OpenVPN client on Windows:

First download and install the client.

Then we'll need the client files generated on the OpenVPN server: server.crt, ca.crt, client1.crt, client1.key
Copy the files to OpenVPN working directory, for example: C:\Program Files\OpenVPN\config\

Now we need to create config file. Create text document client1 and add configuration strings, for example:

client 
 
dev tun
proto udp
remote 10.10.0.1 1194
resolv-retry infinite
nobind
persist-key
persist-tun
ca ca.crt
cert client1.crt
key client1.key
comp-lzo
verb 4

Extended description of all the strings is here

Save the file with extention .ovpn (client1.ovpn). Config file must be in the same directory as files server.crt, ca.crt, client1.crt, client1.key are.

Run OpenVPN GUI with administrator rights. Icon should appear in Windows tray and all options are there.

 

Was this answer helpful?

 Print this Article

Also Read

FFmpeg on Centos 6

Install repo and ffmpeg # rpm -ihv...

Changing mac address in VMware

In Centos: 1. Edit old mac HWADDR=XX:XX:XX:XX:XX:XX in the file...

Dovecot /postfix with Roundcube WebUI

Following guide was tested on CentOS 6. Install epel repository: wget...

NFS on Centos 6

How to install NFS on Centos 6 yum install nfs-utils nfs-utils-lib Set nfs to start...

Oracle 11g EX on Centos 6 x64 vps

We describe how to install Oracle 11g Express on Centos 6 x86_64 Openvz VPS. First of all you...