Tech-Today
How to setup OpenVPN to access to a remote internal network from home
This write up will help you setup open vpn for remote access.
I'm assuming you're using a windows machine :-)
1. First download and install the OpenVPN client from: http://openvpn.net/index.php/open-source/downloads
2.) Ask for the ff files from your network admin:
a.) ca.crt
b.) yourprofile.crt
c.) yourprofile.key
d.) ta.key (optional - only required when tls-auth is activated on the server)
3.) Paste files from #2 to: C:\Program Files (x86)\OpenVPN\config, or to the config folder where you install openvpn.
4.) Now we need to edit the template.ovpn from C:\Program Files (x86)\OpenVPN\ and move it inside the config folder.
5.) I'll just enumerate the usual modifications:
>Remote server section:
remote my-server-1 1194
>SSL/TLS parms section:
ca ca.crt
cert yourprofile.crt
key yourprofile.key
>tls-auth section (if enable):
tls-auth ta.key 1
>compression section (if you want to enable comp-lzo
comp-lzo
That's all for the configuration section. Now let's run open vpn client from: C:\Program Files (x86)\OpenVPN\bin\openvpn-gui-1.0.3.exe. It will open an application in your system tray, right click on it and click connect.
If you have an error, just diagnose the logs from:
C:\Program Files (x86)\OpenVPN\log
Some problems you might encounter:
1.) TAP-Win32 Adapter - disabled.
>Go to Control Panel->Network and Sharing Center->Change adapter settings, and activate TAP-Win32 Adapter V9
2.) If you want to install in linux follow this guide:
https://help.ubuntu.com/10.04/serverguide/openvpn.html
-
How To Remove Search.conduit Malware In Firefox
This write-up will try to help those who are victims of conduit malware. I myself was a victim when I tried to install a downloader, if I remember correctly :-). I should stay with torrent but anyway here's what I've done that failed and that...
-
How To Add Global Ignore File In Git
This tutorial assumes that you already download and install GIT: http://git-scm.com/downloads. Note that I've done this in windows 7. Also please make sure that you add GIT_HOME/bin folder in your path. Steps: 1.) Create a new file C:\Program...
-
How To Setup An Openvpn Client On An Ubuntu Machine
This tutorial assumes that you are running on an Ubuntu 12.04 desktop. 'Coz I haven't done it in lower version :-) 1.) Go to System Settings and click Network. 2.) At the lower left section of the window, click the "+" sign. 3.) Choose VPN and...
-
Setup Cruisecontrol.net With Collabnet Edge
Recently I was searching for a Continuous Build Integration software for dotnet like what Jenkins do for java and I've found CruiseControl.NET (http://confluence.public.thoughtworks.org/display/CCNET). I've worked with my environment setup: -Windows...
-
Installing Sql Server Compact Edition 3.1 On Mobile Device (pocket Pc)
1.) Download the sqlce3.x installer, http://www.microsoft.com/downloads/details.aspx?FamilyId=E9AA3F8D-363D-49F3-AE89-64E1D149E09B&displaylang=en or http://www.microsoft.com/downloads/details.aspx?FamilyID=85e0c3ce-3fa1-453a-8ce9-af6ca20946c3&displaylang=en...
Tech-Today