IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> bash练习17 编写脚本安装frp反向代理软件的服务器端 -> 正文阅读

[系统运维]bash练习17 编写脚本安装frp反向代理软件的服务器端

用一台有公网IP地址的云服务器,在其上编写以下脚本:

#!/usr/bin/bash
# install frp server in a cloud server

[ $UID -ne 0 ] && (echo "You are not the root, can not excute this script!" && exit 1)

Usage(){
? ? echo "Usage: $0 -f <frp_package_lcation> -p <install_location> -P <listen_port> -t <token> -d <dashboard_port> ?-u <dashboard_username> -s <dashboard_pwd>"
}

PACKAGE=""
LOCATION=""
PORT=""
DUSER=""
PASSWD=""
TOKEN=""
DPORT=""
DPASSWD=""
while getopts f:p:P:t:d:u:s: arg
do
? ? case $arg in
? ? f)
? ? ? ? PACKAGE=$OPTARG
? ? ? ? ;;
? ? p)
? ? ? ? LOCATION=$OPTARG
? ? ? ? ;;
? ? P)
? ? ? ? PORT=$OPTARG
? ? ? ? ;;
? ? t)
? ? ? ? TOKEN=$OPTARG
? ? ? ? ;;
? ? d)
? ? ? ? DPORT=$OPTARG
? ? ? ? ;;
? ? u)
? ? ? ? DUSER=$OPTARG
? ? ? ? ;;
? ? s)
? ? ? ? DPASSWD=$OPTARG
? ? ? ? ;;
? ? ?)
? ? ? ? echo "Invalid Options:~$OPTARG"
? ? ? ? Usage
? ? ? ? exit 1
? ? ? ? ;;
? ? esac
done

# check the package ?whether exists and starts with frp
if [ -f ${PACKAGE} ];then
? ? package=$(basename "${PACKAGE}")
? ? if [[ ! "${package}"=~^frp ]] || [[ ?! "{package}"=~\.tar\.gz$ ]];then
? ? ? ? echo "The package is not the frp package, please use the right package!"
? ? ? ? exit 1
? ? fi
else
? ? echo "The package to install was wrong, please check again! "
? ? Usage
? ? exit 1
fi

# check the path to install the package is right
if [ -n "${LOCATION}" ];then
? ? LOCATION=${LOCATION%/}
? ? if [ ! -e ${LOCATION} ];then
? ? ? ? mkdir -p ${LOCATION}
? ? ? ? [ $? -ne 0 ] && ( echo "can not make the path to install the package" ?&& exit 2)
? ? elif [ ! -d ${LOCATION} -o ! -x ${LOCATION} ];then
? ? ? ? echo "you did not give the right location or it can not be accessed!"
? ? ? ? exit 2
? ? fi
else
? ? echo "You must give the location to install with -p option argument"
? ? Usage
? ? exit 2
fi

if [ -n "${PORT}" ];then
? ? if [[ ! "${PORT}" =~ ^[0-9]+$ ?]];then
? ? ? ? echo "The Listen port must be a number smaller than 65536"
? ? ? ? exit 3
? ? fi
? ? if [ ${PORT} -gt 65536 ];then
? ? ? ? echo "The Listen port must be a number smaller than 65536"
? ? ? ? exit 3
? ? fi
? ? port=$( ss -ltnp | sed -n '2,$p' | awk '{print $4}' | cut -d':' -f2 | grep ${PORT})
? ? if [ -n "${port}" ];then
? ? ? ? echo "${PORT} is already be used by another program, Please use anther port"
? ? ? ? exit 3
? ? fi

else
? ? PORT=7000
fi

if [ -n "$TOKEN" ];then
? ? if [[ ! "$TOKEN" =~ ^[a-zA-Z0-9_]{6,10}$ ]];then
? ? ? ? echo "token can only contain alphabeta , digital or underscore from 6 to 10"
? ? ? ? exit 4
? ? fi
else
? ? echo "You must give the token consisting of only alphabeta, digital or underscore from 6 to 10 using -t option"
? ? Usage
? ? exit 4
fi

if [ -n "$DPORT" ];then
? ? if [[ ! "${DPORT}" =~ ^[0-9]+$ ?]];then
? ? ? ? echo "The Listen port must be a number smaller than 65536"
? ? ? ? exit 3
? ? fi
? ? if [ ${DPORT} -gt 65536 ];then
? ? ? ? echo "The Listen port must be a number smaller than 65536"
? ? ? ? exit 3
? ? fi
? ? port=$( ss -ltnp | sed -n '2,$p' | awk '{print $4}' | cut -d':' -f2 | grep ${DPORT})
? ? if [ -n "${port}" -o "${port}" == "${PORT}" ];then
? ? ? ? echo "${DPORT} is already be used by another program, Please use anther port"
? ? ? ? exit 3
? ? fi

else
? ? DPORT=7500
fi

if [ -n "DUSER" ];then
? ? if [[ ! "${DUSER}" =~ ^[a-zA-Z]{1}[a-zA-Z0-9_]{2,7}$ ]];then
? ? ? ? echo "dash board username should start with alphabeta and only contain alphabeta, digital or underscore from 3 to 8 characters"
? ? ? ? exit 5
? ? fi
else
? ? ? ? echo "You shold give dash board username ?starting with alphabeta and only containing alphabeta, digital or underscore from 3 to 8 characters"
? ? ? ? Usage
? ? ? ? exit 5
fi

if [ -n "$DPASSWD" ];then
? ? if [[ ! "$DPASSWD" =~ ^[a-zA-Z0-9_]{6,10}$ ]];then
? ? ? ? echo "dash board password can only contain alphabeta , digital or underscore from 6 to 10"
? ? ? ? exit 6
? ? fi
else
? ? echo "You must give the dash board password consisting of only alphabeta, digital or underscore from 6 to 10 using -s option"
? ? Usage
? ? exit 6
fi

echo "Package Location:$PACKAGE"
echo "Install Location:$LOCATION"
echo "Listen Port:$PORT"
echo "Token:$TOKEN"
echo "Dash board Port:$DPORT"
echo "Dash board User:$DUSER"
echo "Dash board Password:$DPASSWD"

read -p "Are you Sure to use these above arguments[Yes/No]" CHOSE

if [[ ?! "$CHOSE" =~ ^[Yy]es$ ]];then
? ? echo "You did not choose to install the package, exit"
? ? exit 1
fi

echo "Starting to install frp package ..."
echo "uncompress the ${PACKAGE} to ${LOCATION} ..."
tar -xvzf ${PACKAGE} -C ${LOCATION} &>/dev/null
[ $? -ne 0 ] && (echo "can not uncompress the package to destination" && exit 1)
echo "uncompressed ?completed"

CURDIR=$(pwd)
package=$(basename ${PACKAGE})
INSTDIR=${LOCATION}/${package%.tar.gz}

echo "Goto to install path: ${INSTDIR}"
cd ${INSTDIR} || (echo "can not access the path: ${INSTDIR}" && exit 1)
echo "backup frps.ini to frp.ini.bak"
mv frps.ini frps.ini.bak
[ $? -ne 0 ] && (echo "backup failed" && exit 1)

echo "Edit the server configuration: "
cat >frps.ini<<EOF
[common]
bind_port = ${PORT}
# this token will be used by clients
token =${TOKEN}

dashboard_port = ${DPORT}
# frp background manager will use this username and password
dashboard_user = ${DUSER}
dashboard_pwd = ${DPASSWD}
enable_prometheus = true

# frp log configuration
log_file = /var/log/frps.log
log_level = info
log_max_days = 3
EOF
echo "Edit finished!"

CONFIGDIR=/etc/frp

if [ ! -d /etc/frp ];then
? ? mkdir -p "${CONFIGDIR}"
? ? [ $? -ne 0 ] && (echo "can not make the configuration path:${CONFIGDIR}" && exit)
fi
cp frps.ini /etc/frp
cp frps /usr/bin
cp systemd/frps.service /usr/lib/systemd/system/
systemctl enable frps
systemctl start frps

firewall-cmd --permanent --add-port=${PORT}/tcp
firewall-cmd --permanent --add-port=${DPORT}/tcp
firewall-cmd --reload

echo "back to the path: ${CURDIR}"
cd ${CURDIR}
echo "Install and start the frp package successfully!"

按如下执行以上编写好的脚本,成功安装frp软件包:

在云主机上输入:ss -tnlp 可以看到服务器已经监听指定的tcp端口7000和7500

?

在一台能够连接互联网的计算机上,打开一个浏览器,输入:<IP地址>:7500,frp的后台管理客户端成功启动:

注意:在云主机的安全组规则中需要放行访问7000和7500的TCP端口的入方向。

?

?


?

  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2022-02-14 21:36:59  更:2022-02-14 21:37:45 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 6:04:10-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码