具有多IP接口。如何选择其中之一来建立传出连接?
我正在使用具有多个分配的 IP 地址的接口。 我需要建立从此接口到远程侦听 SCTP 套接字的连接(不在多宿主模式下)。
如何选择所需接口的 IP 作为连接源? 应该使用什么标志/套接字选项?
I am working with with an interface with multiple assigned IP addresses.
I need establish a connection from this interface to a remote listening SCTP socket (not in multi-homing mode).
How is it possible to select the desired interface's IP as the source of the connection?
What flag/socket-option should be used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
bind()
函数来设置本地IP地址。You can use the
bind()
function to set the local IP address.