diff --git a/Images/Bridge.png b/Images/Bridge.png new file mode 100644 index 0000000..578723b Binary files /dev/null and b/Images/Bridge.png differ diff --git a/Images/Internet_routers.png b/Images/Internet_routers.png new file mode 100644 index 0000000..a8fbe62 Binary files /dev/null and b/Images/Internet_routers.png differ diff --git a/Images/OSI_model.png b/Images/OSI_model.png new file mode 100644 index 0000000..078d35f Binary files /dev/null and b/Images/OSI_model.png differ diff --git a/Images/Repeater.png b/Images/Repeater.png new file mode 100644 index 0000000..c041abb Binary files /dev/null and b/Images/Repeater.png differ diff --git a/Images/Router.png b/Images/Router.png new file mode 100644 index 0000000..809be29 Binary files /dev/null and b/Images/Router.png differ diff --git a/Images/Switch.png b/Images/Switch.png new file mode 100644 index 0000000..4e2841f Binary files /dev/null and b/Images/Switch.png differ diff --git a/Images/Transport Layer.png b/Images/Transport Layer.png new file mode 100644 index 0000000..9cd3278 Binary files /dev/null and b/Images/Transport Layer.png differ diff --git a/Images/hub.png b/Images/hub.png new file mode 100644 index 0000000..ed5bf11 Binary files /dev/null and b/Images/hub.png differ diff --git a/Images/l2_l3_OSI_model.png b/Images/l2_l3_OSI_model.png new file mode 100644 index 0000000..5c53d77 Binary files /dev/null and b/Images/l2_l3_OSI_model.png differ diff --git a/Images/overview_osi.png b/Images/overview_osi.png new file mode 100644 index 0000000..66b98d3 Binary files /dev/null and b/Images/overview_osi.png differ diff --git a/README.md b/README.md index 60cfbbf..fcfae16 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ - [IP Addresses and MAC addresses](https://github.com/Mushigarou/NetPractice/tree/main#IP-Addresses-and-MAC-addresses) - [Overview of OSI Model]() + ## What Is TCP/IP? ⭐ ***The Transmission Control Protocol/Internet Protocol** is a **set of protocols** (communication standards) that describe how two or more computers can **communicate over a network**.* @@ -231,6 +232,35 @@ Link + Physical layer | Defines the networking methods (protocols) within the Entire IPv4 addresses +## Network Devices +### How Data Flows Through The Internet +#### Hosts : +⭐ *Any system that sends or receives traffic.* + - phone + - computer + - laptop + - servers + - cloud servers + - Internet of Things (IoT) (speaker, refrigerator...) + +⭐ **Client:** initiates request. **Servers** respond. (Relative to specific communication) + +#### IP Addresses : + +⭐ *IP Address is the identity of each host* + - IPv4 is 32bit + - Hierarchically assigned + +![IP addresses](https://github.com/Mushigarou/NetPractice/blob/main/Images/ip_addresses.png) + +💡 : all of those hosts above exist in a network + +#### Network : +⭐ Network is what **transports traffic between hosts** + - Logical grouping of hosts which require similar connectivity + - Subnetworks, subnet + - 💡 Networks connect to other networks (The Internet is simply an inter-connected network) +
↥ back to top