Socket.io 可以监听多个端口吗?

发布于 2024-11-30 06:48:23 字数 255 浏览 0 评论 0原文

socket.io 是否可以在一台服务器上监听多个端口?

背景 - 我需要满足两个问题:

1.一些合作&其他封闭网络会阻止所有不使用端口 80 的流量。

2.某些防病毒软件会阻止端口 80 上的 Websocket 流量。端口 4000 是最安全的端口。

因此,我需要我的节点服务器能够同时使用端口 80 和 4000。有人遇到过类似的问题吗?你是怎么解决的?

谢谢。

Is it possible for socket.io to listen on multiple ports in one server?

Background - I need to satisfy two problems:

1.Some cooperate & other closed networks block all traffic which does not use port 80.

2.Some anti viruses block websocket traffic on port 80. Port 4000 is the safest port to use.

I therefore need to my node server to be able to use port 80 and 4000 simultaneously. Has anyone experienced similar problems? How did you solve it?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

看透却不说透 2024-12-07 06:48:23

假设您的进程正在侦听端口 4000,据我所知,您可以使用 iptables 在内部转发端口 80 的请求。

# iptables -t nat -A PREROUTING -i eth0 -p tcp -m tcp --dport 80 -j REDIRECT --to-ports 4000

/edit 以错误的方式获取端口。

Suppose your process is listening on port 4000, it's my understanding you can use iptables to internally forward requests for port 80.

# iptables -t nat -A PREROUTING -i eth0 -p tcp -m tcp --dport 80 -j REDIRECT --to-ports 4000

/edit got the ports the wrong way around.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文