使用ssh做端口转发


使用场景:比如有三台服务器,A、B、C,A想通过B来访问C的端口为8080的服务

 

如下配置都是在B服务器进行:

1、安装screen命令,用于开启多窗口程序

yum install screen -y

2、创建一个程序窗口sshbtoc

开启screen -S sshbtoc

3、开启ssh端口转发,其中user是登录到B服务器的账号,再输入密码

ssh -p22 -CNg -L 8080:C:8080 user@localhost

4、保存退出当前的窗口程序

ctrl+a d

5、查看程序

screen -ls

 

posted @ 2022-09-26 17:21  opscool  阅读(116)  评论(0编辑  收藏  举报