Using telnet to Simulate a HTTP Client: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 8: Line 8:
telnet localhost 10000
telnet localhost 10000
GET /index.html HTTP/1.1
GET /index.html HTTP/1.1
Host: localhost:10000
Connection: close
Connection: close



Revision as of 23:03, 8 January 2017

Internal

Overview

telnet localhost 10000
GET /index.html HTTP/1.1
Host: localhost:10000
Connection: close

HTTP/1.1 200 OK
Content-Length: 37
Server: NovaOrdis http-server
Connection: close
...
Connection closed by foreign host.