It is 97.107.136.71 for IPv4 and 2600:3c03:0:0:f03c:91ff:fe89:7488 for IPv6, however your understanding of HTTP is limited to version 1.0 of the protocol for which each site must have a unique IP address. HTTP 1.1 introduced the concept of name-based virtual hosting <http://en.wikipedia.org/wiki/Virtual_hosting> so that multiple sites can be hosted on a single IP address and enable the vast swath of shared hosting services now available on the Internet. A HTTP 1.1 request looks like this ( for the URL http://www.example.com/ ):
GET / HTTP/1.1 Host: www.example.com Compared with the previous version which only provided the path: GET / HTTP/1.0 Thus it is necessary to provide a hostname in the request otherwise you may receive a response for a different website. In the case of http://97.107.136.71/ you will see the stock files for the nginx webserver <http://en.wikipedia.org/wiki/Nginx>. -- Steve-o On 26 March 2015 at 16:04, Peter Rosario <[email protected]> wrote: > I asked you to give me the IP address of the server. You haven't told me > what it is. Am I to infer that it is 97.107.136.71? > > Also, it is not necessary to modify the hosts file or use the --resolve > switch. I merely have to replace the host name with the host IP address. > That is what I have done and it doesn't work. Have you clicked on the link > > http://97.107.136.71/archive/ZeroMQ-4.0.4~miru1.0-x86.exe > > to see for yourself? > > > On Thu, Mar 26, 2015 at 12:36 PM, Steven McCoy <[email protected]> > wrote: > >> Oops, an nginx misconfiguration for IPv6 apologies if you are using that. >> >> Also, IPv4 it requires HTTP 1.1 virtual hosts support, i.e. stick >> "97.107.136.71 miru.hk" in the hosts file and operate as normal. >> Alternatively use a command line tool such as cURL and bypass DNS like this: >> >> curl -O http://miru.hk/archive/ZeroMQ-4.0.4~miru1.0-x86.exe --resolve >> 97.107.136.71 >> >> -- >> Steve-o >> On 26 March 2015 at 12:49, Peter Rosario <[email protected]> wrote: >> >>> Could you give me the IP address of the server? With that I can bypass >>> the miru.hk DNS name entirely. >>> >>> I tried >>> >>> http://64.22.103.234/archive/ZeroMQ-4.0.4~miru1.0-x86.exe >>> >>> and >>> >>> http://97.107.136.71/archive/ZeroMQ-4.0.4~miru1.0-x86.exe >>> >>> Neither one worked. >>> >>> _______________________________________________ >>> zeromq-dev mailing list >>> [email protected] >>> http://lists.zeromq.org/mailman/listinfo/zeromq-dev >>> >>> >> >> _______________________________________________ >> zeromq-dev mailing list >> [email protected] >> http://lists.zeromq.org/mailman/listinfo/zeromq-dev >> >> > > _______________________________________________ > zeromq-dev mailing list > [email protected] > http://lists.zeromq.org/mailman/listinfo/zeromq-dev > >
_______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
