Mukezh

Session DNS

Apr 1st, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.39 KB | None | 0 0
  1. DNS (Domain Name System)
  2. ==========================
  3. The Domain Name System (DNS) is the phonebook of the Internet.
  4. google.com--> 121.123.23.212
  5.  
  6. Web browsers interact through Internet Protocol (IP) addresses. DNS translates domain names to IP addresses so browsers can load Internet resources.
  7.  
  8.  
  9.  
  10. How DNS works:
  11. https://www.youtube.com/watch?v=2ZUxoi7YNgs
  12.  
  13.  
  14. OSI Layer
  15. ============
  16. 7 Layers:
  17.  
  18. Sender Receiver
  19. ======= ========
  20.  
  21. 7. Application Layer 7. Application Layer
  22.  
  23. 6. Presentation Layer 6. Presentation Layer
  24.  
  25. 5. Session Layer 5. Session Layer
  26.  
  27. 4. Transport Layer 4. Transport Layer
  28.  
  29. 3. Network Layer 3. Network Layer
  30.  
  31. 2. Data Link Layer 2. Data Link Layer
  32.  
  33. 1. Physical Layer 1. Physical Layer
  34. | ^
  35. | |
  36. |------------->---->----->--------|
  37.  
  38.  
  39. Application Layer: All applications and utilities that communicate with network fall in this layer.
  40. Like your Browser...
  41.  
  42. Presentation Layer:
  43. This layer is usually part of an operating system (OS) and converts incoming and outgoing data from one presentation format to another -- for example, from clear text to encrypted text at one end and back to clear text at the other.
  44.  
  45. Session Layer:
  46. This layer sets up, coordinates and terminates conversations. Its services include authentication and reconnection after an interruption.
  47.  
  48. Transport Layer:
  49. This layer manages packetization of data, then the delivery of the packets, including checking for errors in the data once it arrives. (TCP AND UDP)
  50. -->Segmentation
  51. -->Connection management
  52. -->Reliable and unreliable data delivery
  53.  
  54.  
  55.  
  56.  
  57. Network Layer:
  58. This layer handles addressing and routing the data -- sending it in the right direction to the right destination on outgoing transmissions and receiving incoming transmissions at the packet level.
  59. Network layer is responsible for providing logical address known as IP address. Router works on this layer. Main functions of this layer are following:-
  60. -->Define IP address
  61. -->Find routes based on IP address to reach its destination
  62.  
  63. Data link Layer:
  64. It forms frames from the packets that are received from network layer and gives it to physical layer.Outgoing messages are assembled into frames.
  65. --> Defining the Media Access Control (MAC) or hardware addresses
  66. --> Defining the physical or hardware topology for connections
  67. --> Defining how the network layer protocol is encapsulated in the data link layer frame
  68.  
  69.  
  70. Physical Layer:
  71. All the transmission of data in a network is done in 0 and 1 so that converion is done over here .
  72.  
  73.  
  74. TCP/IP Model:
  75. ===============
  76. 4 layers
  77.  
  78. Sender Receiver
  79. ======= ========
  80.  
  81. 4. Application Layer 4. Application Layer
  82.  
  83. 3. Transport Layer 3. Transport Layer
  84.  
  85. 2. Internet Layer 2. Internet Layer
  86.  
  87. 1. Network Interface 1. Network Interface
  88.  
  89.  
  90.  
  91. OSI - protocol independent,TL guarantees delivery of packets
  92. TCP/IP - based on standard protocol,TL does not
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99. Web Technology Basics
  100. =======================
  101. Domain Name
  102. Hosting Spaces
  103. Server
  104. Client
  105. Backend (Database)
  106. Front end
  107. Browsers
Add Comment
Please, Sign In to add comment