OpenVPN简记

一、Linux docker部署

拉取镜像
docker pull kylemanna/open:2.4

创建配置文件
docker run -v /opt/open:/etc/open --rm kylemanna/open:2.4 o_genconfig -u tcp://144.145.25.12:1194

生成证书
docker run -v /opt/open:/etc/open --rm -it kylemanna/open:2.4 o_initpki

导出无密码证书
docker run -v /opt/open:/etc/open --rm -it kylemanna/open:2.4 easyrsa build-client-full jast nopass > /home/client.o

导入到windows的conf文件夹目录中,点击客户端连接。

报错:
server pushed compression settings that are not allowed and will result in a non-working connection. See also allow-compression in the manual.
解决方案:
	在你的OpenVPN配置文件中添加或修改以下行  
	allow-compression yes

你可能感兴趣的:(容器,java)