Chapter 1: Network Models Flashcards
List each layer (7 to 1) of the OSI Seven-Layer Model.
L7 Application
L6 Presentation
L5 Session
L4 Transport
L3 Network
L2 Data Link
L1 Physical
Remember the mnemonic “All People Seem To Need Data Processing.”
Define: Protocols
Sets of clearly defined rules, regulations, and procedures that enable hardware and software developers to make devices and applications that function properly at a particular network model layer.
What does a NIC or Network Interface Card do and what network layer does it operate in?
A NIC serves as the interface between the PC and the network. It operates at L2 and uses MAC addresses.
Define: MAC or Media Access Control Address (aka. a physical address)
A 48-bit (6-byte) unique identifier that is burned onto a ROM chip in every NIC. It is in hexadecimal notation (12 hex digits).
What are the two parts of a MAC address?
The first six hex digits represent the NIC manufacturer, referred to as the Organizationally Unique Identifier (OUI).
The last six hex digits are the manufacturer’s unique serial number for that NIC, referred too as the device ID.
In Windows, type ______ from a command prompt to display the MAC address.
ipconfig /all
In macOS, type ______ from a terminal to display the MAC address.
ifconfig
In Linux, type ______ from a terminal to display the MAC address.
ip a
Define: Protocol Data Unit (PDU)
It is the unit of data specified by a protocol at each layer of the OSI seven-layer model.
What is the PDU for Layer 2, the Data Link layer?
Frame (Ethernet)
What does a frame do and what creates and uses them?
A frame encapsulates information and data for easier transmission. The NIC creates and sends, as well as receives and reads frames.
What are the first two fields of a generic frame?
Recipient’s MAC address
Sender’s MAC address
What is in the Type field of a frame?
The Type field indicates what’s encapsulated in the frame.
What is in the Data field of a frame?
The Data field contains what’s encapsulated.
What is the purpose of the Frame Check Sequence (FCS) field of a frame?
The FCS uses a type of binary math called a Cyclic Redundancy Check (CRC) to calculate a value that the receiving NIC uses to verify that the data arrived intact.
What is the max size of an Ethernet frame’s Data field?
1500 bytes
What is the size of the FCS field?
4 bytes
What is the Layer 2 broadcast address?
FF-FF-FF-FF-FF-FF
Who receives a Layer 2 broadcast address?
Every single NIC on the network except the sending NIC.
What is contained in a Layer 2 broadcast address?
A request for a system’s MAC address, by the use of that system’s known IP address.
What are the two sublayers of the Data Link layer?
Logical Link Control (LLC)
Media Access Control (MAC)
What is the job of the Logical Link Control (LLC) sublayer?
It is the part of the NIC that talks to the system’s operating system (usually via device drivers), and handles multiple network protocols and provides flow control.
What is the job of the Media Access Control (MAC) sublayer?
It creates and addresses the frame, adds or checks the FCS, and sends the frame along the network cable.
What is a switch and at what layer does it operate.
A switch is a network device that handles network traffic using MAC addresses to direct the traffic. It operates at Layer 2.