From 6cad4fb95707ff2cc656173adbdd1ff12d052f86 Mon Sep 17 00:00:00 2001
From: laumane <58359255+laumane@users.noreply.github.com>
Date: Thu, 25 Aug 2022 08:02:08 +0200
Subject: [PATCH] Solutions for MTU (#277)
2 solutions
---
README.md | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/README.md b/README.md
index fd90189..844c525 100644
--- a/README.md
+++ b/README.md
@@ -357,10 +357,16 @@ Read more [here](https://linuxjourney.com/lesson/dhcp-overview)
What is MTU?
+
+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.
What happens if you send a packet that is bigger than the MTU?
+
+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.