1.2, 1.3 – OSI Layers, Etc. Flashcards
What is OSI Layer 1?
Physical
What is OSI Layer 2?
Data link
What is OSI Layer 3?
Network
What is OSI Layer 4?
Transport
What is OSI Layer 5?
Session
What is OSI Layer 6?
Presentation
What is OSI Layer 7?
Application
Which OSI Layer is this?
Physical
Layer 1
Which OSI Layer is this?
Data link
Layer 2
Which OSI Layer is this?
Network
Layer 3
Which OSI Layer is this?
Transport
Layer 4
Which OSI Layer is this?
Session
Layer 5
Which OSI Layer is this?
Presentation
Layer 6
Which OSI Layer is this?
Application
Layer 7
What does OSI stand for?
Open Systems Interconnection Reference Model
What does the physical layer pertain to?
The physics of the network. The signal, the cabling, and connectors.
There are no protocols involved in Layer 1.
What does the data link layer pertain to?
The “switching” layer.
The basic network language. The most fundamental communication that occurs across the network.
The frames of communication.
Data Link Control (DLC) protocols.
MAC addresses.
Extended Unique Identifiers
What does the Network layer pertain to?
The “routing” layer.
An IP layer. If dealing with any type of IP address, you’re working at Layer 3.
Also responsible for fragmenting frames to traverse different networks, when smaller packets are needed.
IP address, router, packet.
What does the Transport layer pertain to?
The “post office” layer.
Transfers information to a destination.
Port numbers.
TCP segment. UDP datagram.
The most common protocols are TCP and UDP.
What does the Session layer pertain to?
Communication management between devices.
Start, stop, and restart sessions.
Control protocols, and tunneling protocols.
What does the Presentation layer pertain to?
Character encoding
Encryption. Any data that needs to be encrypted or decrypted usually occurs in the Application at Layer 6.
SSL, TLS
Many of the applications that are working at Layer 6 may also be working at Layer 7. So, many Applications share both Layer 6 and Layer 7.
What does the Application layer pertain to?
The layer we see.
A browser window, etc.
Application Services are on Layer 7. Protocols are things like HTTP, FTP, SSH, DNS, SMTP, POP, IMAP, SNMP.
Service Advertisements are on Layer 7.
What is an OUI?
Organizationally Unique Identifier
The first three bytes (first six characters) of a MAC address, which is associated with the manufacturer of the Ethernet adapter.
In Ethernet, what is a collision?
In half-duplex mode Ethernet, if two devices communicate simultaneously, the two frames create a collision.
Each device on the network will “hear” that collision (a jam signal will be transmitted across the network), and wait a random amount of time before attempting to communicate again.
What is CSMA/CD?
It is no longer in use. It was used only in Half-duplex Ethernet.
CS: Carrier Sense
- The Ethernet adapter determines whether there is a carrier for it to transmit a signal over.
- Listen to the wire, determine if busy
MA: Multiple Access
- indicates there is more than one device on the network, and all devices have access at any time (as opposed to a token ring)
CD: Collision Detect
- If a collision occurs, the devices can recognize that, back off for a random amount of time (milliseconds), and attempt to transmit again.
What is the order of operations for CSMA/CD?
1) Listen for an opening (don’t transmit if the network is busy)
2) Send a frame of data.
3) If a collision occurs:
- Transmit a jam signal to notify all devices of collision
- Wait a random amount of time (milliseconds)
- Retry the transmission