的TCP流量lnmp支转发或者支持3389持多个端口

这个方法Sandy一直在用,最近芳姐和大哥问起来来。所以就发出来给大家看看!

起因:一直在用国外的杜甫,但是win下的3389非常的卡。之前用frp方案,后来发现frp吃端口。一个frp下去一台服务器的端口基本废了。所以才想到在nginx下搞事情!

调试

环境:lnmp 1.5以上,1.5以下需要自己安装stream。

1、查看stream模块

测试你的nginx是不是支持stream模块

nginx -V |grep with-stream
Bash

出现这样的--with-stream字样,说明就是支持的!

nginx version: nginx/1.18.0built by gcc 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)built with OpenSSL 1.1.1g  21 Apr 2020TLS SNI support enabledconfigure arguments: --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_v2_module --with-http_gzip_static_module --with-http_sub_module --with-stream --with-stream_ssl_module --with-openssl=/root/lnmp1.7/src/openssl-1.1.1g --with-openssl-opt='enable-weak-s
Log

既然支持我们就开整!

2、修改nginx.conf文件

找到/usr/local/nginx/conf/nginx.conf

events上面加入stream配置

stream {     upstream bi_remote_desk {         # simple round-robin 转发IP和端口        server 10.10.10.10:3389;        #check interval=3000 rise=2 fall=5 timeout=1000;        #check interval=3000 rise=2 fall=5timeout=1000        #check interval=3000 rise=2 fall=5timeout=1000        #check_http_send "GET /HTTP/1.0\r\n\r\n";        #check_http_expect_alive http_2xxhttp_3xx;    }    server {         listen 3389; ##监听端口        proxy_pass bi_remote_desk;  #转发请求    }}
nginx

1-1024x941-1

3、重启lnmp

重启lnmp restart,就可以远程你的机器了!

定义多个端口转发

stream {     upstream bi_remote_desk {         # simple round-robin 转发IP和端口        server 10.10.10.10:3389;        #check interval=3000 rise=2 fall=5 timeout=1000;        #check interval=3000 rise=2 fall=5timeout=1000        #check interval=3000 rise=2 fall=5timeout=1000        #check_http_send "GET /HTTP/1.0\r\n\r\n";        #check_http_expect_alive http_2xxhttp_3xx;    }    server {         listen 3389; ##监听端口        proxy_pass bi_remote_desk;  #转发请求    }    upstream 214_ssh {         server 10.10.10.10:22;    }    server {         listen 105; ##监听端口        proxy_pass 214_ssh;  #转发请求    }}
上一篇:街边3块钱一根的“淀粉肠”,里面到底有多少肉?答案让你想不到
下一篇:40年腌咸鸭蛋老配方,100%出油起沙,方法简单,看完了就会