What does the OSI model stand for?
Open Systems Interconnection
How many layers are there in the OSI model?
7 layers
Name all seven layers
What is the primary purpose of the OSI model?
Standardizes functions, not implementations
Main Comms-Reliability Principle for the Application Layer (Layer 7)
Make failure recoverable and observable
nothing you do at the app layer should require a perfect link; when failure happens, it’s cheap to retry and easy to diagnose.
Main Comms-Reliability Principle for the Presentation Layer (Layer 6)
Protect content without fragility surprises
confidentiality & integrity that behave predictably over noisy links.
Main Comms-Reliability Principle for the Session Layer (Layer 5)
Keep long-lived conversations alive across disruptions
sessions survive AOS/LOS, handovers, and key rotation with minimal human intervention
Main Comms-Reliability Principle for the Transport Layer (Layer 4)
Match windows and timers to the space path
keep the pipe full without thrash; don’t mistake RTT/jitter for congestion
Main Comms-Reliability Principle for the Network Layer (Layer 3)
Deliver even when paths change or disappear
the network layer routes around LOS, site outages, and policy quirks without losing data.
Main Comms-Reliability Principle for the Data-Link Layer (Layer 2)
make frames robust to burst errors and play nicely with RTT and ARQ
Main Comms-Reliability Principle for the Assumption Layer (Layer 1)
Win the margin and keep the loops locked
hold lock, stay linear, meet masks, and deliver enough margin where it matters (low elevation)
What does the Application layer (Layer 7) encompass?
User-facing network services
Examples include HTTP, FTP, SMTP, DNS, CCSDS mission apps. PDU is Data.
What is the role of the Presentation layer (Layer 6)?
Data representation/translation
Examples include TLS/SSL encryption, codecs, serialization (ASN.1, CBOR), compression. PDU is Data.
What is the main function of the Session layer (Layer 5)?
Dialog control, sessions, checkpoints, resumes
Examples include RPC sessioning, NetBIOS sessions, gRPC streams. PDU is Data.
What does the Transport layer (Layer 4) provide?
End-to-end reliability, flow/control, multiplexing
Examples include TCP (reliable), UDP (best-effort), SCTP; ARQ windows, ACK/NAK. PDU is Segment (TCP) / Datagram (UDP).
What is the function of the Network layer (Layer 3)?
Logical addressing and routing between nodes
Examples include IP, ICMP, CCSDS Space Packets w/ routing, DTN (BPv7). PDU is Packet.
What does the Data Link layer (Layer 2) handle?
Framing on a single link; MAC addressing; error detection/correction
Examples include Ethernet (MAC/PHY split), AX.25, CCSDS TM/TC channel coding, HDLC. PDU is Frame.
What is the focus of the Physical layer (Layer 1)?
Bits over a medium (voltages, light, RF)
Examples include 100BASE-TX, 802.11 OFDM, UHF QPSK with RRC shaping, symbol timing, carrier/AFC. PDU is Bit(s)/symbols.
What is the process of encapsulation in the OSI model?
App data is wrapped as it goes down (add headers/trailers each layer)
What is one benefit of using the OSI model for troubleshooting?
Helps identify which layer is failing
What does the OSI model help with in terms of design partitioning?
Separates waveform/PHY (Layer 1) from framing/FEC (Layer 2), routing (Layer 3), and reliability (Layer 4)
How does the OSI model enhance interoperability?
Provides clear contract surfaces for standards and vendors
What is the relationship between the OSI model and the TCP/IP model?
Application + Presentation + Session (OSI 7–5) ≈ Application (TCP/IP), Transport (OSI 4) ≈ Transport (TCP/IP), Network (OSI 3) ≈ Internet (IP), Data Link + Physical (OSI 2–1) ≈ Link
What is a typical symptom at Layer 1 (Physical)?
No lock, constellation smeared, high EVM, Doppler not tracked