Im trying to get the local IP. It should work with
System.out.println(Inet4Address.getLocalHost().getHostAddress());
or
InetAddress addr = InetAddress.getLocalHost(); ip = addr.getHostAddress(); System.out.println("Ip: " + ip);
but it always returns 192.168.178.154
instead of 192.168.178.119
(This is my real local IP(Terminal --> ifconfig
))
What should I do?
Sounds like you have two IP addresses.
On a computer that has one network adapter, the IP address that is chosen is the Primary IP address of the network adaptor in the computer. However, on a multiple-homed computer, the stack must first make a choice. The stack cannot make an intelligent choice until it knows the target IP address for the connection.
When the program sends a connect() call to a target IP address, or sends a send() call to a UDP datagram, the stack references the target IP address, and then examines the IP route table so that it can choose the best network adapter over which to send the packet. After this network adapter has been chosen, the stack reads the Primary IP address associated with that network adapter and uses that IP address as the source IP address for the outbound packets.
Document
If you want to activate second IP and its for example LAN, unplug it and after 10 sec plug in back. Other IP might be selected as host IP in routing table.
You can get 2nd IP from getNetworkInterfaces
.
Try to run followed code:
public static void main(String[] args) throws Exception { System.out.println("Your Host addr: " + InetAddress.getLocalHost().getHostAddress()); // often returns "127.0.0.1" Enumeration<NetworkInterface> n = NetworkInterface.getNetworkInterfaces(); for (; n.hasMoreElements();) { NetworkInterface e = n.nextElement(); Enumeration<InetAddress> a = e.getInetAddresses(); for (; a.hasMoreElements();) { InetAddress addr = a.nextElement(); System.out.println(" " + addr.getHostAddress()); } } }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With