Can two applications listen to the same port?

前端 未结 17 1090
天涯浪人
天涯浪人 2020-11-22 03:50

Can two applications on the same machine bind to the same port and IP address? Taking it a step further, can one app listen to requests coming from a certain IP and the othe

17条回答
  •  独厮守ぢ
    2020-11-22 04:15

    Another way is use a program listening in one port that analyses the kind of traffic (ssh, https, etc) it redirects internally to another port on which the "real" service is listening.

    For example, for Linux, sslh: https://github.com/yrutschle/sslh

提交回复
热议问题