how can an application use port 80/HTTP without conflicting with browsers?

前端 未结 7 1299
执笔经年
执笔经年 2020-12-02 05:27

If I understand right, applications sometimes use HTTP to send messages, since using other ports is liable to cause firewall problems. But how does that work without conflic

相关标签:
7条回答
  • 2020-12-02 06:14

    Clients usually pick a port between 1024 and 65535. It depends on the operating system how to handle this. I think Windows Clients increment the value for each new connection, Unix Clients pick a random port no.

    Some services rely on a static client port like NTP (123 UDP)

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