Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/05/19 in all areas

  1. Hi, A port is just any arbitrary number from 0 to 65535. Theoretically, the port number does not affect anything. It is important only that this port is free. However, if your program finds that the port you specified is busy (that is, it is already listening to some other program on your computer), it will complain to you right away. In practice, some numbers should not be chosen. Some numbers, especially small ones, can be occupied by the system services of your computer. Some numbers can be specially blocked by Internet providers. If you do not value the port number aesthetically, it is recommended that you select a port above 5000. Some users recommend choosing a port above 42000. For system and some popular programs, ports are identified with numbers from 0 to 1023, called system or commonly known. Ports with numbers 1024 - 49151 are called user or registered. Ports with numbers 49152 - 65535 are called dynamic, ephemeral or private. https://en.wikipedia.org/wiki/Port_(computer_networking) https://ru.wikipedia.org/wiki/%D0%9F%D0%BE%D1%80%D1%82_(%D0%BA%D0%BE%D0%BC%D0%BF%D1%8C%D1%8E%D1%82%D0%B5%D1%80%D0%BD%D1%8B%D0%B5_%D1%81%D0%B5%D1%82%D0%B8) https://ru.wikibooks.org/wiki/%D0%A1%D0%B5%D1%82%D0%B5%D0%B2%D0%BE%D0%B9_%D0%BF%D0%BE%D1%80%D1%82 Best regards,
    1 point
×
×
  • Create New...