Chapter 2 - Network Models Flashcards

1
Q

What is the OSI Model

A

Open Systems Interconnection enables us to follow a model to explain almost any type of network including long obscure old ones.

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

Define Protocol

A

A set of rules, regulations, and standards that enable hardware and software developers to make devices and applications that will function at a particular level

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

What are the Seven layers of the OSI Model

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

What is a way to remember the seven layers (mneomonics)

A

All People Seem To Need Data Processing

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

What is part of layer one

A

Cabling, radio waves, central boxes (hubs, switches, etc.). Doesn’t care what the data is, only moves it from place to place

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

What makes a NIC unique

A

48 bit Media Access Control number made up of hexdecimal digits

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

What are the two parts to a MAC address

A

First 6 digits identify the manufacturer, Organizationally Unique Identifier
Last 6 digits identify the unique serial number

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

Who gives out MAC addresses

A

IEEE, Institute of Electronic and Electrical Engineers

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

How does Hexadecimal work with binary

A
Four bits = 1  character
0000 = 0
0001 = 1
1000 = 8
1111 = 15
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the Organizationally Unique Identifier (OUI)

A

Used in the first 6 digits of a MAC address to identify the manufacturer

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

What is another name for MAC-48

A

EUI - 48 , Extended Unique Identifier

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

What is a frame

A

A container for a chunk of data moving across the network

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

Where is a frame created

A

The NIC

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

What does a frame look like

A

Recipient MAC | Sender MAC | Type | Data | FCS

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

What is FCS

A

Frame Checking Sequence, uses binary math (cyclic redundancy check) when recieving to verify that data is all intact

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

How much data can a frame contain?

A

1500 bytes (average)

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

How does a Hub operate

A

A hub makes an exact copy of the frame and broadcasts it to all system connected. The receiving system is the only one that will process the data.

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

How does a switch operate

A

Sends the frame to the proper destination only.

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

What is a way to think of Cyclic Redundancy Checks

A

It is similar to the remainder of a division problem

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

What is a broadcast address

A

FF-FF-FF-FF-FF-FF, every NIC will process this.

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

What is considered to be part of layer 2

A

Any device that deals with a MAC is part of layer 2

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

What does the Data link layer provide as a service

A

Data Link Control

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

What are the two jobs of the NIC

A

Logical Link Control, and Media Access Control

24
Q

What is Logical Link control (LLC)

A

Talks with the system OS (usually drivers), handles network protocols and provides flow control

25
TCP/IP is considered a network protocol, but is actually...
a protocol suite, can be used to explain many protocols
26
What happens at layer 3
Containers called packets are created and addressed enabling them to go from one network to the other. This is the last layer that deals with hardware
27
What happens with an IP packet
Packet handed to NIC and enclosed within a frame.
28
What does a packet look like in contrast to a frame
IP Header | TCP Header | Segment OR IP Header | UPD Header | Message
29
Why would a packet be stripped away from the frame and put into a new frame
This is so it will be the appropriate technology for its next destination but the IP packet will never change
30
What connects the NIC to the System
Driver software
31
What happens in layer 4
Data is broken in to chunks called segments or datagrams depending on the protocol. Each chunk is given a sequence number. Think of it as the assembler disassembler software.
32
What happens in layer 5
Handles all the sessions incoming/outgoing in a system. Sessions are opened and closed here.
33
What happens in layer 6
Incoming data is translated to be used by software and applications, vice versa for outgoing
34
What happens in layer 7
This is the programming that enables application to be network aware.
35
What is encapsualtion
The process of preparing data to go onto the network
36
What is de-encapsulation
preparing data too be used by the system
37
What are the four layers of the TCP/IP Model
Application Transport Internet Link/Network interface
38
What is a difference between OSI model and the TCP/IP Model
OSI is prescriptive, TCP/IP is descriptive
39
Explain the Link/Network interface layer (TCP/IP)
Similar to Layer 1 & 2 of the OSI model Handles all the physical connections Cabling, hubs, switches, etc.
40
Explain the internet layer (TCP/IP)
Any device or protocol that deals with pure IP packets. Any device or protocol that deals with getting the IP packets to its destination. Similar to the Network layer of the OSI model
41
Expalin the Transport layer (TCP/IP)
Combines Session and Transport (hint of application) from the OSI model Involved in the assembly and disassembly of data
42
What is a connectionless protocol
TCP, Transmission Control Protocol
43
What is a connection oriented protocol
UDP, User datagram protocol
44
What si a TCP segment
What is left after a the IP is stripped from an IP packet. Make sure data gets to the destination in the right order using a checksum, flags, and acknowledgment.
45
What does a TCP segment look like
Destination Port | Source Port | Sequence Number | Checksum | Flag | Acknowledgement | Data
46
Where does TCP get is data from
The transport layer (OSI) or internet layer (TCP)
47
What does UDP get its data from
Applcation layer
48
What does a UDP datagram look like
Destination port | Source Port | Length | Checksum | data
49
What is the range of prots TCP/IP uses
1 - 65535
50
Link layer matches with which data structure
Frame
51
Internet layer matches with which data structure
IP packet
52
Transport layer matches with which data structure
TCP/IP segment or UDP datagram
53
Application layer matches with which data structure
Data starts and ends here
54
What does an IP Header contain
Source IP Address & Destination IP Address
55
What does a TCP/UDP Header contain
Source Port & Destination Port