通过 gost 转发一系列端口

问题描述 投票:0回答:0

我想使用 go simple tunnel 转发一系列端口,例如 2001to2500。

我已经安装它并在

/usr/lib/systemd/system/gost.Service 

我把这个代码:

[Unit]
Description=GO Simple Tunnel
After=network.target
Wants=network.target

[Service]
Type=simple
ExecStart=/usr/local/bin/gost -L tcp://:2003/127.0.0.1:2003 -L tcp://:2001/127.0.0.1:2001 -L tcp://:2002/127.0.0.1:2002 -L -F relay+kcp://91.107.169.213:456 

[Install] 
WantedBy=multi-user.target

----(--(----- 但是通过添加这个

-L tcp://:2002/127.0.0.1:2002 

最多只能运行到 10 或 15 个端口,然后它就无法工作了。

portforwarding
© www.soinside.com 2019 - 2024. All rights reserved.