Module 1 / Unit 2 Ethernet Flashcards

On completion of this unit, you will be able to: □ Understand the properties of transmission media, data signaling, and media access control. □ Describe the features of IEEE 802.3 (Ethernet). □ Describe the properties of MAC addressing and ARP. □ Understand the use of packet sniffers / protocol analyzers to capture and examine network traffic.

1
Q

What is attenuation?

A

The loss of signal strength that occurs as the signal travels through the media

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

Why might the baud rate be different from the bit rate?

A

Baud is the number of symbols measured in Hertz; bit rate is the amount of information, measured in bits per second. A signaling technique might encode more than one bit per symbol.

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

With CSMA/CD, what will happen if a computer has data to transmit and there is already data on the cable?

A

The computer will wait until the cable is clear to transmit the data.

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

What is an MTU?

A

Maximum Transmission Unit - the amount of data that a frame payload can carry.

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

True or false? The CRC mechanism in Ethernet allows for the retransmission of damaged frames.

A

False. The CRC only indicates that a frame may be corrupt.

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

True or false? A computer with a 10BASE-T Ethernet adapter cannot be joined to a 100BASE-T network.

A

False - Fast Ethernet is backwards-compatible with 10BASE-T (and Gigabit Ethernet is backwards-compatible with Fast Ethernet).

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

You want to use fiber optic cabling to support 1 Gigabit Ethernet in a LAN. Which Ethernet standard should you use?

A

1000BASE-SX.

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

What is an I/G bit?

A

Determines whether a frame is addressed to a single node (0) or group (1). The latter is used for multicast and broadcast

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

If a mapping for a local destination host is not found in a source host ARP cache, how does the source host send an ARP request?

A

As a broadcast to all local hosts.

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

If a packet is addressed to a remote network, what destination MAC address will the sending node use?

A

The MAC address of the default gateway.

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

True or false? The arp utility allows you to discover another host’s MAC address.

A

Partially false - while that is the function of the Address Resolution Protocol, the arp utility is used to inspect the arp cache table, which may or may not contain the other host’s address. A standard means to ensure the MAC address is cached is to ping the destination address first (the basis of the arping utility).

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

On a switched network, what configuration changes must be made to allow a host to sniff unicast traffic from all hosts connected to a switch?

A

The network adapter must be put in p-mode (promiscuous mode) and the switch must be configured to mirror traffic to the sniffer’s port.

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

Write the command to use tcpdump to capture traffic from the IP address 172.16.16.254 on the interface eth0 and output the results to the file router.pcap:

A

tcpdump -I eth0 -w ‘router.pcap’ src host 172.16.16.254

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