OSI Model Flashcards

1
Q

What’s the OSI Model?

A

Open Systems Interconnection Reference Model

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Layer 7

A

Application Layer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Layer 1

A

Physical Layer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Layer 6

A

Presentation Layer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Layer 2

A

Data Link Layer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Layer 5

A

Session Layer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Layer 3

A

Network Layer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Layer 4

A

Transport Layer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What relation does the OSI Model have with the OSI Protocol Suite?

A

The OSI model was based around the protocols in the OSI Protocol Suite; however, most of them didn’t catch on. Nowadays we mainly use the TCP/IP protocol.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What’s a good mnemonic for memorizing the 7 Layers of the OSI model?

A

All
People
Seem
To
Need
Data
Processing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Physical Layer

A

Layer 1
- physics of the network (no protocols)
- Signaling, cabling, fiber, connectors
- “physical layer problem”
- Fix cabling, punch-downs, connectors
- Run loopback tests, test/replace cables, swap adapter cards

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Data Link Layer

A

Layer 2
- The basic network language
- the foundation of communication at the data link layer
- Data Link Control (DLC) protocols
-MAC (Media Access Control) address on Ethernet, also referred to as Layer 2 addresses because they correlate back to DLC protocols
- The “Switching” layer
- Frame, MAC Address, Extended Unique Identifier (EUI-48, EUI-64), Switch

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Network Layer

A

Layer 3
- The “routing” layer
- layer associated with Internet Protocol (IP) addresses
- Fragments frames to traverse different types of networks
- e.g., Ethernet -> WAN -> Ethernet, this occurs at Layer 3
- Router, Packet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Transport Layer

A

Layer 4
- The “post office” layer (how and where)
- Transmission Control Protocol (TCP) segment and User Datagram Protocol (UDP) datagram
- port numbers
- e.g., accessing a large webpage where it can’t be sent via a single frame and is split into multiple pieces and put back together on the other side

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Session Layer

A

Layer 5
- Communication management between devices
- Start, Stop, Restart between endpoints
- Control protocols, tunneling protocols

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Presentation Layer

A

Layer 6
- Character Encoding
- Application Encryption (SSL/TLS)
- Often Combined with the Application Layer (Layer 7) b/c functionality is so closely associated with the ability to use these applications

17
Q

Application Layer

A

Layer 7
- The Layer we see
- HTTP, FTP, DNS, POP3

18
Q

Packet Capture Application

A
  • Wireshark
    • Summary View, w/ ea. Line showing a frame going across the network
    • detail view, each part of the communication broken up into the OSI layers for a frame
    • 5,6,7 layer info grouped together
    • Hexadecimal representation of the data
19
Q

ex. Google Mail describe via OSI Model

A
  • Layer 7: https://www.mail.google.com
  • Layer 6: SSL encryption
  • Layer 5: Link the presentation to the transport
  • Layer 4: TCP encapsulation, Port 443
  • Layer 3: IP encapsulation, Ethernet frames
  • Layer 2: Ethernet
  • Layer 1: Physical electrical signals
20
Q

PDU

A
  • Protocol Data Unit
  • getting data from one part of the network to the other relies on PDUs
  • or Transmission Units
    • a different group of data at different OSI layers
  • Ethernet operates on a frame of data
    • it doesn’t care what’s inside, sends everything within the ethernet frame across (encapsulation)
  • IP operates on a packet of data
    • inside is TCP data, or UDP data, or some other type but IP doesn’t care
  • TCP header or UDP header
    • TCP segment
    • UDP datagram
21
Q

Encapsulation and Decapsulation

A