OpenVPN for wtware

Have got any interesting solutions and ideas for problems with terminal servers? Looking for any solution?
Post Reply
aka
SUPPORT
SUPPORT
Posts: 939
Joined: Fri Dec 03, 2004 2:05 pm
Contact:

OpenVPN for wtware

Post by aka »

1. Download Windows Installer from http://openvpn.net/index.php/download.html.
2. Install to terminal server. During installation tick too checks:
openvpn-keygen.png
openvpn-keygen.png (62.47 KiB) Viewed 27598 times
3. Run command line as administrator:
v4.png
v4.png (57.42 KiB) Viewed 27598 times
4. What should be entered is highlighted by red color:
v2.png
v2.png (83.63 KiB) Viewed 27598 times
5. Create configuration file "C:\Program Files (x86)\OpenVPN\config\wtware.ovpn" :

Code: Select all

dev tun

ca   "C:/Program Files (x86)/OpenVPN/easy-rsa/keys/ca.crt"
cert "C:/Program Files (x86)/OpenVPN/easy-rsa/keys/server.crt"
key  "C:/Program Files (x86)/OpenVPN/easy-rsa/keys/server.key"
dh   "C:/Program Files (x86)/OpenVPN/easy-rsa/keys/dh1024.pem"

server 10.8.0.0 255.255.255.0
client-to-client
comp-lzo
For this configuration file terminal server IP will be IP 10.8.0.1. This IP you should specify in Wtware configuration file server= parameter. If terminal server has another IP, don't forget to turn on routing on server with openvpn and specify route to terminal on terminal server.

6. Run command line as administrator, type:
openvpn-install.png
openvpn-install.png (22.46 KiB) Viewed 27598 times
Red frame - the command to run.
Blue frame - this text is printed before terminal connects.
Green frame - this text is printed after terminal connects.

Items 1-6 you are to perform once, during server configuration. Then create keys for terminal. Make sure that terminal connects. Then restart server. Automatically during server boot openvpn service will start for every file with .ovpn extension from "C:\Program Files (x86)\OpenVPN\config\" directory.

You should create keys for every terminal connection. Every terminal has it's own personal keys. It's case sensitive! For example to create keys for terminal with 00.0C.29.DF.50.E3 MAC-address:
openvpn-install.png
openvpn-install.png (22.46 KiB) Viewed 27598 times
Ready THREE keys files:
  • ca.crt
  • 00.0C.29.DF.50.E3.crt
  • 00.0C.29.DF.50.E3.key
You can find them in C:\Program Files (x86)\OpenVPN\easy-rsa\keys\
Attachments
v1.png
v1.png (22.8 KiB) Viewed 27598 times
Post Reply