提问人:fadedbee 提问时间:2/25/2010 最后编辑:tshepangfadedbee 更新时间:1/16/2021 访问量:240906
现代 Linux 机顶盒可以拥有的理论最大开放 TCP 连接数是多少
What is the theoretical maximum number of open TCP connections that a modern Linux box can have
问:
假设硬件性能无限,Linux 盒子能否支持 >65536 开放式 TCP 连接?
我知道临时端口数 (<65536) 限制了从一个本地 IP 到一个远程 IP 上的一个端口的连接数。
元组(本地 ip、本地端口、远程 ip、远程端口)是唯一定义 TCP 连接的内容;这是否意味着如果这些参数中有多个可用,则可以支持超过 65K 的连接。例如,从多个本地 IP 连接到多个远程主机上的单个端口号。
系统中是否有其他 16 位限制?也许是文件描述符的数量?
答:
单个侦听端口可以同时接受多个连接。
有一个经常被引用的“64K”限制,但这是每个客户端每个服务器端口的限制,需要澄清。
每个 TCP/IP 数据包基本上有四个用于寻址的字段。这些是:
source_ip source_port destination_ip destination_port
<----- client ------> <--------- server ------------>
在 TCP 堆栈中,这四个字段用作复合键,用于将数据包与连接(例如文件描述符)匹配。
如果客户端与同一目标上的同一端口有许多连接,则其中三个字段将是相同的 - 只是为了区分不同的连接而有所不同。端口是 16 位数字,因此任何给定客户端可以与任何给定主机端口的最大连接数为 64K。source_port
但是,多个客户端每个客户端可以与某个服务器的端口建立多达 64K 的连接,如果服务器有多个端口或其中一个是多宿主的,那么您可以进一步增加。
所以真正的限制是文件描述符。每个单独的套接字连接都有一个文件描述符,因此限制实际上是系统配置为允许的文件描述符数量和要处理的资源。最大限制通常超过 300K,但可以配置,例如使用 sysctl。
对于普通盒子来说,吹嘘的现实限制约为 80K,例如单线程 Jabber 消息服务器。
评论
If you are thinking of running a server and trying to decide how many connections can be served from one machine, you may want to read about the C10k problem and the potential problems involved in serving lots of clients simultaneously.
评论
If you used a raw socket () and re-implemented TCP in userland, I think the answer is limited in this case only by the number of tuples (~2^64 per local address).SOCK_RAW
(local address, source port, destination address, destination port)
It would of course take a lot of memory to keep the state of all those connections, and I think you would have to set up some iptables rules to keep the kernel TCP stack from getting upset &/or responding on your behalf.
评论