What is the largest TCP/IP network port number allowable for IPv4?

前端 未结 8 1543
走了就别回头了
走了就别回头了 2020-11-29 16:19

What is the highest port number one can use?

相关标签:
8条回答
  • 2020-11-29 16:46

    The port number is an unsigned 16-bit integer, so 65535.

    0 讨论(0)
  • 2020-11-29 16:54

    The largest port number is an unsigned short 2^16-1: 65535

    A registered port is one assigned by the Internet Corporation for Assigned Names and Numbers (ICANN) to a certain use. Each registered port is in the range 1024–49151.

    Since 21 March 2001 the registry agency is ICANN; before that time it was IANA.

    Ports with numbers lower than those of the registered ports are called well known ports; port with numbers greater than those of the registered ports are called dynamic and/or private ports.

    Wikipedia : Registered Ports

    0 讨论(0)
提交回复
热议问题