码迷,mamicode.com
首页 > 其他好文 > 详细

4, nginx 的 tcp 转发

时间:2020-07-26 01:23:14      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:name   keep   host   stream   http   centos   转发   hostname   net   

[root@centos7 nginx]# hostname -i
fe80::573d:3f45:8bb8:5050%ens33 192.168.0.11
[root@centos7 nginx]# 
[root@centos7 nginx]# cat nginx.conf
worker_processes 2;
events {
    worker_connections 1024;
}

stream {
	upstream ssh_proxy {
		hash $remote_addr consistent;
		server 192.168.0.13:22; 
   	}
	server {
		listen 2222;
		proxy_connect_timeout 5s;
		proxy_timeout 5s;
		proxy_pass ssh_proxy;
     }
}


http {
    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;
    sendfile            on;
    keepalive_timeout   65;
    server {
        listen 80;
        server_name  www.etiantian.org;
        index index.html index.htm;
	location = / {
		return 500;	
	}

    }
}
[root@centos7 nginx]# 
[root@centos7 nginx]# netstat -nultp|grep nginx
tcp        0      0 0.0.0.0:2222            0.0.0.0:*               LISTEN      78097/nginx: master 
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      78097/nginx: master 
[root@centos7 nginx]# 
[root@centos7 nginx]# ssh -p 2222 192.168.0.11
root@192.168.0.11‘s password: 
Last login: Wed Jul 22 19:50:25 2020 from 192.168.0.1
[root@centos7 ~]# 
[root@centos7 ~]# hostname -i
fe80::63aa:b68b:9d82:1610%ens33 fe80::573d:3f45:8bb8:5050%ens33 192.168.0.13
[root@centos7 ~]# 

监听本机的2222端口,实现跳转到192.168.0.13的22号端口
ssh -p 2222 192.168.0.11	就会跳转到192.168.0.13

  

4, nginx 的 tcp 转发

标签:name   keep   host   stream   http   centos   转发   hostname   net   

原文地址:https://www.cnblogs.com/k8s-pod/p/13378049.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!