Category Archives: VPN

CentOS服务器上搭建VPN PPTP

7-1  检查服务器是否支持PPTP ———————————————–[成功] modprobe ppp-compress-18 && echo ok               //返回的结果为OK,表示成功通过 cat /dev/net/tun                                  //返回的结果为cat: /dev/net/tun: File descriptor in bad state,表示成功通过   7-2  安装PPP和iptables —————————————————[成功] yum install -y ppp iptables     7-3  安装安装PPTP ——————————————————–[成功] […]

OpenVZ的VPS开启TUNPPP教程

OpenVZ的VPS开启TUN/PPP教程 6-1 登陆VPS[https://vps.hosthatch.com/login.php],然后开启TUN和PPP,如图:   6-2 完成后,我们检查下TUN和PPP。 cat /dev/net/tun    //cat: /dev/net/tun: File descriptor in bad state cat /dev/ppp        //cat: /dev/ppp: Permission denied 6-3 悲催,PPP检测未通过,我们需要在母鸡上做相关的设定,首先,我们在后台查看到该VPS的ID,比如108. vzctl set 108 –devnodes net/tun:rw –save  vzctl set 108 –devices c:10:200:rw –save  vzctl set 108 –capability net_admin:on –save  vzctl exec 108 mkdir -p /dev/net  vzctl exec 108 chmod […]

CentOS7 安装 lotServer [加速]

CentOS7 安装 lotServer [加速] 第一步:安装BBR 1[https://www.centos.bz/2018/01/centos-7%E5%AE%89%E8%A3%85bbr%E6%95%99%E7%A8%8B/] CentOS 7.3 1-1. yum系统更新(更新到CentOS 7.3) 1yum update -y 1-2. 查看系统版本 1cat /etc/redhat-release 输出如下(release数值大于7.3即可),则表示已升级到7.3 1-3. 安装elrepo并升级内核 123rpm –import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm yum –enablerepo=elrepo-kernel install kernel-ml -y 正常情况下将输出如下信息: 1-4. 更新grub文件并重启(reboot后,ssh会断开,稍等一会儿重新连接) 123egrep ^menuentry /etc/grub2.cfg | cut -f 2 -d \’ grub2-set-default 0 reboot 1-5. 开机后查看内核是否已更换为4.9 1uname -r 输出如下内容则表示内核4.9已经启动了(数值大于4.9即可) CentOS 7.4 2-1. […]