On Wed, 3 Oct 2001, Donald Plummer wrote: > How do you get telnet to show anything after "Escape character is '^]'."? > When I telnet to that site all I get is that, and then just a blinking > cursor where I can type things.
You're connecting to the HTTP port, so speak HTTP to it. In this case, you type "HEAD / HTTP/1.0" and then a blank line: > > [EMAIL PROTECTED]:~$ telnet www2.hyperion-records.co.uk 80 > > Trying 62.216.66.198... > > Connected to 62.216.66.198. > > Escape character is '^]'. > > HEAD / HTTP/1.0 > > > > HTTP/1.1 200 OK ...etc. M

