广告

本站里的文章大部分经过自行整理与测试

2017年3月31日星期五

Linux - ShadowVPN


自己搭建 VPN 服务..

1. 服务端安装与启动

$ su

$ apt-get update
$ apt-get install build-essential automake libtool git
$ git clone https://github.com/mysqto/ShadowVPN.git

$ cd ShadowVPN
$ git submodule update --init
$ ./autogen.sh
$ ./configure --enable-static --sysconfdir=/etc
$ make && make install

修改  /etc/shadowvpn/server.conf 中的 port, password

$ shadowvpn -c /etc/shadowvpn/server.conf -s start

2. 客户端安装与启动

安装方法同服务端, 不过配置文件要
修改  /etc/shadowvpn/client.conf, 将其中的 server 改为以上的 IP, port, password

$ shadowvpn -c /etc/shadowvpn/client.conf -s start

没有评论:

发表评论