Centos 内网穿透autossh实现外网访问

谁说我不能喝 提交于 2020-08-09 06:53:29
autossh -M 4010 -fCNR 远程监听端口:本地IP:本地端口 远程用户账号@远程IP

相关文档:https://my.oschina.net/leejun2005/blog/94401/print

autossh安装

$ sudo yum install wget gcc make
$ wget http://www.harding.motd.ca/autossh/autossh-1.4e.tgz
$ tar -xf autossh-1.4e.tgz
$ cd autossh-1.4e
$ ./configure
$ make
$ sudo make install

Nginx配置

location / {
    proxy_pass http://127.0.0.1:8010;
}

 

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