如何连接到不同IP地址的网站?
我想在我的网站上执行负载测试,因此我需要一种使用动态不同的 IP 地址连接到网站的方法。有没有可能的方法可以在 java 或 C++ 中做到这一点?
I want to perform load tests on my website, so I need a way to connect to the website using dynamically different ip Addresses. is There a possible way to do this in java or C++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的主机需要先了解这些地址,然后才能使用它们。您可以将多个虚拟地址添加到同一网络适配器。创建套接字时,您可以指定源地址。您可以使用 Java 或 C++ 执行此操作。
Your host needs to know about these addresses before you can use them. You can add many virtual addresses to the same network adapter. When you create a socket you can specify a source address. You can do this in Java or C++.
如果您想从不同的地址进行连接,您有两种选择:连接时使用该地址或通过代理连接。第二个选项是最好的,您只需要找到一个可以连接的代理(或多个代理)。
If you want to connect from different addresses you have two choices, be on that address when you connect or connect through a proxy. The second option is your best, you'll just need to find a proxy (or proxies) through which you can connect.