搭建pptp vpn
PPTP(Point to Point Tunneling Protocol),即点对点隧道协议。该协议是在PPP协议的基础上开发的一种新的增强型安全协议,支持多协议虚拟专用网(VPN),可以通过密码验证协议(PAP)、可扩展认证协议(EAP)等方法增强安全性。可以使远程用户通过拨入ISP、通过直接连接Internet或其他网络安全地访问企业网。
#设置内核转发
vim /etc/sysctl.conf
net.ipv4.ip_forward = 1
#使配置生效
sysctl -p
#安装pptp
yum -y install pptpd
#配置
vim /etc/pptpd.conf
#本地服务器的公网ip
localip 1.1.1.1
#连接到服务器进行分配的远程主机ip范围
remoteip 192.168.11.11-20
vim /etc/ppp/chap-secrets
# Secrets for authentication using CHAP
# client server secret IP addresses
jjy * 123456 #密码 *
#启动
systemctl start pptpd