├── OpenVPN_centos7.sh ├── data ├── ca.crt ├── checkpsw.sh ├── client.zip ├── dh.pem ├── easy-rsa │ ├── .gitignore │ ├── .travis.yml │ ├── COPYING.md │ ├── ChangeLog │ ├── KNOWN_ISSUES │ ├── Licensing │ │ ├── gpl-2.0.txt │ │ └── mktemp.txt │ ├── README.md │ ├── README.quickstart.md │ ├── build │ │ ├── Building.md │ │ └── build-dist.sh │ ├── distro │ │ ├── README │ │ └── windows │ │ │ ├── EasyRSA-Start.bat │ │ │ ├── Licensing │ │ │ └── mksh-Win32.txt │ │ │ ├── README-Windows.txt │ │ │ └── bin │ │ │ ├── awk.exe │ │ │ ├── cat.exe │ │ │ ├── cp.exe │ │ │ ├── diff.exe │ │ │ ├── easyrsa-shell-init.sh │ │ │ ├── grep.exe │ │ │ ├── ls.exe │ │ │ ├── md5sum.exe │ │ │ ├── mkdir.exe │ │ │ ├── mktemp.exe │ │ │ ├── mv.exe │ │ │ ├── printf.exe │ │ │ ├── rm.exe │ │ │ ├── sed.exe │ │ │ ├── sh.exe │ │ │ └── which.exe │ ├── doc │ │ ├── EasyRSA-Advanced.md │ │ ├── EasyRSA-Readme.md │ │ ├── EasyRSA-Upgrade-Notes.md │ │ ├── Hacking.md │ │ ├── Intro-To-PKI.md │ │ └── TODO │ ├── easyrsa3 │ │ ├── easyrsa │ │ ├── openssl-easyrsa.cnf │ │ ├── vars.example │ │ └── x509-types │ │ │ ├── COMMON │ │ │ ├── ca │ │ │ ├── client │ │ │ ├── code-signing │ │ │ └── server │ ├── op_test.sh │ └── release-keys │ │ └── README.md ├── psw-file ├── server.conf ├── server.crt ├── server.key └── ta.key └── readme.txt /OpenVPN_centos7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/OpenVPN_centos7.sh -------------------------------------------------------------------------------- /data/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/ca.crt -------------------------------------------------------------------------------- /data/checkpsw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/checkpsw.sh -------------------------------------------------------------------------------- /data/client.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/client.zip -------------------------------------------------------------------------------- /data/dh.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/dh.pem -------------------------------------------------------------------------------- /data/easy-rsa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/.gitignore -------------------------------------------------------------------------------- /data/easy-rsa/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/.travis.yml -------------------------------------------------------------------------------- /data/easy-rsa/COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/COPYING.md -------------------------------------------------------------------------------- /data/easy-rsa/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/ChangeLog -------------------------------------------------------------------------------- /data/easy-rsa/KNOWN_ISSUES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/KNOWN_ISSUES -------------------------------------------------------------------------------- /data/easy-rsa/Licensing/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/Licensing/gpl-2.0.txt -------------------------------------------------------------------------------- /data/easy-rsa/Licensing/mktemp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/Licensing/mktemp.txt -------------------------------------------------------------------------------- /data/easy-rsa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/README.md -------------------------------------------------------------------------------- /data/easy-rsa/README.quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/README.quickstart.md -------------------------------------------------------------------------------- /data/easy-rsa/build/Building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/build/Building.md -------------------------------------------------------------------------------- /data/easy-rsa/build/build-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/build/build-dist.sh -------------------------------------------------------------------------------- /data/easy-rsa/distro/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/README -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/EasyRSA-Start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/EasyRSA-Start.bat -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/Licensing/mksh-Win32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/Licensing/mksh-Win32.txt -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/README-Windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/README-Windows.txt -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/bin/awk.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/bin/awk.exe -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/bin/cat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/bin/cat.exe -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/bin/cp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/bin/cp.exe -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/bin/diff.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/bin/diff.exe -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/bin/easyrsa-shell-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/bin/easyrsa-shell-init.sh -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/bin/grep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/bin/grep.exe -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/bin/ls.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/bin/ls.exe -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/bin/md5sum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/bin/md5sum.exe -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/bin/mkdir.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/bin/mkdir.exe -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/bin/mktemp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/bin/mktemp.exe -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/bin/mv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/bin/mv.exe -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/bin/printf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/bin/printf.exe -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/bin/rm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/bin/rm.exe -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/bin/sed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/bin/sed.exe -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/bin/sh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/bin/sh.exe -------------------------------------------------------------------------------- /data/easy-rsa/distro/windows/bin/which.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/distro/windows/bin/which.exe -------------------------------------------------------------------------------- /data/easy-rsa/doc/EasyRSA-Advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/doc/EasyRSA-Advanced.md -------------------------------------------------------------------------------- /data/easy-rsa/doc/EasyRSA-Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/doc/EasyRSA-Readme.md -------------------------------------------------------------------------------- /data/easy-rsa/doc/EasyRSA-Upgrade-Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/doc/EasyRSA-Upgrade-Notes.md -------------------------------------------------------------------------------- /data/easy-rsa/doc/Hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/doc/Hacking.md -------------------------------------------------------------------------------- /data/easy-rsa/doc/Intro-To-PKI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/doc/Intro-To-PKI.md -------------------------------------------------------------------------------- /data/easy-rsa/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/doc/TODO -------------------------------------------------------------------------------- /data/easy-rsa/easyrsa3/easyrsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/easyrsa3/easyrsa -------------------------------------------------------------------------------- /data/easy-rsa/easyrsa3/openssl-easyrsa.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/easyrsa3/openssl-easyrsa.cnf -------------------------------------------------------------------------------- /data/easy-rsa/easyrsa3/vars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/easyrsa3/vars.example -------------------------------------------------------------------------------- /data/easy-rsa/easyrsa3/x509-types/COMMON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/easyrsa3/x509-types/COMMON -------------------------------------------------------------------------------- /data/easy-rsa/easyrsa3/x509-types/ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/easyrsa3/x509-types/ca -------------------------------------------------------------------------------- /data/easy-rsa/easyrsa3/x509-types/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/easyrsa3/x509-types/client -------------------------------------------------------------------------------- /data/easy-rsa/easyrsa3/x509-types/code-signing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/easyrsa3/x509-types/code-signing -------------------------------------------------------------------------------- /data/easy-rsa/easyrsa3/x509-types/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/easyrsa3/x509-types/server -------------------------------------------------------------------------------- /data/easy-rsa/op_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/op_test.sh -------------------------------------------------------------------------------- /data/easy-rsa/release-keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/easy-rsa/release-keys/README.md -------------------------------------------------------------------------------- /data/psw-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/psw-file -------------------------------------------------------------------------------- /data/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/server.conf -------------------------------------------------------------------------------- /data/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/server.crt -------------------------------------------------------------------------------- /data/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/server.key -------------------------------------------------------------------------------- /data/ta.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/data/ta.key -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiguang0920/openvpn/HEAD/readme.txt --------------------------------------------------------------------------------