Chapter 5 - Ethernet LAN Switching Flashcards

1
Q

LAN Switching Summary

A

Switches use Layer 2 logic, examining the Ethernet data-link header to choose how to process frames. Switches make decisions to forward and filter frames, learn MAC addresses, and use STP to avoid loops.

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

EXEC Command

show mac address-table

A

Shows all MAC table entries of all types

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

EXEC Command

show mac address-table dynamic

A

Shows all dynamically learned MAC table entries

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

EXEC Command

show mac address-table vlan vlan-id

A

Shows all dynamically learned MAC table entries in the VLAN

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

EXEC Command

show mac address-table dynamic address mac-address

A

Shows the dynamically learned MAC table entries with the MAC address

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

EXEC Command

show mac address-table dynamic interface interface-id

A

Shows all dynamically learned MAC table entries associated with that interface

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

EXEC Command

show mac address-table count

A

Shows the number of entries in the MAC table and the total number of remaining empty slots in the MAC table

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

EXEC Command

show mac address-table table aging-time

A

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

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

EXEC Command

clear mac address-table dynamic

A

Empties the MAC table of all dynamic entries

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

EXEC Command

show interfaces status

A

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

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

EXEC Command

clear mac address-table dynamic [vlan vlan number] [interface interface-id] [address mac-address]

A

clears (removes) dynamic MAC table entries: either all (with no parameters), or a subset based on VLAN ID, interface ID, or a specific MAC address

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

EXEC Command

mac address-table aging-time [time-in-seconds] [vlan vlan-number]

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

Broadcast Frame

A

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

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

Known Unicast Frame

A

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.

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

Spanning Tree Protocol (STP)

A

A protocol defined by IEEE standard 802. ID. Allows switches and bridges to create a redundant LAN, with the protocol dynamically causing some ports to block traffic, so that the bridge/ switch forwarding logic will not cause frames to loop indefinitely around the LAN.

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

Unknown Unicast Frame

A

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

17
Q

MAC Address Table

A

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 decisions about where to forward the frame.

18
Q

Forward

A

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

19
Q

Flood

A

The result of the LAN switch forwarding process for broadcasts and unknown unicast frames. Switches forward these frames out all interfaces, except the interface in which the frame arrived. Switches also flood multicasts by default, although this behavior can be changed.