ssh建立安全跳板机,方便外网登录内网机器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ssh建立安全跳板机,方便外网登录内网机器相关的知识,希望对你有一定的参考价值。
环境centos7两台
跳板机: eth0:X.X.X.X
eth1:10.165.93.161
内网主机:eth0:10.165.93.162
ssh -4fg -L 2222:10.165.93.162:22 -N localhost
解析:
-4 以ipv4地址格式
-f 后台运行
-g 允许远程主机进行连接本地端口2222
-L [bind_address:]port:host:hostport
-N Do not execute a remote command. This is useful for just for-
warding ports (protocol version 2 only).
ssh x.x.x.x:2222 即可登录内网主机
本文出自 “天地冰寂” 博客,请务必保留此出处http://yanconggod.blog.51cto.com/1351649/1875862
以上是关于ssh建立安全跳板机,方便外网登录内网机器的主要内容,如果未能解决你的问题,请参考以下文章