# Day 3: OSI Model and TCP/IP Suite

# CCNA 200-301 Study Guide: Networking Models &amp; Data Encapsulation

Understanding the structure, scope, and rules of the CCNA 200-301 exam is the foundational first step toward successful certification. This guide explores the conceptual models that govern all data communication.

## 1.0 The CCNA 200-301 Exam Landscape

### 1.1 Key Exam Metrics

Familiarizing yourself with the core metrics of the exam will help you manage your time effectively.

<div align="left" dir="ltr" id="bkmrk-attribute-details-ex"><table><colgroup><col width="136"></col><col width="377"></col></colgroup><tbody><tr><td>Attribute

</td><td>Details

</td></tr><tr><td>Exam Code

</td><td>200-301

</td></tr><tr><td>Duration

</td><td>120 minutes

</td></tr><tr><td>Question Count

</td><td>Approximately 50–60

</td></tr><tr><td>Passing Score

</td><td>Approximately 85%

</td></tr><tr><td>Formats

</td><td>Multiple-choice, drag-and-drop, router simulations

</td></tr></tbody></table>

</div>Mentor's Note: With 120 minutes for roughly 60 questions, you have about two minutes per question. Do not get bogged down in a single simulation; they test both knowledge and speed.

### 1.2 Core Knowledge Domains

<div align="left" dir="ltr" id="bkmrk-domain-weight-key-to"><table><colgroup><col width="190"></col><col width="75"></col><col width="318"></col></colgroup><tbody><tr><td>Domain

</td><td>Weight

</td><td>Key Topics

</td></tr><tr><td>Network Fundamentals

</td><td>20%

</td><td>Routers, switches, cabling, IPv4/IPv6

</td></tr><tr><td>Network Access

</td><td>26%

</td><td>VLANs, trunks, STP (RSTP), EtherChannel

</td></tr><tr><td>IP Connectivity

</td><td>25%

</td><td>Routing tables, static routing, OSPFv2

</td></tr><tr><td>IP Services

</td><td>10%

</td><td>NAT, DHCP, DNS, SNMP, QoS, SSH

</td></tr><tr><td>Security Fundamentals

</td><td>15%

</td><td>VPNs, ACLs, Layer 2 security

</td></tr><tr><td>Automation

</td><td>10%

</td><td>APIs (REST), SDN, JSON

</td></tr></tbody></table>

</div>## 2.0 The Foundation: Why Networking Models Matter

Standardized networking models provide a vendor-neutral framework, ensuring that devices from different manufacturers (e.g., Cisco and Juniper) can interoperate.

### 2.1 Core Terminology

- Protocol: A set of logical rules defining how devices communicate (the "grammar" of the conversation).
- Standard: An agreed-upon specification that ensures interoperability (e.g., Ethernet or Wi-Fi).

### 2.2 Key Standards Organizations

- IEEE: Focuses on LAN and Physical layer standards (e.g., 802.3 Ethernet, 802.11 Wi-Fi).
- IETF: Focuses on Internet protocols (e.g., TCP/IP, HTTP), documented as RFCs (Requests for Comments).

## 3.0 The OSI Model: A Theoretical Framework

The Open Systems Interconnection (OSI) model is a 7-layer conceptual framework. It provides a precise vocabulary for discussing network functions and troubleshooting.

### The 7 Layers of the OSI Model

<div align="left" dir="ltr" id="bkmrk-layer-name-function-"><table><colgroup><col width="65"></col><col width="117"></col><col width="421"></col></colgroup><tbody><tr><td>Layer

</td><td>Name

</td><td>Function &amp; Examples

</td></tr><tr><td>7

</td><td>Application

</td><td>Interface for network applications (HTTP, FTP, SMTP).

</td></tr><tr><td>6

</td><td>Presentation

</td><td>Data formatting, encryption, and compression (JPEG, SSL).

</td></tr><tr><td>5

</td><td>Session

</td><td>Manages dialogues/sessions between applications.

</td></tr><tr><td>4

</td><td>Transport

</td><td>End-to-end communication and reliability (TCP, UDP).

</td></tr><tr><td>3

</td><td>Network

</td><td>Logical addressing (IP) and path determination (Routing).

</td></tr><tr><td>2

</td><td>Data Link

</td><td>Physical addressing (MAC), framing, and error detection.

</td></tr><tr><td>1

</td><td>Physical

</td><td>Transmission of raw bits over physical media (Fiber, Copper).

</td></tr></tbody></table>

</div>Mnemonic: Please Do Not Throw Sausage Pizza Away (Physical to Application).

## 4.0 The TCP/IP Model: The Practical Standard

The TCP/IP model is the implemented framework used by the modern internet. It condenses the OSI model into fewer layers.

<div align="left" dir="ltr" id="bkmrk-tcp%2Fip-layer-osi-equ"><table><colgroup><col width="129"></col><col width="118"></col><col width="224"></col><col width="130"></col></colgroup><tbody><tr><td>TCP/IP Layer

</td><td>OSI Equivalent

</td><td>Core Function

</td><td>Key Protocols

</td></tr><tr><td>Application

</td><td>7, 6, 5

</td><td>Process-to-process communication

</td><td>HTTP, DNS, SMTP

</td></tr><tr><td>Transport

</td><td>4

</td><td>End-to-end delivery via Ports

</td><td>TCP, UDP

</td></tr><tr><td>Internet

</td><td>3

</td><td>Routing packets across networks

</td><td>IPv4, IPv6, ICMP

</td></tr><tr><td>Network Access

</td><td>2, 1

</td><td>Local delivery and signaling

</td><td>Ethernet, Wi-Fi

</td></tr></tbody></table>

</div>## 5.0 Data Flow: Encapsulation &amp; Decapsulation

Encapsulation is the process of wrapping data with protocol information (headers) as it moves down the stack.

### 5.1 Protocol Data Units (PDUs)

Memorize these terms for the exam. Each layer's "chunk" of data has a specific name:

- Layer 4 PDU: Segment (TCP) or Datagram (UDP).
- Layer 3 PDU: Packet.
- Layer 2 PDU: Frame.
- Layer 1 PDU: Bit.
- Payload: The data content carried inside a PDU from the layer above.

### 5.2 The Step-by-Step Flow

1. Encapsulation (Sending): Data moves from Layer 7 down to Layer 1. Each layer adds a header (and Layer 2 adds a trailer for error checking).
2. Decapsulation (Receiving): Data moves from Layer 1 up to Layer 7. Each layer strips off its corresponding header after processing the control information.

## 6.0 Key Layer Functions and Addressing Schemes

### 6.1 Layer 4: The Transport Layer

Uses Port Numbers to distinguish between different applications (e.g., HTTP = Port 80).

- TCP: Connection-oriented, reliable, uses a three-way handshake.
- UDP: Connectionless, "fire-and-forget," low overhead, ideal for voice/video.

### 6.2 Layer 3: The Network Layer

Responsible for moving data across different logical networks (Routing).

- Addressing: Uses IP Addresses (Global scope).
- Device: Routers are the primary Layer 3 devices.

### 6.3 Layer 2: The Data Link Layer

Responsible for delivery between two devices on the same local segment (Hop-to-Hop).

- Addressing: Uses MAC Addresses (Local scope).
- Device: Switches are the primary Layer 2 devices.
- Error Detection: Uses the Frame Check Sequence (FCS) in the trailer.

## 7.0 The Mail System Analogy

- Application (The Letter): The actual message.
- Transport (The Recipient): The specific person the letter is for (Port Number).
- Network (The Address): The street, city, and zip code (IP Address).
- Data Link (The Truck): The local delivery from mailbox to post office (MAC Address/Hop).
- Physical (The Road): The actual cables/wires (Media).

## 8.0 CCNA Exam Quick Reference

### Core Addressing Summary

<div align="left" dir="ltr" id="bkmrk-layer-address-type-s"><table><colgroup><col width="78"></col><col width="124"></col><col width="313"></col></colgroup><tbody><tr><td>Layer

</td><td>Address Type

</td><td>Scope / Purpose

</td></tr><tr><td>Layer 4

</td><td>Port Number

</td><td>Identifies specific Application/Process.

</td></tr><tr><td>Layer 3

</td><td>IP Address

</td><td>Logical address used for Global routing.

</td></tr><tr><td>Layer 2

</td><td>MAC Address

</td><td>Physical address used for Local delivery.

</td></tr></tbody></table>

</div>