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