**********************************************
* Description: Knowledge of network IP packet
* Compatiablity: RDBMS 11g, 12c
* Date: 03:50 PM EST, 05/10/2017
**********************************************


 
<1> IP Packet:
     |
     |__ A packet is a basic unit of communication over a digital network. A packet is also called a datagram, a segment, a block, a cell or a frame, depending on the 
         protocol used for the transmission of data. When data has to be transmitted, it is broken down into similar structures of data before transmission, called packets, 
         which are reassembled to the original data chunk once they reach their destination.
		 
		 

<2> Structure of one Data Packet:
     |
     |__ The structure of a packet depends on the type of packet it is and on the protocol. Normally, a packet has a header and a payload.
         The header keeps overhead information about the packet, the service, and other transmission-related data. 
         For example, data transfer over the Internet requires breaking down the data into IP packets, which is defined in IP (Internet Protocol), and an IP packet includes:

         o. The source IP address, which is the IP address of the machine sending the data. 
         o. The destination IP address, which is the machine or device to which the data is sent.
         o. The sequence number of the packets, a number that puts the packets in order such that they are reassembled in a way to get the original data back exactly 
            as it was prior to transmission. 
         o. The type of service
         o. Flags
         o. And some other technical data
         o. The payload, which represents the bulk of the packet (all the above is considered as overhead), and is actually the data being carried. 
		 

		 
<3> Reference:
     |
     |__ https://www.lifewire.com/what-is-a-data-packet-3426310


	
	

Your Comments