Objective 2.2 Flashcards

Given a scenario, configure switching technologies and features. (20 cards)

1
Q

What is a VLAN (Virtual Local Area Network)?

A

A VLAN logically segments a physical switch into multiple, isolated broadcast domains.

Devices on one VLAN cannot communicate directly with devices on another VLAN without a Layer 3 device (like a router or Layer 3 switch).

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

What is the primary purpose of using VLANs?

A
  • Security: Isolates groups of users (e.g., HR, Finance) from each other.
  • Performance: Reduces the size of broadcast domains, minimizing unnecessary broadcast traffic and improving network efficiency.
  • Management: Simplifies network administration by grouping devices logically rather than by physical location.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a VLAN database?

A

On many switches (like Cisco), it’s a file (e.g., vlan.dat) stored in flash memory that holds the VLAN configurations for that switch, including VLAN numbers and names.

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

What is an SVI (Switch Virtual Interface)?

A

A logical Layer 3 interface created on a switch that represents a specific VLAN.

By assigning an IP address to an SVI, you enable inter-VLAN routing (on a Layer 3 switch) or remote management of the switch (on Layer 2 or Layer 3 switches).

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

Scenario:

You are trying to ping a Layer 2 switch to check its connectivity, but the pings fail. You have confirmed your computer has a valid IP address.

What must be configured on the switch for it to be managed remotely via its IP address?

A

An SVI (Switch Virtual Interface) must be created for a specific VLAN and assigned a valid IP address and subnet mask within that VLAN’s subnet.

Your computer must also be on a network that can route to the switch’s SVI address.

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

What is 802.1Q tagging?

A

An IEEE standard protocol used by switches to identify which VLAN a frame belongs to as it crosses a trunk link. It works by inserting a 4-byte “tag” into the original Ethernet frame header.

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

What is the difference between a Trunk Port and an Access Port?

A
  • Access Port: Belongs to a single VLAN and carries untagged frames for that VLAN. Typically connects to an end device like a PC or printer.
  • Trunk Port: Carries traffic for multiple VLANs simultaneously. It uses 802.1Q tagging to differentiate between the VLANs. Typically connects switches to other switches or to routers.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the Native VLAN?

A

A special VLAN configured on an 802.1Q trunk port.

Any traffic belonging to the Native VLAN is sent untagged across the trunk link.

For security, it’s best practice to change this from the default (VLAN 1) and not use it for user data.

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

What is a Voice VLAN?

A

A separate VLAN configured on a switch port to carry voice traffic from an IP phone. This allows a phone and a PC to share a single physical port, while the switch prioritizes the voice traffic into its own dedicated VLAN for better quality.

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

What is Link Aggregation?

A

The process of combining multiple physical network links into a single logical link. This provides two main benefits:

  1. Increased Bandwidth: The bandwidth is the sum of the aggregated links.
  2. Redundancy: If one physical link fails, traffic automatically fails over to the remaining links.

Also known as EtherChannel (Cisco), port bonding, or teaming.

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

What is the difference between Full-duplex and Half-duplex?

A
  • Full-duplex: Allows data to be sent and received simultaneously. Collision detection is turned off. This is the standard for modern switched networks.
  • Half-duplex: Data can only be sent or received at one time, not both. Requires collision detection (CSMA/CD). Used in older hub-based networks.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the most common problem caused by a speed or duplex mismatch between two connected devices?

A

Extremely poor performance, often characterized by high error rates, dropped packets, and late collisions being reported on the half-duplex side.

Modern devices should use auto-negotiation to prevent this.

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

What problem does STP (Spanning Tree Protocol) solve?

A

STP prevents Layer 2 switching loops.

These loops can cause broadcast storms and constant MAC address table instability, which can bring down an entire network.

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

How does STP prevent loops?

A

By creating a loop-free logical topology.

It does this by electing a Root Bridge and then having other switches intelligently block redundant paths to ensure there is only one active path to any destination.

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

What is a Broadcast Storm?

A

A network condition where broadcast frames are endlessly forwarded and amplified by switches in a looping topology.

This consumes all available bandwidth and swamps device CPUs, effectively causing a denial of service.

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

What are the primary STP port states a port transitions through to become active?

A
  1. Blocking: Not forwarding frames, but listening to BPDUs.
  2. Listening: Processing BPDUs to determine the root bridge and its role in the topology. Not forwarding frames.
  3. Learning: Building the MAC address table. Not forwarding frames.
  4. Forwarding: The port is fully active and can send and receive user data.

Note: There is also a Disabled state.

17
Q

What is MTU (Maximum Transmission Unit)?

A

The largest size of a data payload that a protocol can carry in a single packet or frame.

For standard Ethernet, the MTU is 1500 bytes.

18
Q

What are Jumbo Frames?

A

Ethernet frames with an MTU larger than the standard 1500 bytes, typically up to 9000 bytes.

19
Q

What is the main benefit of using Jumbo Frames and where are they most commonly used?

A

Benefit: They increase throughput and reduce CPU overhead because fewer frames need to be processed for the same amount of data.

Common Use Case: High-performance networks like Storage Area Networks (SANs) or iSCSI networks where large files are transferred.

20
Q

What is a critical requirement for successfully implementing Jumbo Frames on a network?

A

Every device in the data path—including the sender’s NIC, the receiver’s NIC, and all switches in between—must be configured to support the same jumbo frame size.

A mismatch will cause packets to be dropped.