Data Communication - N10-008 CompTIA Network+ : 1.1

Professor Messer
15 Sept 202112:46

Summary

TLDRThis script explains the concept of PDUs or protocol data units in networking, detailing how data is encapsulated and transferred across the network within Ethernet frames, IP packets, TCP/UDP segments, and DLC frames. It discusses the importance of headers for data processing, the role of control flags in TCP and IP headers, and the impact of MTU on data fragmentation. The script also covers methods to determine MTU size using the ping utility, emphasizing the need for optimizing network communication to avoid fragmentation and improve throughput.

Takeaways

  • πŸ“¦ PDUs, or Protocol Data Units, are the fundamental units of data transmission in a network, encapsulating data for transfer from one device to another.
  • πŸ”Œ Ethernet frames are a type of PDU used in local area networks, encapsulating data regardless of its content for transmission between MAC addresses.
  • 🌐 At the IP layer (Layer 3), data is sent across the network from one IP address to another, with the IP layer not concerned about the data's content.
  • πŸ“š The OSI model illustrates the encapsulation process, with each layer adding its own header to the data, from the application down to the physical layer.
  • πŸ”„ Encapsulation involves adding headers to data at each OSI layer, while decapsulation is the reverse process, removing headers to access the application data.
  • πŸŒ€ TCP and UDP are transport layer protocols (Layer 4) that add their headers to the data, with TCP providing reliable, ordered delivery and UDP offering faster, connectionless service.
  • πŸ“ˆ Control flags within TCP and UDP headers, such as SYN, PSH, RST, and FIN, dictate how data should be processed and managed during transmission.
  • πŸ” The maximum transmission unit (MTU) determines the largest size of data that can be sent over a network without fragmentation, affecting network efficiency.
  • 🧩 Fragmentation occurs when data exceeds the MTU, requiring the data to be split into smaller packets, which can slow down network traffic and require reassembly at the destination.
  • πŸ› οΈ Tools like the ping utility can be used to test MTU sizes by sending packets with the 'Don't Fragment' bit set to determine the largest unfragmented packet size.
  • πŸ”„ The process of determining MTU can be complex, especially in networks with multiple hops, and may require manual configuration if ICMP is filtered.

Q & A

  • What is a PDU or protocol data unit in the context of networking?

    -A PDU, or protocol data unit, is a single unit of data that is transmitted across a network. It is used to encapsulate data at various layers of the OSI model, allowing it to be sent from one device to another.

  • Why are Ethernet frames used in data transmission?

    -Ethernet frames are used to encapsulate all the data that needs to be sent from one MAC address to another on the network. Ethernet doesn't concern itself with the content of the frame, only that it is transmitted correctly.

  • What is the role of the IP layer in data transmission?

    -The IP layer, also known as layer 3, is responsible for sending data across the network from one IP address to another. It encapsulates the data within an IP packet without concern for the type of data it contains.

  • How does TCP or UDP data relate to the IP layer?

    -TCP (Transmission Control Protocol) and UDP (User Datagram Protocol) data are encapsulated within the IP layer. The IP layer is unaware of the specifics of the data it carries, focusing only on moving the data from one IP address to another.

  • What is the purpose of encapsulation in the OSI model?

    -Encapsulation in the OSI model is the process of adding headers to data at each layer as it moves down the stack. This process allows the data to be properly formatted and addressed for transmission across the network.

  • Can you explain the decapsulating process in networking?

    -Decapsulation is the reverse process of encapsulation. It involves the removal of headers from data as it moves up the OSI model at the receiving device, allowing the device to access the original application data.

  • What are the functions of TCP flags in data transmission?

    -TCP flags are control bits within the TCP header that provide instructions on how the data should be processed as it travels through the network. Flags like SYN, ACK, PSH, RST, and FIN have specific meanings that affect the flow and state of the data transmission.

  • What is the significance of the MTU in networking?

    -The Maximum Transmission Unit (MTU) is the largest size of a data packet that can be transmitted over a network without needing to be fragmented. It is important for optimizing network communication and avoiding the overhead associated with fragmentation.

  • Why is it important to know the MTU value in a network?

    -Knowing the MTU value is important because it helps in ensuring that data packets are not unnecessarily fragmented, which can slow down network traffic and reduce throughput. It also helps in avoiding issues when data needs to be sent over networks with different MTU settings.

  • What is the 'Don't Fragment' bit in IP headers, and why is it used?

    -The 'Don't Fragment' bit in IP headers is a flag that, when set, indicates that the data should not be fragmented as it travels through the network. It is used to ensure that the data packet remains intact or to prevent fragmentation when the network cannot handle the packet size.

  • How can the ping utility be used to test the MTU of a network?

    -The ping utility can be used with the '-f' flag to set the 'Don't Fragment' bit and the '-l' flag to specify the length of the data in bytes. This can help determine the largest packet size that can be sent across the network without fragmentation.

Outlines

00:00

πŸ”Œ Understanding PDUs and Data Encapsulation

This paragraph explains the concept of a Protocol Data Unit (PDU), which is a fundamental unit of data transmission in a network. It discusses how data is encapsulated at various layers of the OSI model, including Ethernet frames, IP packets, TCP segments, and UDP datagrams. The process of encapsulation involves adding headers at each layer to facilitate the transfer of data from one device to another across the network. The paragraph also describes the de-encapsulation process at the destination device, which involves removing the headers to access the application data. The importance of headers in conveying control information is highlighted, with an example of how the TCP header includes flags that guide the processing of data within the network.

05:02

πŸ“‹ Control Flags and Network Communication Efficiency

The second paragraph delves into the specifics of control flags within TCP and IP headers, which are crucial for managing data flow and processing within a network. It explains how flags such as SYN, PSH, RST, and FIN within the TCP header can affect network communication. The paragraph also touches on IP header flags related to data fragmentation, the role of the Maximum Transmission Unit (MTU) in determining the size of data packets that can be sent without fragmentation, and the impact of network architecture on MTU values. The importance of optimizing network communication to avoid fragmentation is emphasized, as it can improve throughput and reduce the overhead associated with reassembling fragmented data packets.

10:03

🌐 Testing Network MTU and Fragmentation

The final paragraph focuses on practical methods for testing the Maximum Transmission Unit (MTU) of a network, which is essential for understanding the network's capacity to handle data packets without fragmentation. It describes how to use the ping utility with the Don't Fragment (DF) bit set to determine the MTU by sending specific sizes of data and observing whether they can traverse the network without needing to be fragmented. The example provided demonstrates how to use the ping command with the -f and -l flags in Windows to test the MTU to Google's DNS server. The paragraph explains the implications of setting the DF bit and the potential for receiving ICMP messages if the data size exceeds the network's MTU, highlighting the need to adjust MTU settings in scenarios like VPN usage.

Mindmap

Keywords

πŸ’‘PDU

PDU, or Protocol Data Unit, is a fundamental concept in networking that refers to the data structure used at different layers of the OSI model for transmission. In the video, PDUs are described as units of data being transferred across the network, encapsulating various types of data such as Ethernet frames, IP packets, TCP segments, and UDP datagrams. The concept of PDUs is central to understanding how data moves within a network, as it highlights the process of data encapsulation and transmission at different layers.

πŸ’‘Ethernet

Ethernet is a widely used technology in local area networks (LANs) for data transmission. The script mentions Ethernet as a means of sending data within an Ethernet frame from one device to another, based on their MAC addresses. Ethernet frames encapsulate the data and control information necessary for the data to be sent across the network. The video uses Ethernet as an example to illustrate the process of data encapsulation at the data link layer of the OSI model.

πŸ’‘IP Layer

The IP layer, also known as layer 3 of the OSI model, is responsible for the transmission of data packets across different networks from one IP address to another. The script explains that the IP layer does not concern itself with the content of the data but focuses on routing the data to its destination. IP packets are a key concept in the video, as they encapsulate data from the transport layer and include essential information for routing and fragmentation.

πŸ’‘TCP

TCP, or Transmission Control Protocol, is a transport layer protocol that provides reliable, ordered, and error-checked delivery of a stream of data between applications. The video script discusses TCP headers and segments, emphasizing how TCP ensures data integrity and order through mechanisms like sequence numbers and acknowledgments. TCP is a critical component in the process of data encapsulation and transmission, as it adds reliability to the data transfer process.

πŸ’‘UDP

UDP, or User Datagram Protocol, is another transport layer protocol that is used for sending messages without establishing a connection between the communication partners. Unlike TCP, UDP is connectionless and does not guarantee data integrity or order. The script mentions UDP datagrams as part of the data encapsulation process, illustrating an alternative to TCP when reliability is not a primary concern.

πŸ’‘Encapsulation

Encapsulation in networking refers to the process of wrapping data with necessary headers and trailers as it moves down the OSI model layers. The script describes encapsulation as the method by which application data is packaged with TCP, IP, and Ethernet headers before being sent over the network. This process is essential for the video's theme, as it shows how data is prepared for transmission and how each layer contributes to the overall data packet structure.

πŸ’‘Decapsulation

Decapsulation is the reverse process of encapsulation, where the headers are removed as data moves up the OSI model layers towards its final destination. The video script explains that the destination device decapsulates the data by removing the Ethernet frame header, IP header, and TCP header to access the application data. Decapsulation is crucial for understanding how data is processed and made usable once it reaches its destination.

πŸ’‘OSI Model

The OSI, or Open Systems Interconnection, model is a framework used to understand how data is transmitted in a network. The script provides an illustrated view of how data is encapsulated and decapsulated at each layer of the OSI model. The OSI model is central to the video's narrative, as it structures the explanation of data transmission processes and the role of each layer in that process.

πŸ’‘TCP Flags

TCP flags are control bits within the TCP header that provide instructions on how to process the data during transmission. The script discusses various TCP flags such as SYN (synchronization), PSH (push), RST (reset), and FIN (finish), explaining their roles in controlling the flow and state of a TCP connection. TCP flags are a key concept in the video, as they illustrate the control mechanisms within the TCP protocol.

πŸ’‘MTU

MTU, or Maximum Transmission Unit, refers to the largest size of a data packet that can be transmitted over a network without needing to be fragmented. The script explains the importance of MTU in network design and how it affects data transmission, especially in scenarios involving network tunnels or VPNs. MTU is a critical concept in the video, as it relates to network efficiency and the need to avoid fragmentation for optimal data flow.

πŸ’‘Fragmentation

Fragmentation is the process of dividing a large data packet into smaller pieces so that it can traverse networks with smaller MTUs. The script describes how fragmentation can occur when the size of the data exceeds the MTU of a network and how it can impact network performance. Fragmentation is an important concept in the video, as it demonstrates the challenges in data transmission and the need for network optimization.

πŸ’‘ICMP

ICMP, or Internet Control Message Protocol, is used by network devices to communicate error messages and operational information. The script mentions ICMP in the context of MTU discovery and the potential issues that can arise if ICMP is filtered, preventing automated MTU determination. ICMP is relevant to the video's theme, as it highlights the protocols involved in network communication and error handling.

πŸ’‘VPN

A VPN, or Virtual Private Network, is a technology that creates a secure, encrypted connection over a public network. The script discusses the impact of VPNs on MTU settings, as VPN tunnels may require different MTU values to function correctly. VPNs are mentioned in the video to illustrate the need for proper MTU configuration in various networking scenarios.

Highlights

PDU, or protocol data unit, is essential for moving data across the network.

PDUs are sometimes referred to as transmission units.

Ethernet sends data within an Ethernet frame from one device to another.

Ethernet does not care about the content inside the frame, only the encapsulation.

Layer 3, or the IP layer, sends data from one IP address to another, regardless of the content.

TCP and UDP are types of data that can be encapsulated within an IP packet.

TCP and UDP headers are part of the encapsulation process in network communication.

Data encapsulation in the OSI model involves layers 5, 6, and 7 for application data.

TCP protocol is used to transport application data across the network.

IP header is added for sending TCP data and application data from one IP address to another.

DLC, or data link control, layer 2 frame header is used in Ethernet for encapsulating data.

Encapsulation and decapsulation processes are crucial for network interoperability.

Application data is encapsulated with TCP header, IP header, and frame header for transmission.

Decapsulation involves removing frame headers and IP headers to access the application data.

TCP flags like SYN, PSH, RST, and FIN control how data is processed in the network.

IP header flags deal with data fragmentation and are crucial for network efficiency.

Maximum Transmission Unit (MTU) determines the maximum size of data that can be sent without fragmentation.

Fragmentation of data can slow down network traffic and is undesirable.

MTU value is important for optimizing network communication and avoiding fragmentation.

Testing MTU using the ping utility can help determine the maximum data size that can be sent without fragmentation.

Transcripts

play00:02

Getting data moved from one part of the network

play00:04

to the other relies on something called

play00:07

a PDU, or a protocol data unit.

play00:09

Sometimes you'll hear these referred to

play00:11

as transmission units, because we're

play00:13

taking a little bit of data and transferring it

play00:16

across the network as a single unit.

play00:18

For example, if we're running Ethernet,

play00:20

we know that Ethernet is going to send everything

play00:23

within an Ethernet frame from one device or MAC address

play00:27

on the network to another MAC address that's on the network.

play00:30

Ethernet, though, doesn't care what's

play00:32

on the inside of this particular frame.

play00:35

It's simply encapsulating all of the data that

play00:37

may be underneath it and sending that across the network.

play00:41

A similar thing happens at the next layer up with layer 3,

play00:44

or the IP layer, where everything within the IP layer

play00:48

is being sent across the network from one IP address

play00:51

to the other.

play00:52

Inside of that IP packet is UDP data, TCP data,

play00:56

or some other type of data, but IP doesn't

play00:59

care what's on the inside.

play01:01

It simply knows that it's moving data

play01:03

across the network from one IP address to another.

play01:06

And where there is a TCP header or UDP header,

play01:09

there's probably going to be a TCP segment, or what

play01:12

we call a UDP datagram within that particular part

play01:16

of the packet.

play01:18

Here's an illustrated view of how

play01:20

this operates at each layer of the OSI model,

play01:23

and how data is encapsulated between each one

play01:26

of those parts.

play01:27

For example, let's start with using an application.

play01:30

We're sending data within our application,

play01:32

such as a web browser, and we need

play01:34

to get that data sent from the web server to the web client.

play01:38

That application data exists at OSI layers

play01:41

5, 6, and 7, or what we will generically

play01:43

call the application layers.

play01:45

To be able to send that application data,

play01:47

we need to transport it across the network using the TCP

play01:50

protocol, so we'll put a TCP header right

play01:53

in front of that application data

play01:55

and send it across using that OSI layer 4,

play01:58

or transport layer.

play02:00

We have to have an IP address that

play02:02

is able to send this TCP data and the application data that

play02:06

might be inside of it, so we need

play02:08

to add an IP header so that we can send information

play02:11

from one IP address to another IP address.

play02:14

And lastly, over Ethernet, we need

play02:16

to have a DLC, or data link control, layer 2 frame header.

play02:21

And in many cases, there's also a frame trailer

play02:23

to indicate where the end of this frame might be.

play02:27

The layer 2 frame header encapsulates

play02:29

all of the information within.

play02:31

So inside of this frame will be an IP header, a TCP header,

play02:35

and ultimately, the application data

play02:37

that we would like to send to the other side of the network.

play02:41

Let's expand this view to show both the sending and receiving

play02:45

device, and view the way the network might

play02:48

interoperate with all of this.

play02:49

So there's our application data at OSI layers 5, 6, and 7.

play02:53

On the left side is the source address

play02:55

that's sending this data, and we somehow

play02:57

want to get that application data

play02:59

to this destination device on the other side of the network.

play03:03

We'll start by encapsulating this data by

play03:05

including a TCP header, an IP header, and ultimately,

play03:09

the frame header and frame trailer.

play03:11

That information is going to be sent across the network, where

play03:15

it will then be received by the destination device.

play03:18

The destination device, though, needs the application data

play03:21

that's inside--

play03:22

it doesn't need all of this other information.

play03:24

So it will begin decapsulating this information-- removing

play03:28

the frame headers, removing the IP header,

play03:30

and ultimately removing the TCP header

play03:33

so that it can then access the application data.

play03:36

And finally, we've been able to transfer this data

play03:38

from the source device through the encapsulation

play03:41

process, the decapsulation process,

play03:44

and finally be able to receive the application

play03:47

data at the destination.

play03:49

Here's another way to visualize how

play03:51

this data is being encapsulated and decapsulated on both sides.

play03:56

We can start with our layer 5 through 7 application, data

play03:59

such as HTTPS, IMAP email information, or SSH terminal

play04:04

screens, where we're then going to take all of that

play04:07

and encapsulate it within some type of layer for protocol.

play04:11

This is commonly TCP or UDP.

play04:13

We will then encapsulate the layer 4 traffic

play04:16

within layer 3--

play04:17

which, these days, is commonly IP traffic--

play04:20

And then finally, layer 2 information on Ethernet.

play04:23

That would be a media access control address or MAC address,

play04:27

and that encapsulates all of this data within it.

play04:31

In previous views of this data, we

play04:33

mentioned that there's header information that

play04:35

precedes the data associated with these layers.

play04:38

And the header information is important

play04:40

because it tells the rest of the data how

play04:43

it should be processed.

play04:44

For example, on layer 4, we have TCP data.

play04:48

And within the TCP header, such as we have here,

play04:51

there's information called a TCP flag.

play04:55

This helps us understand how we can process this data as it's

play04:58

going through the network.

play04:59

This control information is setting

play05:01

bits that are within the header of this packet,

play05:04

and each one of those bits has a particular definition.

play05:08

This means that the device that's receiving this data

play05:11

can interpret those bits and understand how

play05:13

to process the data properly.

play05:15

We call these bits control flags,

play05:18

and we can identify whether a flag has

play05:20

been turned on or turned off, and then

play05:23

decide how these particular flags can affect the data flow.

play05:26

For example, we can look at the flags

play05:28

in this particular protocol decode

play05:30

and we can see that one flag has been set to 1.

play05:33

That means the data that's contained within this TCP

play05:36

part of the packet is acknowledgment data that

play05:39

has been set.

play05:40

You can see a number of different flags.

play05:42

For example, if the SYN flag is set,

play05:45

that means that there's a synchronization of sequence

play05:47

numbers that's occurring.

play05:49

If the push flag, or PSH flag, has been set,

play05:52

it pushes the data to the application

play05:54

without buffering anything else that might be incoming.

play05:57

There's also a reset flag, or RST,

play05:59

that resets the connection, and a FIN flag

play06:02

that designates that this is the last packet that

play06:04

will be sent by the sender.

play06:06

By turning on or off different flags,

play06:08

we can change how a device may interpret

play06:11

the rest of the data that is being

play06:13

sent using that TCP header.

play06:16

Not only are there flags within the TCP or UDP header--

play06:20

there are also flags within the IP header.

play06:23

You can see an example of those flags right here.

play06:26

Most of the flags being used at the IP header deal

play06:29

with the fragmentation of data.

play06:31

There may be times when you want to send traffic

play06:33

across the network, but because of the architecture

play06:36

or design of the network, you're,

play06:38

not able to send packets that are very large.

play06:40

In those cases, you may need to fragment

play06:42

the data to be able to get through the smaller size

play06:45

networks.

play06:46

We determine the maximum size that you're

play06:48

able to send using something called a maximum transmission

play06:52

unit, or an MTU.

play06:54

This designates the size of the data

play06:56

that we're able to send through the network

play06:58

without having to fragment any of that information further.

play07:02

The reason we don't want to fragment

play07:04

is that it commonly slows down the overall flow of traffic,

play07:07

and if you can optimize your network communication

play07:10

so that you're not fragmenting, you'll

play07:12

have a much higher throughput of traffic.

play07:15

This also eliminates any overhead

play07:17

of having to chop the data into smaller pieces,

play07:20

send those individual pieces across the network,

play07:23

and then rebuild those pieces when

play07:24

they get to the other side.

play07:26

That's why it's important to know the MTU value that

play07:29

would be used all the way through the network

play07:31

from the beginning of the communication all

play07:34

the way to the very end.

play07:35

But understanding what the MTU might be

play07:38

could sometimes be a very complicated process.

play07:41

There may be many different hops that

play07:43

are used to be able to communicate from point A

play07:45

to point B, and each one of those hops

play07:48

may be using a different MTU.

play07:50

There is an automated process that your system will

play07:53

use to attempt to determine what the MTU is when communicating

play07:57

to that other device, but unfortunately,

play07:59

if ICMP is filtered in that communication,

play08:02

there's no way to automate that process, which

play08:05

means you'll have to manually set the MTU on your side.

play08:09

Let's take a look at what this fragmentation really means.

play08:12

We've seen before, where we've taken some TCP, data

play08:15

we put a TCP header in front of it, an IP header

play08:18

in front of that, and finally, a DLC

play08:21

header on the outside to send it across our Ethernet network.

play08:25

The data that's on the inside from the IP header

play08:27

all the way through to the data that's being transmitted

play08:30

is our IP packet, and the maximum size

play08:33

of an IP packet on an Ethernet network is 1,500 bytes.

play08:38

If there's no fragmentation that's occurring anywhere

play08:41

on the network, you'll be able to send all 1,500

play08:44

bytes through the network without having any of that data

play08:47

fragmented along the way.

play08:49

Let's take an example, where we can only

play08:51

send a very small amount of data through the network.

play08:54

In this example, 16 bytes of data

play08:57

is the maximum transmission unit that's

play08:59

supported on this particular network.

play09:02

That means we might have 44 bytes of data

play09:05

that needs to be fragmented, and as we're sending it

play09:07

through the network, we're going to fragment the first section

play09:10

of it, or the first 16 bytes.

play09:12

We'll then send another frame of data that has another 16 bytes,

play09:16

and the last frame is going to send the remaining

play09:19

amount of data, up to 16 bytes.

play09:22

So if we do need to send data across the network that's

play09:24

44 bytes in length, but the MTU of this network

play09:28

is only 16 bytes, we're going to end up taking a single frame

play09:32

and splitting it up into three separate frames.

play09:36

Fortunately, when you're designing and creating

play09:38

a network, the MTU is usually set during that creation

play09:42

process, so once the network is built,

play09:44

it's very unusual for that MTU to change.

play09:47

We also know that there are going

play09:49

to be MTU changes if we have to tunnel any information,

play09:53

so if you're using a VPN of any type,

play09:55

you're probably going to need to set some MTU

play09:58

or ensure that the MTU is going to be properly set

play10:01

automatically.

play10:02

There is a flag within the IP part of the header that

play10:06

will specify that the information you're sending

play10:08

should not be fragmented as it goes through the network.

play10:12

And if you send data that's too large with a Don't Fragment bit

play10:15

set, that data may not be able to make it all

play10:18

the way through the network.

play10:19

And very commonly, you'll receive an ICMP message

play10:22

saying that this data is too large

play10:25

to send through this network.

play10:27

If you'd like to test your network between one

play10:30

device and another to see exactly what the MTU might be,

play10:33

you can test by using the ping utility.

play10:36

You can specify in ping to set that Don't Fragment bit,

play10:40

and then you can force a particular size of data

play10:42

to be sent through the network.

play10:44

In the case of Ethernet, the maximum size

play10:46

would be 1,472 bytes.

play10:50

Now, normally, that would be 1,500 bytes,

play10:52

but the ping command is specifying

play10:54

that 1,500 bytes minus the ICMP header of 8 bytes,

play10:58

and minus the 20-byte header of the IP

play11:01

address itself, leaving us with 1,472 as the maximum MTU that

play11:08

would be used for the ping command on an Ethernet network.

play11:11

In Windows, you can test this by using the ping command

play11:15

with the -f, which tells us to ping with the Don't Fragment

play11:19

bit set, and then with -l, which specifies the length of data

play11:24

you would like to use in bytes.

play11:25

And in this case, it's 1,472 bytes.

play11:29

And if you'd like to try this against Google's DNS server,

play11:32

you can then use the IP address of 8.8.8.8.

play11:36

Let's try this ping with the -f to don't fragment.

play11:40

We'll do -l of 1,472 bytes, and let's

play11:43

specify the DNS for Google.

play11:46

And you can see that we are able to send traffic with 1,472-byte

play11:52

ping frames from our device all the way through

play11:55

to Google's DNS, and then we do receive a response back from

play11:58

Google saying that that information was received.

play12:01

If we tried to do a packet that was larger than 1,472--

play12:05

let's try, for example, 1,482--

play12:08

we'll send that information, and it

play12:09

says this information needs to be fragmented,

play12:12

but you've set the Don't Fragment bit, which

play12:15

means it's not going to be able to traverse

play12:17

this particular network, and you're going

play12:19

to need to use a lower MTU.

play12:22

If this was going over VPN, we would simply

play12:24

keep moving that number lower and lower

play12:27

until finally it was able to send through the network,

play12:30

and we would be able to receive replies to our pings.

Rate This
β˜…
β˜…
β˜…
β˜…
β˜…

5.0 / 5 (0 votes)

Related Tags
Data EncapsulationNetwork ProtocolsEthernet FramesIP LayerTCP DataUDP DatagramsOSI ModelApplication DataMTU SettingsNetwork FragmentationPing Utility