WebClient 指定出口 IP
Posted kuku
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WebClient 指定出口 IP相关的知识,希望对你有一定的参考价值。
当一个服务器有多个 IP 时, 在使用 webclient 对象需要指定出口 IP
public class MyWebClient : WebClient { private IPAddress ipAddress; public MyWebClient(IPAddress ipAddress) { this.ipAddress = ipAddress; } protected override WebRequest GetWebRequest(Uri address) { var request = (HttpWebRequest)base.GetWebRequest(address); // 把 KeepAlive 设置为 false 表示连接用完就关 request.KeepAlive = false; request.ServicePoint.ConnectionLeaseTimeout = 0; request.ServicePoint.BindIPEndPointDelegate += (servicePoint, remoteEndPoint, retryCount) => { return new IPEndPoint(ipAddress, 0); }; return request; } }
KeepAlive 和 ConnectionLeaseTimeout 这两个属性非常重要, 不然 ServicePoint 会有缓存, 导致出口 IP 错乱。
以上是关于WebClient 指定出口 IP的主要内容,如果未能解决你的问题,请参考以下文章
华为防火墙双出口,如何配置指定IP访问特定目的地址的流量自动转发至指定出口
请问如何修改指定服务器的出口IP?多个IP的VPS一句命令修改VPS出口ip
华为防火墙如何配置双出口,特定IP段流量走指定出接口地址上网
看代码网备份|利用WebClient|eKing.CmdDownLoadDbBakOper|实现定时拷贝数据库备份文件到文件服务器