Linux:模拟实现跳板机功能的shell脚本

需求描述:

通过yunwei账号,登陆到跳板机时,只能进行相关菜单中的选择操作,不能进行自定义命令。

脚本如下:

#!/usr/bin/env bash
# 定义菜单打印功能的函数
menu(){
cat <<-EOF
		欢迎使用Jumper-server,请选择你要操作的主机:
		1. DB1-Master
		2. DB2-Slave
		3. Web1
		4. Web2
		h. help
		c. clear
		q. exit
	EOF
}
#   屏蔽快捷键信号。如ctrl+c ctrl+z等。确保不能在跳板机上停留。
trap : 1 2 3 19 20
menu

while true
do
	read -p "请选择你要访问的主机:" host;
	case ${host} in
		1|DB1)
			ssh [email protected]
		;;
		2|DB2)
			ssh [email protected]
		;;
		h)
			clear
			menu
		;;
		q)
			exit
		;;
		c|clear)
			clear
			menu
		;;
	esac
done

知识点讲解:

1、yunwei账号,不是管理员账号,Linux系统的每个账号的home目录里,都有一个bashrc文件。
这个文件是在yunwei账号登陆时,就会被执行的。这个属于Linux系统的相关知识。
所以,需要把我们的shell脚本配置到bashrc文件中。
在这里插入图片描述

# .bashrc

# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi

# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=

# User specific aliases and functions
/home/yunwei2/jumper-server.bash
exit		这个exit的作用是,真正退出当前终端。而shell脚本中的exit的作用是,退出脚本所在进程。

2、需要屏蔽一些快捷键信号。
比如,登陆跳板机后,用户按了ctrl+c,那么,这样就退出了选择的shell脚本进程,停留在了跳板机上,这样就不安全。
查看所有信号快捷键:
kill -l
Linux:模拟实现跳板机功能的shell脚本_第1张图片
shell脚本中屏蔽响应的信号
trap : 1 2 3 19 20

你可能感兴趣的:(Linux,linux,运维,服务器)