May 062011
Limit Apache only listen to IPv4 address
Answer:
Apache httpd web server might listen IPv6 address if your system support IPv6.
To disable IPv6 supprt, add the following lines to the Apache configuration (httpd.conf)
# Listen 80
Listen 0.0.0.0:80 # New value
Restart Apache to take effect
# apachectl -k graceful