Chapter 8 VLANS Flashcards

1
Q

What’s a VLAN?

A

A virtual switch within a switch or domain of its own with its own broadcast.

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

What are some benefits to having VLANS?

A
  • Smaller broadcast domains. Less end devices that have to use CPU recourse on broadcasts hence higher CPU over head.
  • Security by not all host receiving every Frame despite being in the same switch.
  • Flexible design without bring another physical switch to separate devices.
  • Reduced STP workload by limiting VLAN to single access switch.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is VLAN Trunking.

A

Allows multiple VLANs to pass through one interface (connection) into another switch.

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

What is VLAN tagging?

A

The Frame gets a Tag header added on when passing through a trunk, this leaves it with a VLAN ID so the switch receiving the traffic knows where what VLAN the frame belongs to.

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

How many bytes are in the Tag header and how many of them are the VLAN identifier

A

4 bytes in total and the VLAN ID has 12 Bits.

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

How big can a VLAN theoretically be? but how big is it actually and what is the range?

A

4096 this includes 0, but only 4094 can be used because 0 and 4095 are reserved so the true range is 1-4094

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

What is the current Trunking protocol?

A

802.1q standardized by IEEE

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

what are the two VLAN ranges in Cisco.

A
  • Normal Range : 1-1005
  • Extended Range: 1006-4094
  • All Switches can use the normal range, Only some switches can use the extended range is determined by the configuration of VTP VLAN Trunking Protocol)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

When is the 802.1Q header added? and removed?

A
  • To the Frame right before the Frame leaves the Switch it originated.
  • Removed as the header comes in on the other end of the receiving switch and once the switch has read the VLAN ID and it knows what VLAN to forward that frame.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Do devices that have received Frames that came from a Trunk see the 802.1Q header?

A

No, because the switch removes it as it comes in right before it passes.

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

What is a Native VLAN. What’s the default ID?

A
  • Its a special VLAN ID on each trunk.
  • The default ID is 1.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How do Trunk VLANs tag anything that is in the Native VLAN?

A
  • By definition 802.1Q does not tag an 802.1Q tag on its Native VLAN. This means anything in the native VLAN does not carry a VLAN ID header in its frame
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What does a VLAN Trunk do with a frame that comes in without an 802.1Q header on its frame?

A

It puts it on its Native VLAN.

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

What’s an important thing about Native VLANS when setting up VLAN Trunks?

A

Both ends of the VLAN Trunks must have the same Native VLAN.

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

Create a VLAN 2, Name it and assign ports Gi 0/1 - 0/3 access to the VALN just created.

A

Switch>
Switch>en
Switch#config ter
Switch(config)#vlan 2
Switch(config-vlan)#name Accounting
Switch(config-vlan)#exit
Switch(config)#interface range gi 0/1 - 3
Switch(config-if-range)#switchport access vlan 2
Switch(config-if-range)#switchport mode access
Switch(config-if-range)#exit
Switch(config)#

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

What is the does the command switchport mode access do? is it mandatory?

A

The command tells the switch to always be an access interface and disables the protocol that negotiates Trunking (DTP: Dynamic Trunking Protocol)

17
Q

What is VTP? and what is recommended about it?

A
  • VTP is Virtual Trunking Protocol.
  • It is recommended to disable this in an environment or put it in transparent mode if its an older switch with a higher revision number since in the past switches could not fully disable VTP and could only put it in transparent mode.
18
Q

What is the command to show the status of VTP?

A

show vtp status

19
Q

What are the commands to shut down VTP

A
  • For switches that allow VTP to be disabled Global mode:vtp mode off
    • For older switches that cant disable VTP Global mode: vtp mode transparent
20
Q

What are the commands to shut down VTP

A
  • For switches that allow VTP to be disabled
    Global mode:vtp mode off
  • For older switches that cant disable VTP
    Global mode: vtp mode transparent