IPsec/L2TP VPN Auto Install Script for CentOS/RHEL 第一步,確認已經執行 yum -y update 安裝 yum -y wget 執行 wget https://gist.github.com/hwdsl2/e9a78a50e300d12ae195/raw/85f8ca3ead446d8fb84143688000835ffa7e1d62/vpnsetup.sh 執行 chmod +x…
Linux
在Ubuntu 14 安裝PPTP VPN 筆記
主機端設定: 首先請先更新套件列表 sudo apt-get update 安裝PPTP VPN Server sudo apt-get install pptpd 編輯PPTP設定文件 sudo nano /etc/pptpd.conf 在設定檔最下方把這兩排字的註解(#)刪掉 localip 192.168.0.1 remoteip…
Public DNS 2024
Public DNS services with DoH/DoT/DoQ support
Setting up PPTP VPN server on a CentOS OpenVZ VPS
There are mainly 3 types of VPN servers: Point-to-Point Tunneling Protocol (PPTP), Layer 2 Tunneling Protocol (L2TP) andOpenVPN. In this tutorial I use PPTP…
Linux命令行多线程、断点续传下载工具
##################################################### ##如有转载,请务必保留本文链接及版权信息 ##欢迎广大运维同仁一起交流linux/unix网站运维技术! ##QQ:335623998 ##E-mail:[email protected] ##博客: http://dreamway.blog.51cto.com/ ##weibo:http://weibo.com/zhaixiangpan ##################################################### 运维工作中常会在linux命令行下载外网文件或内网进行大文件传输,经常使用的文本下载工具wget、curl,今天给大家推荐支持Linux命令行多线程、断点续传下载工具axel和myget。 1、系统环境 # lsb_release -a LSB Version: :core-4.0-amd64:core-4.0-ia32:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-ia32:printing-4.0-noarch Distributor ID: CentOS Description: …
Install and Run UnixBench on CentOS
To install and run UnixBench, just do the following (for CentOS): # yum install gcc gcc-c++ make libXext-devel # yum groupinstall…
CentOS6.4下Yum安装Mysql和JDK和tomcat
一、首先使用Yum list available xxx命令罗列出远程仓库里面可以安装的包 1、列出可以安装的java包 yum list available java* 输出如下: 2、列出可以安装的tomcat包 yum list available tomcat* 输出如下: 3、列出可以安装的mysql包 yum list available…
Linux常用服务一键安装包
一键安装:LNMP,基于yum平台。安装快速、标准配置、软件更新方便。CentOS 6 专用 1 yum install wget –y;wget huzs.net/soft/lnmp.sh;sh lnmp.sh [支持32、64位 | nginx(官方源)稳定版 | PHP 5.3.3(系统源) | MySQL 5.1.73(系统源)] CentOS…
OpenVPN 2.3.1 on Centos 6
It is recommended to install epel repository first Make sure you have these packages installed: yum install gcc make rpm-build…
CentOS VPS搭建OpenVPN全程实录
由于有些网路地区都会阻挡pptp 或 l2tp服务,因此我们需要一个比较安全又不会被阻挡的VPN环境,因此我决定用OPENVpn 等下教程的软体要下载,都从这里来源 OpenVPN http://openvpn.net/index.php/open-source/downloads.html LZO http://www.oberhumer.com/opensource/lzo/download/ OpenSSL http://www.openssl.org/ 1,安装基础软件包 yum install openssl openssl-devel pam pam-devel 2, 安装Lzo wget…