← Back to OSI Overview

πŸ”Œ OSI Layer 1: Physical Layer

Layer 1 (Physical) Technologies

The Physical Layer is responsible for the actual transmission of raw data bits over a physical medium. It defines the electrical, optical, or radio signal characteristics needed to transmit data between devices.

Signal Encoding - Converting digital bits (1s and 0s) into physical signals (voltage, light, radio waves)
Physical Medium - The actual cable, fiber, or wireless medium that carries the signals
Electrical Properties - Voltage levels, current, impedance, timing specifications
Physical Connectors - RJ45, fiber SC/LC, antenna connections, USB ports

The Critical Role: Layer 1 doesn't care about data meaningβ€”it only moves raw bits from point A to point B using physical phenomena like electricity, light, or radio waves.

πŸ“‘

Transmitter

Ready
Encode
Transmit
Decode
Signal Status:
Select a medium and mode to begin
Step 0 of 0
Signal Idle
πŸ“»

Receiver

Listening

Physical Medium Information

Select a medium and click "Medium Details" to learn more.

🎯 Primary Functions

  • Bit Transmission: Converting data bits into electrical, optical, or radio signals
  • Physical Topology: Defining how devices are physically connected
  • Signal Encoding: Converting digital data into analog signals
  • Media Access: Managing access to the transmission medium
  • Physical Addressing: Hardware-level device identification

πŸ”§ Key Characteristics

  • Voltage Levels: Defines electrical signal characteristics
  • Cable Specifications: Physical properties of transmission media
  • Connector Types: Physical interfaces between devices
  • Transmission Modes: Simplex, half-duplex, full-duplex
  • Data Rates: Speed of data transmission (bps, Mbps, Gbps)

🌐 Physical Layer Technologies & Media

Copper Cables

Twisted pair (Cat5e, Cat6, Cat6a), Coaxial cables

Ethernet 1000BASE-T over Cat6
Electrical signals over copper wires - most common in LANs
Fiber Optic

Single-mode, Multi-mode fiber

1000BASE-SX, 1000BASE-LX
Light pulses over glass fibers - high speed, long distance
Wireless Radio

Wi-Fi (802.11), Bluetooth, Cellular

802.11ac 5GHz band
Electromagnetic waves through air - mobility and convenience
Serial Connections

RS-232, USB, FireWire

USB 3.0 SuperSpeed
Point-to-point connections for specific devices

πŸ” Real-World Example: Ethernet Cable Transmission

Scenario: Your computer sends data to a server over an Ethernet cable

Step 1: Signal Encoding

Your network card converts digital data (1010110...) into electrical voltage levels:

Data bit '1' = +2.5V on wire pair
Data bit '0' = -2.5V on wire pair

Step 2: Physical Transmission

Electrical signals travel through 4 pairs of copper wires at ~200,000 km/s:

Pair 1 (Orange): TX+ / TX-
Pair 2 (Green): RX+ / RX-
Pair 3 (Blue): Bidirectional
Pair 4 (Brown): Bidirectional

Step 3: Signal Reception

The server's network card detects voltage changes and reconstructs data:

Voltage > +1.2V = Digital '1'
Voltage < -1.2V = Digital '0'
Original data reconstructed: 1010110...

πŸ“Š Physical Layer Specifications

Medium Type Max Speed Max Distance Connector
Cat5e Copper 1 Gbps 100 meters RJ45
Cat6a Copper 10 Gbps 100 meters RJ45
Single-mode Fiber 100+ Gbps 40+ km SC/LC
Cat6 Copper 1 Gbps 100 meters RJ45
Cat7 Copper 10 Gbps 100 meters GG45/TERA
Cat8 Copper 25/40 Gbps 30 meters RJ45
Multi-mode Fiber 10 Gbps 550 meters SC/LC/ST
Coaxial (RG6) 1 Gbps 500 meters F-Type
USB 3.2 20 Gbps 3 meters USB-C
Thunderbolt 4 40 Gbps 2 meters USB-C
Wi-Fi 6 (802.11ax) 9.6 Gbps 100 meters Antenna
Wi-Fi 802.11ac 1.3 Gbps 70 meters Antenna

πŸ› οΈ Troubleshooting Physical Layer Issues

🚨 Common Problems

  • Cable damage or poor connections
  • Signal attenuation over distance
  • Electromagnetic interference
  • Wrong cable types for application
  • Dirty or damaged connectors

πŸ”§ Diagnostic Tools

  • Cable testers and certifiers
  • Time Domain Reflectometer (TDR)
  • Optical power meters
  • Link light indicators
  • Spectrum analyzers for wireless

πŸ” Wireshark Filters for Physical Layer Analysis

πŸ“Š Essential Physical Layer Filters

Copy these filters directly into Wireshark to analyse physical layer traffic

🌐 All Ethernet Traffic Most comprehensive
eth # Shows all Ethernet frames
πŸ“¦ IPv4 Ethernet Frames Internet traffic
eth.type == 0x0800 # IPv4 over Ethernet
πŸ” ARP Resolution Address mapping
eth.type == 0x0806 # ARP requests/replies
πŸ“‘ IPv6 Ethernet Frames Next-gen internet
eth.type == 0x86dd # IPv6 over Ethernet
πŸ“Ά All WiFi Traffic Wireless frames
wlan # Shows all WiFi/wireless frames
πŸ“‘ WiFi Beacon Frames Network announcements
wlan.fc.type_subtype == 0x08 # Access point beacons
🚨 Physical Layer Problem Detection
πŸ“ Oversized Frames (Jumbo) MTU issues
frame.len > 1500 # Frames exceeding standard MTU
πŸ“‰ Undersized Frames (Runts) Collision damage
frame.len < 64 # Damaged/incomplete frames
❌ Physical Layer Errors Cable/hardware issues
eth.fcs.status == "Bad" # Corrupted frame check sequence

πŸ› οΈ Troubleshooting Physical Layer Issues

Think of the Physical Layer like the road infrastructure:

Just like roads don't care what's inside the vehicles, Layer 1 doesn't care about data meaningβ€”it just moves bits!

πŸ“š Key Learning Points

← Return to OSI Overview