从零到一教你部署Pritunl

Linux其他教程文章可以访问本人博客
https://blog.yangwn.top/index.php/archives.html

pritunl简介

#官方网站
https://pritunl.com/

#官方文档
https://docs.pritunl.com/docs

#Github项目地址
https://github.com/pritunl/pritunl

#客户端下载地址(也可以使用OpenVPN作为客户端)
https://client.pritunl.com/#install

#pritunl作用
pritunl是使用OpenVPN协议构建的分布式企业VPN服务器、具备web管理界面(分布式需要购买企业许可)

pritunl部署前准备

#此博文适用于Centos7.9以上的操作系统

#操作系统版本
cat /etc/centos-release
CentOS Linux release 7.9.2009 (Core)

#关闭防火墙和selinux
systemctl disable firewalld.service
systemctl stop firewalld.service
sed -i 's/^SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config

#关闭了selinux需要重启服务器生效
reboot

#epel、Base源
wget -O /tmp/system.sh https://index.swireb.cn/shell/system.sh && sh /tmp/system.sh


#Centos7系统pritunl、MongoDB源
tee /etc/yum.repos.d/pritunl.repo << EOF  
[pritunl]
name=Pritunl
baseurl=https://repo.pritunl.com/stable/yum/centos/7/
gpgcheck=0
enabled=1
[mongodb-4.4]
name=MongoDB
baseurl=https://repo.mongodb.org/yum/redhat/7/mongodb-org/4.4/x86_64/
gpgcheck=0
enabled=1
EOF

#Centos8系统pritunl、MongoDB源
tee /etc/yum.repos.d/pritunl.repo << EOF  
[pritunl]
name=Pritunl
baseurl=https://repo.pritunl.com/stable/yum/centos/8/
gpgcheck=0
enabled=1
[mongodb-4.4]
name=MongoDB
baseurl=https://repo.mongodb.org/yum/redhat/8/mongodb-org/4.4/x86_64/
gpgcheck=0
enabled=1
EOF

#建立yum源缓存
yum clean all && yum makecache

pritunl部署

#安装软件
yum -y install pritunl mongodb-org

#启动服务
systemctl start mongod pritunl
systemctl enable mongod pritunl

#初始化密钥
pritunl setup-key
5306c12e4ffb4eb5b8affd0ce0da87b4

#初始化用户
pritunl default-password
Administrator default password:
  username: "pritunl"
  password: "SLIsHNDDjr1l"

访问pritunl

#访问地址
http://IP

#用户名和密码
pritunl
SLIsHNDDjr1l

image-20210304193753107

image-20210304193903332

image-20210304200902399

使用pritunl

image-20210304200745578

image-20210304201143403

image-20210304201529475

image-20210304201716695

image-20210304201857885

image-20210304201914142

image-20210304202112782

image-20210304202222529

image-20210304202445319

猜你喜欢

转载自blog.csdn.net/qq_41938046/article/details/114377136