Definitions/Abbreviations Flashcards
OSI seven-layer model
Open Systems Interconnection
• Layer 7 (L7) - Application
• Layer 6 (L6) - Presentation
• Layer 5 (L5) - Session
• Layer 4 (L4) - Transport
• Layer 3 (L3) - Network
• Layer 2 (L2) - Data Link - any device that deals with a MAC address. Ex: switches, NICs. *Only layer that has sublayers (Logical Link Control and Media Access Control)*
• Layer 1 (L1) - Physical - anything that moves data from one system to another. Ex: copper cabling, fiber optics, even radio waves and hubs. NICs appear here as well.
Mnemonic: “Please Do Not Throw Spicy Pizza Away”
ISO
International Organization for Standardization
*Note: not misspelled
(Greek word “isos” means “equal”. The ISO sets standards that promote equality among network designers and manufacturers.)
Protocol
A set of clearly defined rules, regulations, standards, and procedures that enable hardware and software developers to make devices and applications that function properly at a particular layer.
UTP
Unshielded Twisted Pair
(Usually) contains four pairs of wires that can transmit and receive data.
NIC
Network Interface Card
The interface between the PC and the network.
IEEE
Institute of Electrical and Electronics Engineers
MAC Address
Media Access Control Address
Unique identifier - like a telephone number - with a 48 bit-value to ensure data is delivered to the correct system.
The first six digits in a MAC address represent the unique number of the NIC manufacturer; referred to as the Organizationally Unique Identifier (OUI)
. The last six digits are the manufacturer’s unique serial number for that specific NIC; often referred to as the device ID
. No two manufacturers may have the same OUI, and no two NICs from the same manufacturer may have the same device ID.
Note 1: MAC addresses are always written in hex, using 0-9 for numbers 0-9, and A-F for numbers 10-15.
Windows uses the dash as a delimiter for the MAC address. Linux and macOS use a colon.
Example:
48-A4-72-F6-A2–ED on Windows would be
48:A4:72:F6:A2:ED on Linux and macOS
Note 2: MAC addresses are also known as physical addresses. (ipconfig refers to MAC addresses as such.) The exam will test on this.
Note 3: The IEEE forms MAC addresses from a numbering name space originally called MAC-48, which simply means that the MAC address is 48 bits, with the first 24 bits defining the OUI, just as described here. The current term for this numbering name space is EUI-48. EUI stands for Extended Unique Identifier. (IEEE apparently went with the latter term because they could trademark it.)
Most techs just call them MAC addresses, as you should, but you might see MAC-48 or EUI-48 on the CompTIA Network+ exam.
OUI
Organizationally Unique Identifier
The first six digits in a MAC address representing the unique number of the NIC manufacturer.
Device ID
The last six digits in a MAC address representing the manufacturer’s unique serial number for that specific NIC.
EUI-48
Extended Unique Identifier
The IEEE forms MAC addresses from a numbering name space originally called MAC-48, which simply means that the MAC address is 48 bits, with the first 24 bits defining the OUI. The current term for this numbering name space is EUI-48. (IEEE apparently went with the latter term because they could trademark it.)
Most techs just call them MAC addresses, as you should, but you might see MAC-48 or EUI-48 on the CompTIA Network+ exam.
Frame
Discrete chunk of data (such as files, print jobs, webpages, and so forth) moving across the Physical layer of a network. A frame encapsulates
- puts a wrapper around - information and data for easier transmission.
The frame begins with the MAC address of the NIC to which the data is to be sent, followed by the MAC address of the sending NIC. Next comes the Type
field, which indicates what’s encapsulated in the frame. Then comes the Data
field that contains what’s encapsulated, followed by a special piece of checking information called the frame check sequence (FCS)
. The FCS uses a type of binary math called a cyclic redundancy check (CRC)
that the receiving NIC uses to verify that the data arrived intact.
You can think of a frame in a different way as having three sections. The header (MAC addresses and Type) starts, followed by the payload (whatever is encapsulated in the frame); this is followed by the trailer (the FCS).
Note 1: Different frame types are used in different networks. All NICs on the same network must use the same frame type, or they will not be able to communicate with other NICs.
Note 2: Frames used in Ethernet networks hold at most 1500 bytes of data.
PDU
Protocol Data Unit
The unit of data specified by a protocol at each layer of the OSI seven-layer model.
PDUs by layer:
Layer 3: packet
Layer 2: frame
Type field
Indicates what’s encapsulated in the frame.
Data field
Contains what’s encapsulated in the frame.
FCS
Frame Check Sequence
Special piece of checking information using a type of binary math called a cyclic redundancy check (CRC)
that the receiving NIC uses to verify that the data arrived intact.
Note: All FCSs are only 4 bytes long.