fatedier / frp

A fast reverse proxy to help you expose a local server behind a NAT or firewall to the internet.
Apache License 2.0
86.46k stars 13.37k forks source link

frpc连接数增长,会导致frps服务端端口占用数量增长吗? #2840

Closed SMU-Rainflow closed 2 years ago

SMU-Rainflow commented 2 years ago

Describe the feature request

想通过frpc暴露一个TCP Server,如果连接TCP Server的连接数过多,会不会导致frps服务器端口被占用过多而影响其他功能呢?

Describe alternatives you've considered

No response

Affected area

fatedier commented 2 years ago
  1. 连接和端口不相关,不是一回事。
  2. 不能保证不会因为被攻击或其他原因导致服务器整体不稳定,如果有必要,建议自行使用容器或其他方式限制所使用的资源。
  3. 如果没有相关的知识,建议谨慎使用,不要随意对外开放。
SMU-Rainflow commented 2 years ago

好的,谢谢您的建议,想明白了一部分。 刚刚测试本地 协程TCP Server承压能力的时候,端口占用过多是因为测试脚本中异步的TCP连接请求造成的。我以为是TCP Server为每个IO等待的连接单独创建了一个端口。