Skip to content

Instantly share code, notes, and snippets.

@shalk
Created September 19, 2018 08:20
Show Gist options
  • Save shalk/14b3d6571603ecd1ee388367b069b898 to your computer and use it in GitHub Desktop.
Save shalk/14b3d6571603ecd1ee388367b069b898 to your computer and use it in GitHub Desktop.
try {
InetAddress addr = InetAddress.getLocalHost();
if (addr.isSiteLocalAddress()
&& !addr.isLoopbackAddress()
&& !(addr instanceof Inet6Address)
) {
return addr.getHostAddress();
}
} catch (Throwable e) {
LOGGER.warn("InetAddress.getLocalHost() fail", e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment