You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@httpd.apache.org by bu...@apache.org on 2007/03/17 17:12:24 UTC

DO NOT REPLY [Bug 41874] New: - Integer IP addresses

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41874>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41874

           Summary: Integer IP addresses
           Product: Apache httpd-2
           Version: 2.0-HEAD
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: All
        AssignedTo: bugs@httpd.apache.org
        ReportedBy: mail@dimme.net
                CC: mail@dimme.net


Apache httpd can't handle integer ip addresses in some cases, I can't find out
which ones. It sais it is bad request. For example:

This website runs on apache and works:
http://1179924656/

But these two are not working:
http://3573879204/
http://3257923018/

I thought it may depend on vhosts and therefore installed apache on my computer
and created a vhost that handles *, it still didn't work.

I used "Mozilla/5.0 (Windows; U; Windows NT 5.1; sv-SE; rv:1.8.1.2)
Gecko/20070219 Firefox/2.0.0.2" to surf on these sites, other web browsers may
translate the integer to a normal IP address before surfing on the page.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org


DO NOT REPLY [Bug 41874] - Integer IP addresses

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41874>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41874


nick@webthing.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEEDINFO                    |RESOLVED
         Resolution|                            |INVALID




------- Additional Comments From nick@webthing.com  2007-03-18 11:19 -------
OK, maybe you admin servers in both Greece and Sweden (being the registered
locations of the two you say don't work).  But they're returning a perfectly
valid 400 response, just rejecting the request.  That's a function of how the
server is configured, and is a good thing to do with a request that a server
isn't configured to accept.

If you want it to do otherwise and can't make it work, please address your
question to a user support forum.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org


DO NOT REPLY [Bug 41874] - Integer IP addresses

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41874>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41874


nick@webthing.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |NEEDINFO




------- Additional Comments From nick@webthing.com  2007-03-17 10:25 -------
This doesn't make sense.  What leads you to suppose any of these numbers resolve
to your server?

Sounds like addressing a support query to Microsoft, then blaming Apache for not
answering it.  And the query was about your coffee grinder.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org


DO NOT REPLY [Bug 41874] - Integer IP addresses

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41874>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41874


jorton@redhat.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |CLOSED




------- Additional Comments From jorton@redhat.com  2007-03-19 04:29 -------
This is nothing to do with server configuration.

Browsers resolve URIs like this because of the use of functions like
inet_addr(), which will map a 32-bit integer directly to an IPv4 address.  But
this syntax is not permitted by the grammar for URIs, and the Host header
generated by its use hence also has invalid syntax; the server must reject such
requests with a 400 response.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org


DO NOT REPLY [Bug 41874] - Integer IP addresses

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41874>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41874





------- Additional Comments From mail@dimme.net  2007-03-18 08:38 -------
The thing is that nothing leads me to suppose anything, there numbers ARE
resolving to a server, at least on my computer and all computers I've ever used.

Perhaps you should read this: http://www.aboutmyip.com/AboutMyXApp/IP2Integer.jsp

If I can ping a computer with this kind of IP address, then I should see all
services running on the computer correctly, and that includes Apache.

I'm not blaming Apache for anything, it would be just cool if it worked right.

(In reply to comment #1)
> This doesn't make sense.  What leads you to suppose any of these numbers resolve
> to your server?
> 
> Sounds like addressing a support query to Microsoft, then blaming Apache for not
> answering it.  And the query was about your coffee grinder.



-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org