一个人可以使用的最高端口号是什么?
当前回答
根据我的理解,你应该只使用49151,因为49152到65535是为临时端口保留的
其他回答
应该是65535。
端口号是一个无符号16位整数,即65535。
这取决于你所谈论的范围,但动态范围会上升到65535或2^16-1(16位)。
http://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers
端口的有效数字为:0 ~ 2^16-1 = 0 ~ 65535 这是因为端口号是16位长度。
However ports are divided into: Well-known ports: 0 to 1023 (used for system services e.g. HTTP, FTP, SSH, DHCP ...) Registered/user ports: 1024 to 49151 (you can use it for your server, but be careful some famous applications: like Microsoft SQL Server database management system (MSSQL) server or Apache Derby Network Server are already taking from this range i.e. it is not recommended to assign the port of MSSQL to your server otherwise if MSSQL is running then your server most probably will not run because of port conflict ) Dynamic/private ports: 49152 to 65535. (not used for the servers rather the clients e.g. in NATing service)
在编程中,你可以使用0到65535的任意数字作为你的服务器,但是你应该坚持上面提到的范围,否则一些系统服务或一些应用程序将因为端口冲突而无法运行。 查看大多数端口的列表:https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers
最大端口号为无符号短2^16- 1,65535
注册端口是由互联网公司指定的端口 指定名称与数字地址分配机构(ICANN)。每一个注册 端口范围为1024-49151。 自2001年3月21日起,注册机构为ICANN;在那之前 IANA。 小于已注册端口号的端口号被调用 知名港口;端口的值大于 注册端口称为动态和/或私有端口。 维基百科:注册端口