TCP在线发送测试工具

Tools 1年前 ⋅ 137 阅读

开发中,使用到tcp协议时候,往往需要发送数据进行测试,为了方便测试,我搜罗了一下在线的发送地址,建议开放一个tcp外网端口后,测试时使用。

https://xxf.cool/tools/tcpTool

提供具体的nginx对tcp端口的转发配置


stream {
    # 添加转发的代理
    upstream to_socket_proxy {
        hash $remote_addr consistent;
        # 转发的目的地址和端口
        server 192.168.1.100:9999 weight=5 max_fails=3 fail_timeout=30s;
    }

    # 提供转发的服务,即访问localhost:9090,会跳转至代理to_socket_proxy指定的转发地址
    server {
       listen 9090;
       proxy_connect_timeout 1s;
       proxy_timeout 3s;
       proxy_pass to_socket_proxy;
    }
}


全部评论: 0

    我有话说: