How to listen on multiple IP addresses?

后端 未结 6 1186
别那么骄傲
别那么骄傲 2021-02-15 16:15

If my server has multiple IP addresses assigned to it, and I would like to listen to some (or all) of them, how do I go about doing that?

Do I need to create a new socke

6条回答
  •  囚心锁ツ
    2021-02-15 16:57

    Technically, your server never has any IP addresses assigned to it.

    Instead, individual network interfaces may be assigned IP addresses. Usually, each NIC gets one IP address, but that's just the most common case.

    If you want to control which interfaces are listening for incoming connections on your chosen port, you'll need to create a separate socket for each one.

提交回复
热议问题