当有多个 IP (.NET) 时选择 HTTP 请求使用哪个 IP
我正在编写一个 .NET 程序,它将在具有多个 IP 地址的计算机上运行。该程序向给定的网址发出 HTTP 请求。我想选择我使用的IP地址(这样我就可以确定哪个IP地址将出现在其他服务器的日志上)。
建议?
I am writing a .NET program which will run on a computer with several IP addresses. The program makes HTTP requests to given web addresses. I want to choose which IP address I use (so I can determine which IP address will appear on the log of the other server).
Suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您可以通过提供提供要绑定的 IP/端口的
BindIPEndPointDelegate
来强制本地端点。此代码未正确处理处置。
I believe you can force the local endpoint by providing a
BindIPEndPointDelegate
which supplies the IP/port to bind to.This code doesn't deal with disposal correctly.