Chapter 9 - Implementing Ethernet Virtual LANs Flashcards

1
Q

How would you create 2 broadcast domains on one switch?

A

Configure VLANs on the switch.

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

What are some common reasons for implementing VLANs?

A

1) Reduce CPU overhead on each device since less devices will receive broadcast frames
2) Reduce security risks by reducing the # of hosts that receive frames.
3) Improve security for hosts that send sensitive data by keeping them on a separate VLAN.
4) Create more flexible designs by grouping users by departments, or groups that work together.
5) To solve problems more quickly, since failures usually are problems experiences by devices in the same broadcast domain.
6) Reduce workload for the Spanning Tree Protocol (STP).

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

When using VLANs in networks that have multiple interconnected switches, what needs to be used on the links between the switches?

A

VLAN trunking

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

What is VLAN tagging?

A

The switch adds another header to the frame before sending it over the trunk. This extra header includes a VLAN identifier.

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

What is the purpose of the VLAN identifier?

A

So the sending and receiving switch can associate the frame with a particular VLAN ID and know which VLAN the frame belongs.

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

What are two trunking protocols that Cisco supports and which one is the most current one?

A

Inter-Switch Link (ISL) and IEEE 802.1Q (which is the newer standard)

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

What size VLAN header does 802.1Q add to the original frame’s Ethernet header?

A

4-bytes

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

What’s the size of the actual VLAN ID in the 802.1Q tag?

A

12 bits

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

Since the Layer 2 switch does not forward frames outside a VLAN, where does the job of forward data between VLANs fall?

A

Falls with routers.

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

In regards to routing between VLANs, instead of the router connecting an interface to each VLAN on the switch, what can be configured so the router only needs to use one interface connected to the switch?

A

Use trunking between the router and a switch. This is also known as router-on-a-stick.

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

Other than a router doing all the VLAN routing, what else can be considered when routing between VLANs?

A

Layer 3 switch

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

What are nontrunking interfaces on a switch also known as?

A

access interfaces

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

From configuration mode, what is the command to add a vlan?

A

vlan {vlan-id}

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

What optional command would give the VLAN a name?

A

name {name} VLAN subcommand

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

If you do not give a VLAN a name, what’s the format that is given by the switch?

A

VLANZZZZ where ZZZZ is the 4-digit decimal VLAN ID

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

After moving into the interface, what command would you use to assign that interface to a specific VLAN?

A

switchport access vlan {id-number}

17
Q

What optional command do you use to disable trunking on an interface after assigning it to a VLAN?

A

switchport mode access - this prevents it from negotiating to trunk

18
Q

How many VLANs does the 802.1Q header support?

A

4094 {0 and 4095 are reserved}

19
Q

Cisco switches break the range of VLAN IDs into what 2 ranges?

A

normal and extended range - the normal range is from 1-1005 - the extended is from 1006 to 4094

20
Q

What are the 4 command options for the switchport mode command?

A

1) access
2) trunk
3) dynamic desirable
4) dynamic auto

21
Q

Which switchport mode command option always acts like a trunk port?

A

trunk

22
Q

Which switchport mode command option initiates negotiation messages and responds to negotiation messages to dynamically choose whether to start using trunking?

A

dynamic desirable

23
Q

Which switchport mode command option always acts like an access (nontrunk) port?

A

access

24
Q

Which switchport mode command option passively waits to receive trunk negotiation messages?

A

dynamic auto

25
Q

What is the default switchport mode on a switch?

A

dynamic auto

26
Q

If the administrative mode is “access” on one side and “access” on the other side, what is the result?

A

access

27
Q

If the administrative mode is “dynamic auto” on one side and “dynamic auto” on the other side, what is the result?

A

access

28
Q

If the administrative mode is “dynamic auto” on one side and “dynamic desirable” on the other side, what is the result?

A

trunk

29
Q

If the administrative mode is “access” on one side and “dynamic desirable” on the other side, what is the result?

A

access

30
Q

What configuration of administrative mode do you not want to use?

A

trunk on one side and access on the other

31
Q

Which command allows you to control what VLANs are allowed on the trunk?

A

switchport trunk allowed vlan {add | all | except | remove} vlan-list

32
Q

What are 5 reasons why a switch would prevent a particular VLAN traffic from crossing a trunk?

A

1) A VLAN has been removed from the trunk’s allowed VLAN list.
2) A VLAN does not exist in the switch’s configuration
3) A VLAN does exist, but has been administratively shut down
4) A VLAN has been automatically pruned by VTP.
5) A VLAN’s STP instance has placed the trunk interface into a blocking state.