自创open vp n windows步骤
Easy Windows Guide¶
This page contains a no-frills guide to getting OpenVPN up and running on a Windows server and client(s). For a more detailed understanding of setting up OpenVPN and its advanced features, see the HOWTO page.
Table of contents¶
6.2 Port Forwarding
6.5 Security Tips
Downloading and Installing OpenVPN¶
- Download the installer from here and run it on the server computer.
- Install OpenVPN on each client. (This step can be skipped for now and done at any convenient time)
Certificates and Keys¶
Preparatory Steps¶
- Navigate to the C:\Program Files\OpenVPN\easy-rsa folder in the command prompt:
- Press Windows Key + R
- Type "cmd.exe" and press Enter.
- cmd.exe
- Navigate to the correct folder:
- cd "C:\Program Files\OpenVPN\easy-rsa"
- Initialize the OpenVPN configuration:
- init-config
- NOTE: Only run init-config once, during installation.
- Open the vars.bat file in a text editor:
- notepad vars.bat
- Edit the following lines in vars.bat, replacing "US", "CA," etc. with your company's information:
- set KEY_COUNTRY=US
- set KEY_PROVINCE=CA
- set KEY_CITY=SanFrancisco
- set KEY_ORG=OpenVPN
- set KEY_EMAIL=mail@host.domain
- set KEY_COUNTRY=US
- Save the file and exit notepad.
- Run the following commands:
- vars
- clean-all
Building Certificates and Keys¶
- The certificate authority (CA) certificate and key:
- build-ca
- When prompted, enter your country, etc. These will have default values, which appear in brackets. For your "Common Name," a good choice is to pick a name to identify your company's Certificate Authority. For example, "OpenVPN-CA":
- Country Name (2 letter code) [US]:
- State or Province Name (full name) [CA]:
- Locality Name (eg, city) [SanFrancisco]:
- Organization Name (eg, company) [OpenVPN]:
- Organizational Unit Name (eg, section) []:
- Common Name (eg, your name or your server's hostname) []:OpenVPN-CA
- Email Address [mail@host.domain]:
- Country Name (2 letter code) [US]:
- The server certificate and key:
- build-key-server server
- When prompted, enter the "Common Name" as "server"
- When prompted to sign the certificate, enter "y"
- When prompted to commit, enter "y"
- Client certificates and keys:
- For each client, choose a name to identify that computer, such as "mike-laptop" in this example.
- build-key mike-laptop
- When prompted, enter the "Common Name" as the name you have chosen (e.g. "mike-laptop")
- Repeat this step for each client computer that will connect to the VPN.
- Generate Diffie Hellman parameters (This is necessary to set up the encryption)
- build-dh
Configuration Files¶
- Find the sample configuration files:
- Start Menu -> All Programs -> OpenVPN -> OpenVPN Sample Configuration Files
Server Config File¶
- Open server.ovpn
- Find the following lines:
- ca ca.crt
- cert server.crt
- key server.key
- dh dh1024.pem
- ca ca.crt
- Edit them as follows:
- ca "C:\\Program Files\\OpenVPN\\config\\ca.crt"
- cert "C:\\Program Files\\OpenVPN\\config\\server.crt"
- key "C:\\Program Files\\OpenVPN\\config\\server.key"
- dh "C:\\Program Files\\OpenVPN\\config\\dh1024.pem"
- ca "C:\\Program Files\\OpenVPN\\config\\ca.crt"
- Save the file as C:\Program Files\OpenVPN\easy-rsa\server.ovpn
Client Config Files¶
This is similar to the server configuration
- Open client.ovpn
- Find the following lines:
- ca ca.crt
- cert client.crt
- key client.key
- ca ca.crt
- Edit them as follows:
- ca "C:\\Program Files\\OpenVPN\\config\\ca.crt"
- cert "C:\\Program Files\\OpenVPN\\config\\mike-laptop.crt"
- key "C:\\Program Files\\OpenVPN\\config\\mike-laptop.key"
- Notice that the name of the client certificate and key files depends upon the Common Name of each client.
- ca "C:\\Program Files\\OpenVPN\\config\\ca.crt"
- Edit the following line, replacing "my-server-1" with your server's public Internet IP Address or Domain Name. If you need help, see Static Internet IP below.
- remote my-server-1 1194
- Save the file as C:\Program Files\OpenVPN\easy-rsa\mike-laptop.ovpn (in this example. Each client will need a different, but similar, config file depending upon that client's Common Name.)
Copying the Server and Client Files to Their Appropriate Directories¶
- Copy these files from C:\Program Files\OpenVPN\easy-rsa\ to C:\Program Files\OpenVPN\config\ on the server:
- ca.crt
- dh1024.pem
- server.crt
- server.key
- server.ovpn
- ca.crt
- Copy these files from C:\Program Files\OpenVPN\easy-rsa\ on the server to C:\Program Files\OpenVPN\config\ on each client (mike-laptop, in this example):
- ca.crt
- mike-laptop.crt
- mike-laptop.key
- mike-laptop.ovpn
- ca.crt
Starting OpenVPN¶
- On both client and server, run OpenVPN from:
- Start Menu -> All Programs -> OpenVPN -> OpenVPN GUI
- Double click the icon which shows up in the system tray to initiate the connection. The resulting dialog should close upon a successful start.
Further Considerations / Troubleshooting¶
Firewall Configuration¶
If you have connection problems, make sure to set a rule on your server's firewall allowing incoming traffic on UDP port 1194.
Port Forwarding¶
If your server is behind a router, you will need to forward the port chosen for OpenVPN (in this example UDP 1194) to the server. Consult your router's documentation for details on this.
To set up port forwarding, you will likely need to set up the server with a static local IP address instead of the default dynamic (changing) IP. Instructions for Windows XP may be found here. Make sure to choose a static IP address that is not in the range your router might assign as a dynamic IP, but is within the router's subnet (usually 192.168.0.xxx , 10.0.0.xxx , or similar).
Static Internet IP¶
Your server will need to have a static internet IP or Domain Name to be accessible over the long term. One solution is to sign up for an account with DynDNS and install the DynDNS Updater on your server. When signing up you will determine the static Domain Name of your server. (For example, "myserver.dyndns.org") You will use this Domain Name in the client configuration files as part of the "remote" directive.
Running OpenVPN as a Service¶
Running OpenVPN as a service will allow:
- OpenVPN to be run from a non-administrator account.
- OpenVPN to be started automatically on system startup. This is often preferred on the server machine, as well as any machines which will be constantly connected to the server.
- Run the Windows Service administrative tool:
- Press Windows Key + R
- Type "services.msc" and press Enter.
- services.msc
- Find the OpenVPN service, and set its Startup Type to "automatic."
- Optionally, start the service now.
Security Tips¶
- Transmit all needed files to the client computers using a secure means such as a USB drive (email is not always a secure means).
- Choose a port other than UDP 1194, and replace the port number wherever this guide mentions UDP port 1194.
Cloning OpenVPN Servers¶
If including OpenVPN in a cloned server build you will find that all servers will have the same MAC address for the TAP device. This will cause packet loss across the network. Standard methods of changing the IP address from scripts do not work on the TAP device, to resolve this delete and recreate the TAP device using the scripts included with OpenVPN:
- C:\Program Files\OpenVPN\bin\deltapall
- C:\Program Files\OpenVPN\bin\addtap
You will then have to rename the connection to match the entry in the config file.
Download in other formats:
自创open vp n windows步骤的更多相关文章
- 用 Windows Server 2019 搭建求生之路服务器
准备工作 要搭建一台 Windows Server 的求生之路服务器需要做以下几点前置工作: 购买一台云服务器,如腾讯云: 下载 SteamCMD: 安装 SourceMod.MateMod.L4dT ...
- XMind8激活为Pro教程 - Windows&Mac
本教程用于激活XMind(思维导图制作软件),仅限于个人学习使用. 目前本人激活的版本是xmind8-up6版本,其他更高版本不保证能适用. Windows步骤: 1.英文官网下载客户端并安装(不能用 ...
- Selenium+TestNG+Maven+Jenkins+SVN(转载)
转载自:https://blog.csdn.net/u014202301/article/details/72354069 一. 创建Maven项目,下载Selenium和TestNG的依赖(依赖可以 ...
- Git使用手册【转】
转自:https://www.jianshu.com/p/e32a8e7ca93b 目录: Git是什么 基本概念 Git的诞生 Git的安装与配置 创建版本库 Git操作略览 远程仓库:git的杀招 ...
- 用VC资源动态链接库解决国际化问题
http://daixinghe.blog.163.com/blog/static/1843615920097181952979/ 随着计算机应用的普及,应用软件跨国使用越来越频繁,如何实现应用软件的 ...
- Zabbix安装与简单配置
目录 0. 前言 1. 安装 1.1 准备安装环境 1.1.1 下载安装包 1.1.2 修改文件配置 1.2 开始安装 2. 实验环境 2.1 简易拓扑图 2.2 基本配置 3. 配置 0. 前言 不 ...
- (一)Protobuf的Java使用
学习使用Protobuf,创建java文件 windows : 步骤一:两个文件:proto.exe, protobuf-Java-2.4.1.jar 步骤二:建立一个工程CreateProtoBu ...
- linux入门基础_centos(二)--fdisk分区
课时10 使用fdisk进行磁盘管理 fdisk是来自IBM的老牌分区工具,支持绝大多数的操作系统,几乎所有的linux的发行版本都装有fdisk,包括在linux的rescu ...
- C语言基础--结构体对齐,位域,联合体
结构体对齐 1--结构体对齐的原因与意义 许多计算机系统对基本数据类型的可允许地址做出了一些限制,要求某种类型的对象的地址必须是某个值K(通常是2,4,8)的倍数,而这个k则被称为该数据类型的对齐模数 ...
随机推荐
- (转)zabbix之生产案例
原文: https://www.abcdocker.com/abcdocker/category/zabbix/ 原文: https://chegva.com/1170.html
- jQuery对象扩展方法(Extend)深度解析
1.这几天在写自己的Js工具类库,所以在编写对象扩展方法,参考了jQuery的对象扩展方法,在编写该方法前,需要掌握js深拷贝和浅拷贝的相关知识,下面是jQuery3.2.1版本对象扩展方法的源码: ...
- mongo 与 传统mysql语法对比
MongoDB语法 MySql语法 db.test.find({'name':'foobar'})<==> select ...
- ehcache 集群使用 rmi方式 有图有真想
来源:http://www.tuicool.com/articles/MJzYZbR ehcache 有几种方式集群 ,rmi,jgroup还有jms:这里讲一下ehcache的使用 ehcache ...
- AutoMapper控件
1.下载AutoMapper控件. 2.定义类,实现Profile. 3.在定义类的构造方法中使用如下代码进行转换 // 1.匹配,o,t代表TDestination;s代表TSource,返回TDe ...
- Windump 的用法/Windump 是什么?
Windump Windump是Windows环境下一款经典的网络协议分析软件,其Unix版本名称为Tcpdump.它可以捕捉网络上两台电脑之间所有的数据包,供网络管理员/入侵分析员做进一步流量分 ...
- ubuntu下搭建ecshop
最近在看ecmobile的开源项目,可以从http://www.ecmobile.cn/agreement.html下载源码或者从github上下载源码https://github.com/G ...
- php中的namespace 命名空间
名字解释: namespace(命名空间),命名空间是从php5.3开始支持的功能.作用主要有两个:1.可以避免类名取得过长.2.当在多个框架配合使用时,同名的类之间不会冲突. 命名空间,看名字就知道 ...
- MongoDB 从入门到精通
1,安装并启动数据库 从官网(www.mongodb.org/downloads)下载一个适合你平台的版本,我的系统是win7 64位的,下载文件也就10几M,将下载的文件解压放到任何目录 ...
- 关于vue.js父子组件数据传递
vue.js中使用props down,events up的原则进行父子组件间的通信,先来记录下props down,看个例子: <div id="app2"> < ...