I am confused about what the introduction of IPv6 means for me as a developer and my legacy applications.
I understand IPv4 and IPv6 are inherently incompatible. Will IPv4 clients be able to visit websites using IPv6, and will IPv6 clients be able to visit IPv4 websites?
I check the IP addresses of my Spring MVC website visitors like this:
private String getIp(HttpServletRequest request) { return request.getRemoteAddr(); }So far, this has always returned IPv4 addresses on the format a.b.c.d. Will this change if a client using IPv6 connects to my website? Or could it happen that various tunneling techniques make IPv6 clients masquerade themselves as IPv4 clients depending on my website setup?
When it comes to retrieving and processing IP addresses, are there any other IPv6 issues I am likely to face?