Ch7-Analyzing Ethernet LAN Switching Flashcards

1
Q

An Ethernet frame sent to destination address FFFF.FFFF.FFFF, meaning that the frame should be sent to all hosts on that LAN

A

broadcast frame

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

An Ethernet frame whose destination MAC address is listed in a switch’s MAC address-table, so the switch will forward the frame out the one port associated with that entry in the MAC address-table

A

known unicast frame

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

A protocol that allows a switch to dynamically work around loops in a network topology by detecting loops and removing them by blocking selected switch interfaces

A

Spanning Tree Protocol

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

An Ethernet frame whose destination MAC address is not listed in the switch’s MAC address-table, so the switch must flood the frame

A

unknown unicast frame

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

A table of forwarding information held by a Layer 2 switch, built dynamically by listening to incoming frames and used by the switch to match frames to make forwarding decisions

A

MAC address table

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

To send a frame received in one interface out another interface, toward its ultimate destination

A

forward/forwarding

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

The result of the LAN switching forwarding process for broadcasts and unknown unicast frames. These frames are forwarded all interfaces, except for the interface on which the were received

A

flooding

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

Command reference: Shows all MAC address table entries of all types

A

show mac address-table

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

Command reference: Shows all dynamically learned MAC table entries

A

show mac address-table dynamic

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

Command reference: Shows all dynamically learned MAC table entries in particular vlan

A

show mac address-table dynamic vlan vlan-id

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

Command reference: Shows the dynamically learned MAC table entries with that particular MAC address

A

show mac address-table dynamic address mac-address

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

Command reference: Shows all dynamically learned MAC table entries associated with a particular interface

A

show mac address-table dynamic interface interface-id

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

Command reference: Shows the number of entries in the MAC table, and the total number of remaining empty slots in the MAC table

A

show mac address-table count

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

Command reference: Shows the global and per-VLAN aging timeout for inactive MAC table entries

A

show mac address-table aging-time

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

Command reference: Clears the MAC address table of all dynamic entries

A

clear mac address-table dynamic

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

Command reference: Lists one line per interface on the switch, with basic status and operating information for each

A

show interfaces status

17
Q

Which command likely produced the following output?

A

show mac address-table dynamic

18
Q

Which command likely produced the following output?

A

show interfaces status

19
Q

Which command likely produced the following output:

A

show interfaces fa0/1 counters

20
Q

In the figure, the first command lists all dynamicly learned MAC addresses. What two possible commands could have resulted in the bottom output?

A

show mac address-table dynamic address 0200.1111.1111

show mac address-table dynamic interface fa0/1

21
Q

What command produced the following output:

A

show mac address-table aging-time

22
Q

What command produced the follwing output:

A

show mac address-table count

23
Q

What are the three main functions of a LAN switch?

A
  1. Forward frames based on destination MAC address
  2. Learn and fill the MAC address table by examining the source MAC address and port of incoming frames
  3. Prevent switching loops via STP
24
Q

Describe the process of forwarding a known unicast frame.

A
  1. Examine the destination MAC address
  2. Compare destination MAC address to MAC address table and match the destination port
  3. Forward the frame through the matched port
  4. Filter the frame from all other ports
25
Q

Describe the switch’s process of learning MAC addresses

A
  1. Examine source MAC address of incoming frame
  2. Is MAC address in the address table?
  3. If yes, reset the aging timer for that table entry
  4. If no, add the MAC address and associated incoming port to the MAC address table
26
Q

Summarize a switch’s forwarding logic.

A
  1. Forward frames based on destination port
    a. is destination broadcast or unknown unicast? if so, forward frame out all ports except incoming port
    b. Destination address is known unicast; match destination address to associated port in MAC address table, forward frame out the associated port only.
  2. Learn MAC addresses
    a. For each incoming frame, examine source MAC address and note receiving port
    b. if not already in MAC address table, add entry for that address and port
  3. Prevent loops using STP