自从Nginx 1.9 以后无需其他软件配合,通过stream模块就可以实现了TCP代理功能,即可通过访问该服务器的指定端口,Nginx就可以充当端口转发的作用将请求该端口的所有流量都会转发到目标服务器,同时获取目标服务器的返回数据并返回给请求者。以下对nginx代理TCP进行配置。
1. Ctrl+Alt+T打开终端
查看版本信息,检查是否编译时带with-stream
参数
2. 终端输入:sudo nginx -V |grep with-stream
我的版本是1.14.2,有with-stream
参数,可以代理TCP协议
pi@raspberrypi:~ $ cd /etc/nginx/
nginx.conf
pi@raspberrypi:/etc/nginx $ sudo cp -a nginx.conf{,_$(date +%F)}
nginx.conf
pi@raspberrypi:/etc/nginx $ sudo nano nginx.conf
nginx.conf
底部添加如下内容:include /etc/nginx/tcp.d/*.conf;
Ctrl + O
Enter
保存Ctrl + X
退出tcp.d
目录pi@raspberrypi:/etc/nginx $ sudo mkdir tcp.d
tcp.d
目录pi@raspberrypi:/etc/nginx $ cd tcp.d
conf
文件pi@raspberrypi:/etc/nginx/tcp.d $ sudo nano openldap.conf
stream{ upstream tcpssh{ hash $remote_addr consistent; server 8.8.8.8:389 max_fails=3 fail_timeout=10s; } server{ listen 3389; proxy_connect_timeout 20s; proxy_timeout 5m; proxy_pass tcpssh; } }
“upstream tcpssh”
:转发的目的地址和端口等设置;其中tcpssh
为自定义.
“server”
:提供转发的服务,即监听端口为3389,访问localhost:3389,会跳转至代理"tcpssh"
指定的转发地址。
即会将流量相应转发到8.8.8.8服务器的389端口上。
pi@raspberrypi:/etc/nginx/tcp.d $ sudo nginx -t -c /etc/nginx/nginx.conf
pi@raspberrypi:/etc/nginx/tcp.d $ sudo nginx -s reload
pi@raspberrypi:/etc/nginx/tcp.d $ systemctl status nginx.service
pi@raspberrypi:~ $ sudo netstat nap |grep 3389
我用的是虚拟机上的Ubuntu
Ctrl+Alt+T
打开终端telnet 192.168.1.101 3389
注意: 192.168.1.101:为服务器主机IP要根据自己的服务器IP地址确定 - 可通过在终端输入 ifconfig 查看 - 找到 wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 192.168.1.101 netmask 255.255.255.0 broadcast ...... 以上IP地址为192.168.1.101 3389:就是上面设置的监听端口3389在终端输入 telnet 192.168.1.101 3389后显示:
china@ubuntu:~$ telnet 192.168.1.101 3389 Trying 192.168.1.101 3389... Connected to 192.168.1.101. Escape character is '^]'.出现Connected to 192.168.1.101.则说明连接成功
至此配置完成。
如果出现
telnet: Unable to connect to remote host: Network is unreachable
那就是虚拟机没网,可以参考我的这篇文章进行配置后再次尝试。
VMware虚拟机上Ubuntu无网络解决方法
参考文章https://blog.51cto.com/moerjinrong/2287680