作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的服务器上运行一个 Java 应用程序,它将请求发送到外部服务器。
我的服务器有 5 个不同的 IP 地址。
如何使用一个不同的 IP 地址发出每个请求?
例如,我想使用 192.168.1.2 发送第一个请求,并使用 192.168.1.3 发送第二个请求,依此类推。
在 PHP 中,我通过这段代码达到了这个目的
curl_setopt_array($curl , array(CURLOPT_INTERFACE => 'IpAddress'));
我搜索了Unirest
和OKHttp
,但我找不到任何关于此的好的解决方案
最佳答案
我刚刚通过创建自定义SocketFactory解决了这个问题
public abstract class MySocketFactory
{
private static javax.net.SocketFactory theFactory;
protected MySocketFactory() { /* NOTHING */ }
/**
* Returns a copy of the environment's default socket factory.
*
* @return the default <code>SocketFactory</code>
*/
public static javax.net.SocketFactory getDefault(String localIP) throws UnknownHostException {
synchronized (javax.net.SocketFactory.class) {
if (theFactory == null) {
theFactory = new DefaultSocketFactory(InetAddress.getByName(localIP));
}
else app.l("theFactory is not null");
}
return theFactory;
}
public static void setDefault(javax.net.SocketFactory factory) {
synchronized (javax.net.SocketFactory.class) {
theFactory = factory;
}
}
public Socket createSocket() throws IOException {
UnsupportedOperationException uop = new
UnsupportedOperationException();
SocketException se = new SocketException(
"Unconnected sockets not implemented");
se.initCause(uop);
throw se;
}
public abstract Socket createSocket(String host, int port)
throws IOException, UnknownHostException;
public abstract Socket
createSocket(String host, int port, InetAddress localHost, int localPort)
throws IOException, UnknownHostException;
public abstract Socket createSocket(InetAddress host, int port)
throws IOException;
public abstract Socket
createSocket(InetAddress address, int port,
InetAddress localAddress, int localPort)
throws IOException;
}
class DefaultSocketFactory extends javax.net.SocketFactory {
InetAddress localIP;
public DefaultSocketFactory(InetAddress localIP) {
this.localIP = localIP;
}
public Socket createSocket() throws IOException {
ServerSocket s = new ServerSocket(0);
//get an empty port
System.out.println("local port: " + s.getLocalPort());
//close the listener to re open the port
s.close();
int finalPort = s.getLocalPort() ;
SocketChannel channel = SocketChannel.open();
channel.socket().bind(new InetSocketAddress(localIP, finalPort));
return channel.socket();
}
public Socket createSocket(String host, int port)
throws IOException {
return new Socket(host, port);
}
public Socket createSocket(InetAddress address, int port)
throws IOException
{
return new Socket(address, port);
}
public Socket createSocket(String host, int port,
InetAddress clientAddress, int clientPort)
throws IOException
{
return new Socket(host, port, localIP, clientPort);
}
public Socket createSocket(InetAddress address, int port,
InetAddress clientAddress, int clientPort)
throws IOException
{
return new Socket(address, port, localIP, clientPort);
}
}
我尝试在createSocket()
中绑定(bind)本地IP地址,然后我只是在OKHttp
中使用MySocketFactory
OkHttpClient.Builder httpClient = new OkHttpClient.Builder();
SocketFactory socketFactory =
MySocketFactory.getDefault("192.168.1.2");
httpClient.socketFactory(socketFactory);
关于CURLOPT_INTERFACE 的 JAVA 替代方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61362667/
有一个 cPanel (CentOs) 服务器,并添加了一个额外的 IP 地址。 但用户不能使用: curl_setopt($ch, CURLOPT_INTERFACE, "eth0:cp1"); /
我的服务器上运行一个 Java 应用程序,它将请求发送到外部服务器。 我的服务器有 5 个不同的 IP 地址。 如何使用一个不同的 IP 地址发出每个请求? 例如,我想使用 192.168.1.2 发
以非 root 用户身份运行此命令: curl --interface tun0 http://google.com -v SO_BINDTODEVICE tun0 failed with errno
我是一名优秀的程序员,十分优秀!