Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6938353
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T12:28:59+00:00 2026-05-27T12:28:59+00:00

How do you determine which network interface is connected to the internet using Java?

  • 0

How do you determine which network interface is connected to the internet using Java? For example, I run

InetAddress.getLocalHost().getHostAddress();

and within Eclipse this returns exactly what I intend, 192.168.1.105. However, if I package this into a jar file and run the program, the code returns 169.254.234.50. Looking into this, I found this is the IP address of a VMware Virtual Ethernet Adapter interface on my machine.

Is there any way to determine the interface connected to the internet, yet at the same time maintain portability for my code?

Comparison of Interfaces

Interface [net4]

display name  : Intel(R) Centrino(R) Ultimate-N 6300 AGN
MTU           : 1500
loopback      : false
point to point: false
up            : true
virtual       : false
multicast     : true
HW address    : 00 24 D7 2C 5F 70 
INET address (IPv4): 192.168.1.105
  host name           : MyComputer
  canonical host name : MyComputer
  loopback            : false
  site local          : true
  any local           : false
  link local          : false
  multicast           : false
  reachable           : true

Interface [eth5]

display name  : VMware Virtual Ethernet Adapter for VMnet1
MTU           : 1500
loopback      : false
point to point: false
up            : true
virtual       : false
multicast     : true
HW address    : 00 50 56 C0 00 01 
INET address (IPv4): 169.254.234.50
  host name           : MyComputer
  canonical host name : MyComputer
  loopback            : false
  site local          : false
  any local           : false
  link local          : true
  multicast           : false
  reachable           : true

There’s a third VMware interface with site local=true and link local=false, so those fields aren’t any help either.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T12:28:59+00:00Added an answer on May 27, 2026 at 12:28 pm

    On my laptop (running Windows 7, with Virtual Box and it’s network interface installed) the following code prints out the name of my wireless interface along with my local address. It uses a brute force approach at the end of the day, but will only try and actually connect to addresses that are considered to be the best candidates.

    // iterate over the network interfaces known to java
    Enumeration<NetworkInterface> interfaces = NetworkInterface.getNetworkInterfaces();
    OUTER : for (NetworkInterface interface_ : Collections.list(interfaces)) {
      // we shouldn't care about loopback addresses
      if (interface_.isLoopback())
        continue;
    
      // if you don't expect the interface to be up you can skip this
      // though it would question the usability of the rest of the code
      if (!interface_.isUp())
        continue;
    
      // iterate over the addresses associated with the interface
      Enumeration<InetAddress> addresses = interface_.getInetAddresses();
      for (InetAddress address : Collections.list(addresses)) {
        // look only for ipv4 addresses
        if (address instanceof Inet6Address)
          continue;
    
        // use a timeout big enough for your needs
        if (!address.isReachable(3000))
          continue;
    
        // java 7's try-with-resources statement, so that
        // we close the socket immediately after use
        try (SocketChannel socket = SocketChannel.open()) {
          // again, use a big enough timeout
          socket.socket().setSoTimeout(3000);
    
          // bind the socket to your local interface
          socket.bind(new InetSocketAddress(address, 8080));
    
          // try to connect to *somewhere*
          socket.connect(new InetSocketAddress("google.com", 80));
        } catch (IOException ex) {
          ex.printStackTrace();
          continue;
        }
    
        System.out.format("ni: %s, ia: %s\n", interface_, address);
    
        // stops at the first *working* solution
        break OUTER;
      }
    }
    

    (I’ve updated my answer with isReachable(...) based on Mocker Tim’s answer.)

    One thing to watch out for. socket.bind(...) would bark at me that the address and port is already in use if I tried to run my code too fast in succession like the connection isn’t cleaned up fast enough. 8080 should be a random port maybe.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How do I determine which network domain I am connected to from VB.Net?
How do I determine which version of comctl32.dll is being used by a C#
I need to determine which version of GTK+ is installed on Ubuntu Man does
What factors determine which approach is more appropriate?
I need to determine which pages of a Word document that a keyword occurs
Is it possible to determine which submit button was used? I have a confirmation
I am trying to determine which implementation of the data structure would be best
How can you determine which rubygem is being used in response to a require
How does Castle Windsor determine which constructor to resolve when there are multiple constructors
Is it possible to determine which property of an ActiveX control is the default

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.