云计算学习路线源码框架笔记:Shell版JumpServer开发

喜你入骨 提交于 2019-11-29 23:08:55

以下内容是关于云计算学习路线源码框架笔记内容,下面是关于Shell版JumpServer开发的内容:

首先要有思路, 完善不足的地方

#!/usr/bin/env bash

#

Author: bavdu

Email: bavduer@163.com

Github: https://github.com/bavdu

Date: 2019//

while :

do

trap ':' INT EXIT TSTP TERM HUP

clear

cat <<-EOF

+-------------------------------------+

| JumpServer @Version1.0 |

+-------------------------------------+

| a. WebServer Apache. |

| b. MySQL Databases Server. |

| c. PHP Development Computer. |

| d. Quit |

+-------------------------------------+

EOF

read -p "Please input your jump to server's number: " computer

case $computer in

a)

ssh jumper@192.168.161.129

;;

b)

ssh jumper@192.168.161.130

;;

c)

ssh jumper@192.168.161.131

;;

d)

exit

;;

*)

printf "ERROR: Please redo your select!"

;;

esac

done

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!