Network Models Ch 1 Flashcards

1
Q

Layer 1

A

Physical

Anything that moves data from once system to another system
Does not care about the data it moves

Cabling and Central Box and Hub
Copper, Fiber, Ethernet, Radio Waves

NIC (also part of Layer 2 Data link)

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

Layer 2

A

Data - Link

Identifies devices on physical layer

Any device that deals with a MAC address
Switch and NIC
NIC Creates, sends, as well as receives, and reads, Frames

Transfers data in frames between nodes on a network segment across the physical layer.

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

Layer 3

A

Network

Network layer provides the means of transferring network packets from a source to a destination host via one or more networks.

Routers assign IP address to send and Receive Packets

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

Layer 4

A

Transport

Breaks data down into manageable chunks with TCP
UDP also operates at this layer

TCP Segments
Ports

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

Layer 5

A

Session

Manages connections between machines
Provides the mechanism for opening, closing and managing a session between end-user application processes

Sockets operate at this layer

Example: Web browser connection to a web server

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

Layer 6

A

Presentation

Translates data from lower levels into format usable by the application layer and vice-versa

Manages data encryption
Data Compression

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

Layer 7

A

Application

Provides tools for programs to access the network and lower layers

Does not refer to the application themselves, refers to the code built into the all OS’s that enables network aware applications

API (Application Programming Interfaces)

Example
SSL/TLS
FTP
SNTP
DNS
DHCP
IMAP
HTTP(S)

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

What is the difference between the OSI and TC/IP models?

A

TCP IP model consists of only 4 Layers:
Application
Transport
Network
Network Access Layer/Network Interface

Application Application
Presentation Application
Session Application

Transport Transport
Network Network

Data Link Network Interface
Physical Network Interface

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

Frame

A

Encapsulates data to transfer across network. Does not move out of a LAN
Part of Layer 2

Frame Model
Preamble | Recipient MAC | Sender MAC | Type- Data | Pad| FCS (Frame Check Sequence)

Type-sums up data in frame
Data - Minimum 64 bytes of data
Pad - Extra Data to bring it up to minimum data
FCS - Error Checking and makes sure all data is sent

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

Define TCP

A

Transmission Control Protocol

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

Packet

A

Packets get created and addressed so they can go from one network from another
Part of Layer 3

IP piece of data makes sure data gets to where it needs to go on the network

Packet Model
Destination IP| Source IP | Data

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

MAC

A

Media Access Control
Known as Physical Address

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

IP Address

A

IP (Internet Protocol)
Known as logical address
4 8 bit numbers
each 8 bit ranges from 0-255
0.0.0.0

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

Define Segment and what Layer its part of

A

Data that has been broken up into chucks called segments to be transferred across the network.

Part of Layer 4

TCP Segment Model
Source Port | Destination Port | Sequence Number | Acknowledgment (ACK) Number | STUFF | Data

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

What makes up UDP Data Gram?

A

Part of Layer 4

UDP Data Gram Model
Source Port | Destination Port | Length | Checksum | Data

Checksum - Simple error detection method that adds numerical value to each packet, allows receiver to detect corruption as it moves the rough network.

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

What makes up a Socket

A

Part of layer 5 - Session
Combination of a port number and an ip address that uniquely identifies its connection