Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Assuming one wants to migrate a Java application working on ipv4 to ipv6, what is the best 'from ipv4 to ipv6' tutorial available to help Java coders migrating their applications? I am looking for tips, tricks & caveats.

Does anyone have experience to share? Does anyone have good references/link to provide? Else, does anyone have a complete check-list or todo-list? Thanks!

share|improve this question

2 Answers

up vote 4 down vote accepted

First should look at this answer

There is no IPv4 to IPv6 mapping that is meaningful. things like 0.0.0.0 and 127.0.0.1 are special cases in the spec, so they have equivalent meaning. But given an IPv4 address it tells you nothing about what its specific IPv6 address would be. You can use a DNS lookup to see if a given IP address resolves to a host which in turn resolves to an IPv6 address in addition to an IPv4 address, but the DNS server would have to be configured to support that for the specific machine.

Also

Networking IPv6 User Guide for JDK/JRE 5.0

Class Inet6Address

For example; isIPv4CompatibleAddress()

public boolean isIPv4CompatibleAddress()

    Utility routine to check if the InetAddress is an IPv4 compatible IPv6 address.

    Returns:
        a boolean indicating if the InetAddress is an IPv4 compatible IPv6 address; or false if address is IPv4 address.
share|improve this answer

Unless you assumed a specific address format e.g. in configuration files or storage, there is little to worry about: InetAddress works equally well with IPv4 and IPv6 addresses.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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