Data packet: Difference between revisions

From Computer Science Wiki
No edit summary
No edit summary
(13 intermediate revisions by the same user not shown)
Line 17: Line 17:


(Above used with gratitude from: https://www.lifewire.com/what-is-a-data-packet-3426310<ref>https://www.lifewire.com/what-is-a-data-packet-3426310</ref>)
(Above used with gratitude from: https://www.lifewire.com/what-is-a-data-packet-3426310<ref>https://www.lifewire.com/what-is-a-data-packet-3426310</ref>)
== A diagram of a packet ==
[[File:Ip header.jpg]]
== Looking for a basic introduction to packets ?==
== Looking for a basic introduction to packets ?==


Line 31: Line 36:
</html>
</html>


== What do you actually NEED to know? ==  
== Do I understand this? ==
<html>
<iframe src="https://assess.computersciencelearning.org/h5p/31/embed" width="846" height="426" frameborder="0" allowfullscreen="allowfullscreen"></iframe><script src="https://assess.computersciencelearning.org/modules/h5p/vendor/h5p/h5p-core/js/h5p-resizer.js" charset="UTF-8"></script>
</html>
 
 
== Skills ==
 
You should be aware how to capture and view packets. Diagnosing network problems via packet analysis is '''not within the scope of IB Computer Science''', but you should be able to view a network packet. The de-facto tool for this stuff is [https://www.wireshark.org/ wireshark]. It will take you many hours to learn how to use wireshark.
 
OS X : <syntaxhighlight inline lang="bash">nettop -m tcp</syntaxhighlight>
 
OS X / Linux : <syntaxhighlight inline lang="bash">sudo tcpdump -nnSX port 443</syntaxhighlight>
 
OS X / Linux: <syntaxhighlight inline lang="bash">sudo tcpdump -nnSX port 80</syntaxhighlight> (visit example.com after running this command).
 
tcpdump is a complex and powerful tool to view packets. There is a superb website to learn more about this, [https://danielmiessler.com/study/tcpdump/ you can request by clicking this link]
 
== Standards ==  


* Describe how communication over networks is broken down into different layers
* Define the terms: protocol, data packet
* Define the terms: protocol, data packet
* Explain how data is transmitted by packet switching


== References ==
== References ==

Revision as of 10:48, 6 January 2020

Networks[1]

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.

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:

  • The source IP address, which is the IP address of the machine sending the data.
  • The destination IP address, which is the machine or device to which the data is sent.
  • 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.
  • The type of service
  • Flags
  • And some other technical data
  • The payload, which represents the bulk of the packet (all the above is considered as overhead), and is actually the data being carried.

(Above used with gratitude from: https://www.lifewire.com/what-is-a-data-packet-3426310[2])

A diagram of a packet[edit]

Ip header.jpg

Looking for a basic introduction to packets ?[edit]



Do I understand this?[edit]


Skills[edit]

You should be aware how to capture and view packets. Diagnosing network problems via packet analysis is not within the scope of IB Computer Science, but you should be able to view a network packet. The de-facto tool for this stuff is wireshark. It will take you many hours to learn how to use wireshark.

OS X : nettop -m tcp

OS X / Linux : sudo tcpdump -nnSX port 443

OS X / Linux: sudo tcpdump -nnSX port 80 (visit example.com after running this command).

tcpdump is a complex and powerful tool to view packets. There is a superb website to learn more about this, you can request by clicking this link

Standards[edit]

  • Define the terms: protocol, data packet

References[edit]