Chapter 1 - Network Models Flashcards

1
Q

Where does a hub send data?

A

Data comes into the hub through one wire and is then sent trhough all the remaining wires.

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

What uniquely identifies every NIC?

A

The MAC (Media Access Control) adress.

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

What Windows utility do you use to find the MAC address for a system?

A

ipconfig /all

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

A NIC sends data in discrete chunks called ____.

A

Frames.

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

Which MAC address begins a frame?

A

It starts with the receiving MAC.

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

A frame ends with a special bit called the frame check sequence (FCS). What does the FCS do?

A

Error detection. It uses the CRC (cyclic redondancy check) algorythm.

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

What format is used to represent a MAC adress.

A

A MAC adress is a 48 bit address represented by 6 bytes (2 Hex).

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

Which layer of the TCP/IP model controls the segmentation and reassembly of data?

A

The transport layer.

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

Which layer of the OSI seven-layer model keeps track of a system connections to send the right response to the right computer?

A

the session layer.

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

Name the 7 OSI layers.

A

Layer 7 Application
Layer 6 Presentation
Layer 5 Session
Layer 4 Transport
Layer 3 Network
Layer 2 Data Link
Layer 1 Physical

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

What does UTP cabling stands for?

A

Unshielded Twisted Pair.

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

What is a NIC?

A

A NIC is a Network Interface Card. It operates on Layer 1 & 2 and is used to interface the network connection to the computer system.

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

What is a OUI?

A

Organizationally Unique Identifier. It is the first 24 bits of the MAC address.

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

What is the difference between MAC-48 and EUI-48?

A

EUI-48 stands for Extended Unique Identifier. It is the latest IEEE nomenclature for MAC-48, but every tech still calls it a MAC address.

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

What is a frame?

A

A frame is a layer 2 data chunck. It is composed of the recipient MAC address, the sender’s MAC address, the type, the encapsulated Data and the FCS. It is 4 bytes long. A frame has a maximal size of 1500 bytes.

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

What are the two aspects of the NIC?

A

The NIC has the Logical Link Control (LLC) and the Media Access Control (MAC) aspect. The LLC provides flow controls and talks to the drivers while the MAC which create, sends and receives the frames.

17
Q

What is a logical address?

A

A Logical address is an IP address.

18
Q

What is a packet?

A

A packet is a unit of data transmitted over a network. It consists of two main parts: the header and the payload. The header contains information about the packet, such as the source and destination addresses, sequencing information, error-checking data, and protocol details. The payload carries the actual data being transmitted.

Packets are essential for efficient data transfer in computer networks. They allow large files to be broken down into smaller, manageable units, improving network performance and reliability. The process of breaking down and reassembling data into packets is known as packetization. Once packets reach their destination, they are reassembled in the correct order to reconstruct the original data.

19
Q

What is segmentation and reassembly?

A

Segmentation is the process of breaking down large blocks of data into smaller segments for efficient transmission over a network. These segments, or packets, are easier to handle and transmit compared to transmitting the entire block of data at once. Segmentation is a fundamental aspect of packet-switched networks, where data is transmitted in discrete packets.

Reassembly is the counterpart process to segmentation. Upon reaching their destination, the individual segments or packets are reassembled in the correct order to reconstruct the original data. This process ensures that the data transmitted over the network is accurately reconstructed at the receiving end.

20
Q

How is a network able to talk to multiple devices at the same time?

A

The secret to multiple connection is within the layer 5 (session). The session layer assigns port to track connections.

21
Q

Where does high level encryption exists?

A

Protocols like SSL and TLS exists at the presentation layer (layer 6). The presentation layer interface the application layer and the session layer and translates the data between them (e.g. encryption).

22
Q

What’s the role of the application layer?

A

The application layer in the OSI model serves as the interface between the network and the software applications that need network services. Its primary role is to provide network services directly to end-users or applications. This layer enables communication between different software applications, handling tasks such as data exchange, encryption, and compression.

23
Q

Explain encapsulation and decapsulation.

A

Encapsulation is the process of wrapping data in a specific protocol header as it moves through the layers of the OSI model. Each layer adds its own header to the data, forming a packet or frame. This encapsulation provides structure and additional information to the data, facilitating its transmission across the network.

Decapsulation is the reverse process, occurring at the receiving end. As data travels up the OSI model layers, each layer removes its respective header, extracting the original data. Decapsulation ensures that the data is appropriately processed and delivered to the intended destination.

24
Q

What are the 4 layers of the TCP/IP model?

A

Layer 4 Application
Layer 3 Transport
Layer 2 Internet
Layer 1 Link/Network Interface

25
Q

What is the structure of a TCP segment?

A

Destination port, Source port, Sequence number, Checksum, Flags, Ack, Data.

26
Q
A