Commit 44d53c
2025-03-07 21:33:43 R. Bishop: Initial Commit/dev/null .. networking/layering.md | |
@@ 0,0 1,94 @@ | |
+ | # Network Layering |
+ | |
+ | ## What is Network Layering? |
+ | |
+ | Network layering is a **conceptual framework** used to divide network communication into separate, manageable layers, each handling a specific function. This **modular approach** simplifies troubleshooting, enhances interoperability, and ensures efficient data transmission across networks. The most widely used network layering models are the **OSI (Open Systems Interconnection) Model** and the **TCP/IP Model**. |
+ | |
+ | --- |
+ | |
+ | ## Why Use a Layered Approach? |
+ | |
+ | ### **Simplifies Network Design & Implementation** |
+ | - Each layer has a **specific role**, making it easier to design and upgrade networks. |
+ | - Changes in one layer do not affect others, ensuring **scalability and flexibility**. |
+ | |
+ | ### **Interoperability & Standardization** |
+ | - Ensures different devices and protocols can work together **seamlessly**. |
+ | - Adheres to **international networking standards** like **ISO/IEC 7498** (OSI Model). |
+ | |
+ | ### **Easier Troubleshooting & Maintenance** |
+ | - Problems can be isolated and fixed within a specific layer. |
+ | - Reduces complexity when diagnosing **network failures or security issues**. |
+ | |
+ | ### **Improved Security & Data Management** |
+ | - Security measures can be applied at different layers (e.g., **firewalls at Layer 3, encryption at Layer 6**). |
+ | - Data handling and management are streamlined across layers. |
+ | |
+ | --- |
+ | |
+ | ## The OSI Model: A 7-Layer Network Architecture |
+ | |
+ | The **OSI Model**, developed by the **International Organization for Standardization (ISO)**, defines seven distinct layers, each responsible for a specific networking function. |
+ | |
+ | | **Layer** | **Layer Name** | **Function** | **Example Protocols & Technologies** | |
+ | |----------|--------------|------------|--------------------------------| |
+ | | **7** | Application | End-user services & interfaces | HTTP, FTP, SMTP, DNS | |
+ | | **6** | Presentation | Data translation, encryption, compression | SSL/TLS, JPEG, MPEG | |
+ | | **5** | Session | Establishes, maintains, and terminates sessions | NetBIOS, RPC, PPTP | |
+ | | **4** | Transport | Reliable data delivery, flow control, error handling | TCP, UDP | |
+ | | **3** | Network | Routing, addressing, and packet forwarding | IP, ICMP, ARP, OSPF | |
+ | | **2** | Data Link | MAC addressing, error detection, physical transmission | Ethernet, Wi-Fi, PPP | |
+ | | **1** | Physical | Transmission of raw data bits over the medium | Cables, radio signals, fiber optics | |
+ | |
+ | --- |
+ | |
+ | ## The TCP/IP Model: A Practical Approach |
+ | |
+ | The **TCP/IP Model**, also known as the **Internet Protocol Suite**, is the foundation of modern internet communication. It condenses the OSI model into **four layers**, focusing on real-world networking functions. |
+ | |
+ | | **Layer** | **OSI Equivalent** | **Function** | **Example Protocols** | |
+ | |----------|----------------|------------|-----------------| |
+ | | **4 - Application** | Layers 7, 6, 5 | Handles end-user applications & services | HTTP, SMTP, DNS, FTP | |
+ | | **3 - Transport** | Layer 4 | Ensures reliable data delivery & error control | TCP, UDP | |
+ | | **2 - Internet** | Layer 3 | Routing, addressing, and packet forwarding | IP, ICMP, ARP | |
+ | | **1 - Network Access** | Layers 2 & 1 | Defines hardware-level communication | Ethernet, Wi-Fi, DSL | |
+ | |
+ | --- |
+ | |
+ | ## Key Differences: OSI vs. TCP/IP |
+ | |
+ | | **Feature** | **OSI Model** | **TCP/IP Model** | |
+ | |------------|-------------|----------------| |
+ | | **Number of Layers** | 7 | 4 | |
+ | | **Development** | Theoretical model | Practical implementation | |
+ | | **Use Case** | Educational, standardization | Internet & real-world networking | |
+ | | **Protocol Dependency** | Protocol-independent | Based on TCP/IP protocols | |
+ | | **Security** | Defined at multiple layers | Integrated but less explicitly structured | |
+ | |
+ | --- |
+ | |
+ | ## Importance of Network Layering in Security & Performance |
+ | |
+ | ### **Network Security** |
+ | - **Firewalls (Layer 3/4)** → Blocks unwanted network traffic. |
+ | - **Encryption (Layer 6)** → Protects data during transmission. |
+ | - **Access Control (Layer 2)** → Restricts unauthorized network access. |
+ | |
+ | ### **Optimized Performance** |
+ | - **Load Balancing (Layer 4/7)** → Distributes traffic evenly across servers. |
+ | - **Quality of Service (QoS) (Layer 3/4)** → Prioritizes critical data packets. |
+ | - **Caching (Layer 7)** → Reduces bandwidth usage and speeds up responses. |
+ | |
+ | --- |
+ | |
+ | ## Network Layering in the Fire & Security Industry |
+ | |
+ | Network layering plays a crucial role in **fire alarm, security, and surveillance systems**, ensuring reliable communication and secure data transmission: |
+ | |
+ | - **CCTV & IP Cameras** → Utilize Layer 2 (Ethernet) & Layer 3 (IP) for network connectivity. |
+ | - **Access Control Systems** → Rely on TCP/IP-based communication for authentication. |
+ | - **Fire Alarm & Automation Networks** → Implement network segmentation and encryption for secure operation. |
+ | |
+ | --- |
+ | |
+ | Network layering forms the **foundation of modern networking**, enabling **efficient communication, security, and interoperability** across diverse systems. Understanding its principles helps businesses and IT professionals **design, manage, and secure robust network infrastructures**. |