February 2012
M T W T F S S
« Jan    
 12345
6789101112
13141516171819
20212223242526
272829  

Overview Of The Application Layer




Computer networks are inherently insecure. To keep information secret, it must be encrypted. Encryption protocols fall into two general classes: secret key (e.g. DES, IDEA), and public key (e.g. RSA). Using these protocols is straight-forward; the hard part is key management. In addition to providing secrecy, cryptographic protocols can also provide authentication. Finally, cryptography can [...]



Overview Of The Transport Layer




The transport layer is the key to understanding layered protocols. It provides various services, the most important of which is an end-to-end, reliable, connection-oriented byte stream from sender to receiver. It is accessed through service primitives that permit the establishment, use and release of connection. Transport protocols must be able to do connection management over [...]



Quick Tip: URLs – Uniform Resource Locator




URLs, or Uniform Resource Locators, are the method by which documents or data are addressed in the World Wide Web. The URL contains the following information:

- the protocol. – the DNS name of the machine on which the page is located. – the local name uniquely indicating the specific page. – the location [...]



WWW – The Server Side




For all the incoming connectionts from different clients, every website is associated with a server process listening to TCP port 80. The client sends a request after the connection is made and the server sends the reply and then the connection is released. The protocol that is responsible for requests and replies is called HTTP.

[...]