up vote 3 down vote favorite
1
share [g+] share [fb]

How can I determine the IP of my router/gateway in Java? I can get my IP easily enough. I can get my internet IP using a service on a website. But how can I determine my gateway's IP?

This is somewhat easy in .NET if you know your way around. But how do you do it in Java?

link|improve this question

1  
Your gateway/router actually has (at least) two IP addresses. Are you looking for the one facing your node or the other(s) facing upstream towards other networks? – Tall Jeff Sep 14 '08 at 12:26
feedback

13 Answers

up vote 3 down vote accepted

Java doesn't make this as pleasant as other languages, unfortunately. Here's what I did:

import java.io.*;
import java.util.*;

public class ExecTest {
    public static void main(String[] args) throws IOException {
        Process result = Runtime.getRuntime().exec("traceroute -m 1 www.amazon.com");

        BufferedReader output = new BufferedReader(new InputStreamReader(result.getInputStream()));
        String thisLine = output.readLine();
        StringTokenizer st = new StringTokenizer(thisLine);
        st.nextToken();
        String gateway = st.nextToken();
        System.out.printf("The gateway is %s\n", gateway);
    }
}

This presumes that the gateway is the second token and not the third. If it is, you need to add an extra st.nextToken(); to advance the tokenizer one more spot.

link|improve this answer
1  
-1: This doesn't work for a non-windows os. – Martijn Courteaux Dec 19 '09 at 11:55
Actually it doesn't work for a Windows-OS, as traceroute is called tracert there. – Thorbjørn Ravn Andersen Jun 22 '10 at 14:38
feedback

On Windows, OSX, Linux, etc then Chris Bunch's answer can be much improved by using

netstat -rn

in place of a traceroute command.

Your gateway's IP address will appear in the second field of the line that starts either default or 0.0.0.0.

This gets around a number of problems with trying to use traceroute:

  1. on Windows traceroute is actually tracert.exe, so there's no need for O/S dependencies in the code
  2. it's a quick command to run - it gets information from the O/S, not from the network
  3. traceroute is sometimes blocked by the network

The only downside is that it will be necessary to keep reading lines from the netstat output until the right line is found, since there'll be more than one line of output.

link|improve this answer
feedback

Regarding UPnP: be aware that not all routers support UPnP. And if they do it could be switched off (for security reasons). So your solution might not always work.

You should also have a look at NatPMP.

A simple library for UPnP can be found at http://miniupnp.free.fr/, though it's in C...

link|improve this answer
feedback

To overcome the issues mentioned with traceroute (ICMP-based, wide area hit) you could consider:

  1. traceroute to your public IP (avoids wide-area hit, but still ICMP)
  2. Use a non-ICMP utility like ifconfig/ipconfig (portability issues with this though).
  3. What seems the best and most portable solution for now is to shell & parse netstat (see the code example here)
link|improve this answer
feedback

On windows parsing the output of IPConfig will get you the default gateway, without waiting for a trace.

link|improve this answer
feedback
try{

    Process result = Runtime.getRuntime().exec("netstat -rn");

    BufferedReader output = new BufferedReader
	(new InputStreamReader(result.getInputStream()));

    String line = output.readLine();
    while(line != null){
	if ( line.startsWith("default") == true )
	    break;		
	line = output.readLine();
    }


    StringTokenizer st = new StringTokenizer( line );
    st.nextToken();
    gateway = st.nextToken();

    st.nextToken();
    st.nextToken();
    st.nextToken();

    adapter = st.nextToken();

}catch( Exception e ) { 
    System.out.println( e.toString() );
    gateway = new String();
    adapter = new String();
}
link|improve this answer
feedback

You can query the URL "http://whatismyip.com/automation/n09230945.asp". For example:

	BufferedReader buffer = null;
	try {
		URL url = new URL("http://whatismyip.com/automation/n09230945.asp");
		InputStreamReader in = new InputStreamReader(url.openStream());
		buffer = new BufferedReader(in);

		String line = buffer.readLine();
		System.out.println(line);
	} catch (IOException e) {
		e.printStackTrace();
	} finally {
		try {
			if (buffer != null) {
				buffer.close();
			}
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
link|improve this answer
feedback

output of netstat -rn is locale specific. on my system (locale=de) the output looks like: ... Standardgateway: 10.22.0.1

so there is no line starting with 'default'.

so using netstat might be no good idea.

link|improve this answer
what OS is that? On OSX there's no locale difference in the output. – Alnitak Apr 23 '09 at 11:07
feedback

Try shelling out to traceroute if you have it.

'traceroute -m 1 www.amazon.com' will emit something like this:

traceroute to www.amazon.com (72.21.203.1), 1 hops max, 40 byte packets
 1  10.0.1.1 (10.0.1.1)  0.694 ms  0.445 ms  0.398 ms

Parse the second line. Yes, it's ugly, but it'll get you going until someone posts something nicer.

link|improve this answer
Why the downvote? – Rydell Aug 27 '09 at 22:18
feedback

You may be better off using something like checkmyip.org, which will determine your public IP address - not necessarily your first hop router: at Uni I have a "real" IP address, whereas at home it is my local router's public IP address.

You can parse the page that returns, or find another site that allows you to just get the IP address back as the only string.

(I'm meaning load this URL in Java/whatever, and then get the info you need).

This should be totally platform independent.

link|improve this answer
feedback

Matthew: Yes, that is what I meant by "I can get my internet IP using a service on a website." Sorry about being glib.

Brian/Nick: Traceroute would be fine except for the fact that lots of these routers have ICMP disabled and thus it always stalls.

I think a combination of traceroute and uPnP will work out. That is what I was planning on doing, I as just hoping I was missing something obvious.

Thank you everyone for your comments, so it sounds like I'm not missing anything obvious. I have begun implementing some bits of uPnP in order to discover the gateway.

link|improve this answer
feedback

This Version connects to www.whatismyip.com, reads the content of the site and searches via regular expressions the ip adress and prints it to the cmd. Its a little improvement of MosheElishas Code

import java.io.BufferedReader;  
import java.io.IOException;  
import java.io.InputStreamReader; 
import java.net.URL;  
import java.util.regex.Matcher;  
import java.util.regex.Pattern;  

public class Main {

    public static void main(String[] args) {
        BufferedReader buffer = null;
        try {
            URL url = new URL(
                    "http://www.whatismyip.com/tools/ip-address-lookup.asp");
            InputStreamReader in = new InputStreamReader(url.openStream());
            buffer = new BufferedReader(in);
            String line = buffer.readLine();
            Pattern pattern = Pattern
                    .compile("(.*)value=\"(\\d+).(\\d+).(\\d+).(\\d+)\"(.*)");
            Matcher matcher;
            while (line != null) {
                matcher = pattern.matcher(line);
                if (matcher.matches()) {
                    line = matcher.group(2) + "." + matcher.group(3) + "."
                            + matcher.group(4) + "." + matcher.group(5);
                    System.out.println(line);
                }
                line = buffer.readLine();
            }
        } catch (IOException e) {
            e.printStackTrace();

        } finally {
            try {
                if (buffer != null) {
                    buffer.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

import java.io.BufferedReader;  
import java.io.IOException;  
import java.io.InputStreamReader; 
import java.net.URL;  
import java.util.regex.Matcher;  
import java.util.regex.Pattern;  

public class Main {

    public static void main(String[] args) {
        BufferedReader buffer = null;
        try {
            URL url = new URL(
                    "http://www.whatismyip.com/tools/ip-address-lookup.asp");
            InputStreamReader in = new InputStreamReader(url.openStream());
            buffer = new BufferedReader(in);
            String line = buffer.readLine();
            Pattern pattern = Pattern
                    .compile("(.*)value=\"(\\d+).(\\d+).(\\d+).(\\d+)\"(.*)");
            Matcher matcher;
            while (line != null) {
                matcher = pattern.matcher(line);
                if (matcher.matches()) {
                    line = matcher.group(2) + "." + matcher.group(3) + "."
                            + matcher.group(4) + "." + matcher.group(5);
                    System.out.println(line);
                }
                line = buffer.readLine();
            }
        } catch (IOException e) {
            e.printStackTrace();

        } finally {
            try {
                if (buffer != null) {
                    buffer.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}
link|improve this answer
feedback

That is not as easy as it sounds. Java is platform independent, so I am not sure how to do it in Java. I am guessing that .NET contacts some web site which reports it back. There are a couple ways to go. First, a deeper look into the ICMP protocol may give you the information you need. You can also trace the IP you go through (your route). When you encounter an IP that is not in the following ranges:

  • 10.0.0.0 – 10.255.255.255
  • 172.16.0.0 – 172.31.255.255
  • 192.168.0.0 – 192.168.255.255

it is the IP one hop away from yours, and probably shares a few octets of information with your IP.

Best of luck. I'll be curious to hear a definitive answer to this question.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.