You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apache-bugdb@apache.org by tr...@apache.org on 2002/03/13 01:00:42 UTC

Re: general/8138: Apache 2.0 don't bind to the port correctly

[In order for any reply to be added to the PR database, you need]
[to include <ap...@Apache.Org> in the Cc line and make sure the]
[subject line starts with the report component and number, with ]
[or without any 'Re:' prefixes (such as "general/1098:" or      ]
["Re: general/1098:").  If the subject doesn't match this       ]
[pattern, your message will be misfiled and ignored.  The       ]
["apbugs" address is not added to the Cc line of messages from  ]
[the database automatically because of the potential for mail   ]
[loops.  If you do not include this Cc, your reply may be ig-   ]
[nored unless you are responding to an explicit request from a  ]
[developer.  Reply only with text; DO NOT SEND ATTACHMENTS!     ]


Synopsis: Apache 2.0 don't bind to the port correctly

State-Changed-From-To: feedback-closed
State-Changed-By: trawick
State-Changed-When: Tue Mar 12 16:00:42 PST 2002
State-Changed-Why:
No feedback received...

If you want to pursue this further, try it on a recent
version of Apache 2.0 and see if the problem persists.  If so,
note that some platforms (e.g., NetBSD) only allow IPv6 connections to an IPv6 listening socket.  If this is
the case on your platform, you'll need two listen
statements per port so that Apache gets separate
IPv4 and IPv6 sockets.  Here is an example:

  Listen 0.0.0.0:80
  Listen [::]:80
Do this for each port.
See PR 7492 for additional discussion.  For now, that other
PR is suspended.