Solutions for MTU (#277)

2 solutions
This commit is contained in:
laumane 2022-08-25 08:02:08 +02:00 committed by GitHub
parent 03a92d5bea
commit 6cad4fb957
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -357,10 +357,16 @@ Read more [here](https://linuxjourney.com/lesson/dhcp-overview)
<details>
<summary>What is MTU?</summary><br><b>
MTU stands for Maximum Transmission Unit. It's the size of the largest PDU (protocol Data Unit) that can be sent in a single transaction.
</b></details>
<details>
<summary>What happens if you send a packet that is bigger than the MTU?</summary><br><b>
With IPv4 protocol, router can fragment the PDU then sending all the fragmented PDU through the transaction.
With IPv6 protocol, it issues a error to the user's computer.
</b></details>
<details>