SSH 访问内网

总共有3台机器人 
Company:能够访问外网,没用公网IP 
Person:能够访问外网,没有公网IP 
Server:具有公网IP 
Person电脑想在家里远程ssh登陆到公司的机器

Server:

sudo apt-get install openssh-server
vim /etc/ssh/sshd_config
1
2
添加ssh端口11235,22,重启ssh-server

/etc/init.d/sshd restart
1
公司电脑:

sudo apt-get install openssh-server
/etc/init.d/sshd restart
1
2
然后输入 
ssh -R 11235:localhost:22 -p 22 [email protected],

在Person电脑上输入 
ssh [email protected] 
ssh company_user_name@localhost -p 11235
--------------------- 
作者:sitwangmin 
来源:CSDN 
原文:https://blog.csdn.net/u010284636/article/details/80508562 
版权声明:本文为博主原创文章,转载请附上博文链接!

你可能感兴趣的:(SSH 访问内网)