Chapter 1 Flashcards

1
Q

What are the OSI 7 layers?

A

Please Do Not Tell Salespeople Anything

  1. Application
  2. Presentation
  3. Session
  4. Transport
  5. Network
  6. Data Link
  7. Physical
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does OSI stand for?

A

Open Standards Interconnection

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

What does ISO stand for?

A

International Organisation for Standardisation

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

What is a Protocol?

A

Set of rules that computer devices follow to establish and maintain communications

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

What is Modulation

A

Convert logical data bits into physical signals

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

What is Demodulation

A

Convert signals into logical data bits

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

Describe the 1. Physical Layer

A

Defines physical aspects of signal transmission and receipt across media. E.g Wireless needs RF, copper patch lead needs voltage signal, fiber needs light signal etc.

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

Describe the 2. Data Link layer

A

Frame delivery and error detection.

Three main functions, Media Access Control / Link Layer Addressing / Error Detection

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

Describe the 3. Network Layer

A

Establish communications across multiple LANs or WANs using best path available.

Specific path can change each time depending on multiple factors.

Achieved using two techniques.
Logical Addressing - Unique source and destination (IP addresses)
Path Discovery and Selection - Algorithms and protocols find all possible paths and select the best one.

Three main responsibilities of transport layer
Segmentation
De-segmentation
Error Control

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

Describe the 4. Transport Layer

A

Control link reliability of the given link using segmentation and error control.

Uses protocols like TCP and UDP

TCP - Allows transport layer keep track of messages and re-transmission those that fail.

UDP - Stateless or connection-less. Transport layer does not keep track of the messages.

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

Describe the function of Media Access Control

A

Controls how to access media

Controls devices to ensure only 1 device transmits at one time (e.g one person talks at a time).

Carrier sense is used to sense state of the carrier or media. If a transmission is detected then station must wait its turn.

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

Describe Link Layer Addressing

A

Each station identified with MAC address. Message sent out is with header information of intended recipient. All stations get message but will ignore.

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

Describe Error Detection

A

On receiver side, Layer 2 helps detect errors that can occur during the Layer 1 transmission. Helps protect against corrupted or incomplete messages.

Carried by adding a checksum to data in the trailer. Called Cyclic Redundancy Check (CRC)

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

Describe Layer 4 - Segmentation

A

Senders TCP or UDP proecess accepts files from application and divides to smaller pieces called segments. Each piece is passed down to the lower layers and transmitted.

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

Describe Layer 4 - De-Segmentation

A

Receiver acceptes each segment and puts them back together in correct order. Processed by application.

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

Describe Layer 4 - Error Control

A

Verification of information to avoid errors that could occur at layers 1-3

17
Q

Describe Layer 5 - Session Layer

A

Setup, Maintenance and tear down of session between devices.

The conversation between two computer devices.

18
Q

Describe Layer 6 - Presentation Layer

A

Transforms data into the format that the application accepts.

Typical Processes are:
Compression/Decompression
Encryption/Decryption
Code Translation

E.g. Application sends message is clear text, presentation layer encrypts message to keep data safe. On other end the receiver decrypts using key.

19
Q

Describe Layer 7 - Application Layer

A

OSI layer that interacts directly with the user via an application.

This layer determines the identity ad availability of the communication partners.
Provides network serivces to user applications, such as FTP/email/video conference

Examples of app layer are
HTTP (TCP for transport)
HTTPS (TLS for presention and TCP for transport)
FTP (TCP)
DNS (uses UDP)
TFTP (UDP)

20
Q

What is Layer Header and Encapsulation?

A

Header used to establish commication and control information.

Header generated on specific layer by sender can only be read at the same level of the reciever side.

Encapsulation - Process where OSI layer adds header. Always done sender side
Decapsulation - Process to read and interpret the header information. Always done by receiver side.

21
Q

What is Protocal Data Units (PDUs)

A

Structure that considers the header and payload or data for each layer.

There is no PDU at Layer 1

Three key tersmf related to PDUs
Segment - Encapsulation done in Layer 4 (PDU4), TCP or UDP segment
Packet - Encapsulation done at Layer 3 (PDU3)
Frame - encapsulation done at Layer 2 (PDU2), ethernet frames/wifi frames.

22
Q

What is different about the PDU at Layer 2

A

Has a trailer appended to the end of the data.

Used to detec errors during transmission. The CRC or FCS (frame check sequence)

23
Q
A