端口转发(Linux/Windows)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了端口转发(Linux/Windows)相关的知识,希望对你有一定的参考价值。

【目的】

  监听本机 7777 端口,将数据转发到 192.168.7.8 的 8888 端口,实现 TCP 数据转发。


【方法】

1、ncat(Linux/Windows 通用)(ncat端口转发

ncat --sh-exec "ncat 192.168.7.8 8888" -l 7777 --keep-open

2、netsh(Windows)(port forwarding in windows

2.1、设置

netsh interface portproxy add v4tov4 listenport=7777 listenaddress=0.0.0.0 connectport=8888 connectaddress=192.168.7.8

2.2、显示

netsh interface portproxy show all

2.3、移除

netsh interface portproxy delete v4tov4 listenport=7777 listenaddress=0.0.0.0


相关阅读:

1、Windows 和 Linux 平台下的端口转发工具

2、简单的TCP代理服务器

3、centos6.5 iptables实现端口转发


*** walker ***


本文出自 “walker的流水账” 博客,请务必保留此出处http://walkerqt.blog.51cto.com/1310630/1947585

以上是关于端口转发(Linux/Windows)的主要内容,如果未能解决你的问题,请参考以下文章

用于端口转发的 libssh2 示例代码

ssh动态端口转发

GO语言实现TCP端口转发代码

GO语言实现TCP端口转发代码

iptables做端口转发

一款简单的内网穿透工具,无需安装即可使用