webserver

bsp: HTTP1.0:

      telnet www.example.com 80
      GET / HTTP/1.0

oder mit HTTP1.1:

      telnet www.example.com 80
      GET / HTTP/1.1
      Host: www.example.com
      Connection: Close

oder:

      telnet www.example.com 80
      GET / HTTP/1.1
      Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*
      Accept-Language: en-us
      User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
      Host: www.example.com
      Connection: Close