Section 1.0 - Networking Concepts Flashcards
(71 cards)
What is the OSI Model?
A seven-layer framework for standardizing network communication
What is the role of Layer 1 (Physical Layer)?
Handles the physical aspects of networking
How do you troubleshoot Physical Layer issues?
Fix cabling
What is Layer 2 (Data Link Layer)?
Manages basic network communication using Data Link Control protocols and MAC addresses
What is Layer 3 (Network Layer)?
Responsible for routing and IP addressing
What is IP Fragmentation?
Divides packets into smaller fragments (multiples of 8 due to IP header offset bits) to traverse networks with different MTUs.
What is Layer 4 (Transport Layer)?
Manages data delivery like a post office
What is Layer 5 (Session Layer)?
Manages communication sessions between devices
What is Layer 6 (Presentation Layer)?
Handles character encoding and application encryption
What is Layer 7 (Application Layer)?
The user-facing layer
How does data flow through the OSI layers in an example like accessing Gmail?
Application (HTTPS), Presentation (SSL encryption), Session (links to transport), Transport (TCP), Network (IP), Data Link (Ethernet), Physical (electrical signals).
What is a mnemonic for the OSI layers?
Please Do Not Throw Sausage Pizza Away (Physical, Data Link, Network, Transport, Session, Presentation, Application).
What are transmission units in networking?
Different data units at OSI layers: frames (Ethernet, Layer 2), packets (IP, Layer 3), segments (TCP, Layer 4), datagrams (UDP, Layer 4).
What is the role of the TCP header?
Contains control information, including TCP flags, to describe and manage the payload.
What does the SYN TCP flag do?
Synchronizes sequence numbers to initiate a TCP connection.
What does the PSH TCP flag do?
Pushes data to the application without buffering
What does the RST TCP flag do?
Resets a TCP connection
What does the FIN TCP flag do?
Indicates the last packet from the sender
What is the Maximum Transmission Unit (MTU)?
The largest IP packet size that can be transmitted without fragmentation
Why is fragmentation undesirable for MTU?
It slows transmission, increases overhead, and risks packet loss if a fragment is lost.
How do you troubleshoot MTU issues?
Use ping with the Don’t Fragment flag (e.g., ping -f -l 1472 8.8.8.8
on Windows) to test maximum packet size (1472 bytes after headers).
Why is MTU a concern for tunneled traffic?
Tunnels may have smaller MTUs than local Ethernet, causing issues if packets are too large and the Don’t Fragment flag is set.
Why are network topologies useful?
They aid in planning networks, understanding signal flow, and troubleshooting by mapping physical layouts.
What is a star topology?
All devices connect to a central device (e.g.