I have an existing php web application, I'm on IPv4, how can I fake an IPv6 address to check if the application is compatible with it? or is there a better way to check IPv6 compatibility?
Update: My application registers the user's ip when performing certain actions. IP addresses are stored in the database (from another question, I can understand that BINARY is the best type of column). The application should also be searchable by IP.
I want apache / php to work as if I were using IPv6, I need to be sure that the compatibility of my application with IPv6 is ready for production on both IPv4 and IPv6 networks.
source share