The Data Link Layer (TCP/IP) Flashcards

1
Q

What is the most common protocol to send data across individual links?

A

Ethernet

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

What is one of the primary purposes of the Data Link Layer?

A

To abstract away the need for any other layer to care about the physical layer and what hardware is in use

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

What problem did the Ethernet protocol solve?

A

Collision domains in Hubs

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

What is CSMA/CD?

A

A technique used to determine when the communications channels are clear and when the device to free to transmit data

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

What is the size of a MAC address and what is it made up of? (Sections excluded)

A

Its 48 bits long and represented by six groupings of two hexadecimal numbers called Octets

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

In computer networking, what is an Octet?

A

Any number that can be represented by 8 bits

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

What are the sections of a MAC address?

A

The first three octets of a MAC address are know as the Organizationally Unique Identifier (OUI), which are assigned to manufacturers by the IEEE. The last three octets determined by the manufacturer

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

What is a Unicast transmission?

A

A transmission that’s always meant for just one receiving address

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

At the Ethernet level, how does a transmission know whether to send data to one address or multiple?

A

This is done by looking at a special bit in the destination MAC address. If the least significant bit in the first octet of a destination address is set to zero, it means that Ethernet frame is intended for only the destination address. If the least significant bit in the first octet of a destination address is set to one, it means you’re dealing with a multicast frame

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

What is a Multicast Frame?

A

A multicast frame is a transmission intended to be sent some MAC addresses on a network

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

What is an Ethernet Broadcast?

A

An Ethernet transmission sent to every single device on a LAN

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

What is the Ethernet broadcast address literally made up of?

A

A MAC address but with all Fs

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

What are Data Packets referred to as on the Ethernet level?

A

Ethernet Frames

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

What is an Ethernet Frame?

A

An Ethernet frame is a highly structured collection of information presented in a specific order

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

What is the first part of an Ethernet Frame? How large is it?

A

The preamble, which is 8 bytes long

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

What is the last byte in an Ethernet frame referred to as? What does it do?

A

Start Frame Delimiter (SFD). It signals to a receiving device that the preamble is over and that the actual frame contents will now follow

17
Q

What is the second part of an Ethernet frame referred to as?

A

Destination MAC address

18
Q

What is the third part of an Ethernet frame referred to as?

A

Source MAC address

19
Q

What is the fourth part of an Ethernet frame referred to as? How large is it?

A

EtherType Field. Its 16 bits long and used to describe the protocol of the contents of the frame

20
Q

What could you also find before an EtherType field in an Ethernet frame? What does it do?

A

a VLAN header, which indicates that the frame itself is what’s called a VLAN frame. If a VLAN header is present, the EtherType field will follow

21
Q

What is VLAN on an Ethernet frame?

A

Virtual LAN (VLAN) is a technique that lets you have multiple logical LANs operating on the same physical equipment

22
Q

What is the fifth part of an Ethernet frame referred to as? What does it do? What is the size range?

A

Payload, which is the actual data being sent, and be between 46 to 1500 bytes long

23
Q

What is the sixth part of an Ethernet frame referred to as? What does it do? What is the size range?

A

Frame Check Sequence (FCS). Its 4 bytes long and represents a checksum value for the entire frame

24
Q

How is the checksum value of an FCS on an Ethernet frame calculated?

A

By performing what’s known as a cyclical redundancy check against the frame

25
Q

What is a Cyclical Redundancy Check (CRC)?

A

A CRC is basically a mathematical transformation that uses polynomial division to create a number that represents a larger set of data. Anytime you perform a CRC against a set of data, you should end up with the same checksum number

26
Q

Does Ethernet report on data recovery?

A

No