OSI Model Flashcards

1
Q

What are the layers of the osi model?

A

Application, presentation, session, transport, network, data link, hardware

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

What does the application layer do?

A

It is the interface between two applications that provide services to a user , such as a browser and web server using HTTP application layer protocol.

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

What is SNMP?

A

Simple network management protocol - monitor and gather information about network traffic and can alert network administrators about adverse conditions that need attention

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

What does the presentation layer do?

A

It is responsible for reformatting, compressing, and/or encrypting data in a way that the application on the receiving end can read

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

What does the session layer do?

A

How data between applications is synced and recovered if messages do not arrive intact at the receiving application

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

What does the transport layer do?

A

Transporting application layer payloads from one application to another,

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

What are the two main transport layer protocols ?

A

TCP and UDP

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

What does the network layer do?

A

Aka Internet layer, is responsible for moving messages from one node to another until they reach the destination host.

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

What is the principal protocol used in the network layer?

A

Ip - adds its own network layer header to the segment o datagram, and the entire network layer message is now called a packet

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

What do network layer headers do?

A

Identifies the sending and receiving hosts by their ip addresses.

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

What does the data link layer do?

A

It is the interface with the physical hardware only on the local network. They are programmed into the firmware of a computer’s nic and other networking hardware.

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

What is the name of the data link layer message?

A

Frame

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

What does the physical layer do?

A

Sending bits via a wired or wireless transmission

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

What are the steps involved from the sending host?

A
  1. The browser creates an http message on source computer → passes to transport layer [ the browser involves all 3 layers]
  2. TCP encapsulates the message by adding its own header and passes the segment→ to network layer
  3. Ip and network layer in the os receive segment, adds a header, and passes the packet → data link layer
  4. Data link layer on the nic firmware receives the packet, adds its header and trailer, and passes the frame → physical layer
  5. Physical layer on the nic hardware puts bits on the network.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are the steps involved from sending host to the switch?

A
  1. The network transmission is received by switch, which passes the frame up to data link layer { firmware on switch} looks at the destination MAC address, and decides where to send frame
  2. The frame is sent to the correct port on the switch to the router.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are the steps involved from switch to router?

A
  1. The water has two nic, one for each of the two networks to which it belongs. The physical layer of the first nic receives the frame and it passes to the data junk layer [nic firmwares] which removes the frame header and trailer and passes the packet up to Ip at network layer[firmware program or other software] on the router
  2. The ip program looks at destination ip address. Determines the next node en route for the packet, and passes the packet
    Back down to the data link on the second NIC. Data link adds a new frame header and trailer appropriate for this second nic LAN, including MAC address of the next destination node.it passes the frame to its physical layer [nic hardware] which sends the bits on their way.
17
Q

What steps are involved from router to distortion host?

A
  1. When frame reaches the destination host nic, the data link layer nic firmware, receives it. Removes the frame header and trailer, and passes the packet up to ip at the network layer, which removes its header and passes the segment up to TCP at the transport layer.
  2. TCP removes its header and passes the payload up to http at the application layer. HTTP presents the message to the web server.