I have written a code to get all the private ips associated with each interface. I'm storing all the private ips in ArrayList ips
.
List<String> ips = new ArrayList<>();
for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();) {
NetworkInterface intf = en.nextElement();
for (Enumeration<InetAddress> enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements(); ) {
ips.add(enumIpAddr.nextElement().toString().replace("/", ""));
}
}
Now I want to iterate over the List ips and want to call the http request to get the public ip. Below is the linux curl command that will return public ip associated with the private ip 10.74.4.11.
curl -i --interface 10.74.4.11 "ifconfig.co"
I just want convert this linux command to java http request which I can use in my program.
This method uses Java Runtime API to execute the command and then adds the found public ip to the hashmap as a value to the internalIp key. So finally you can find the desired public ip by searching through the hashmap "ips.get("internalIp")"