Lab 1 - VLANs

Shrimp Co. is opening their first office in Seattle, WA, and you're hired as their network administrator. The switch is racked in IDF-A and it's up to you to set up basic Layer 2 segmentation.

Tip: Individual topology files are available in the diagrams folder on my Github

Configuration Tasks

VLAN Configuration

Create and configure the following VLANs:

  • VLAN 10 - Sales
  • VLAN 20 - Engineering
  • VLAN 99 - IT

Host IP Addresses & VLAN Assignment

Host VLAN Assignment IP Address
Bob 10 (Sales) 10.1.10.10/24
Linda 10 (Sales) 10.1.10.20/24
Alice 20 (Engineering) 10.1.20.10/24

Success Criteria

Primary Goals

  1. Connectivity Test: Bob and Linda can ping each other (same VLAN)
  2. Isolation Test: Alice cannot ping Bob or Linda (different VLANs)

Stretch Goals

  • Add descriptive port descriptions to all switchports
  • Configure VLAN 99 SVI on the switch (interface Vlan99) with IP 10.1.99.10/24
  • Take a packet capture of successful pings between Bob & Lind with tcpdump interface ethernet1 filter icmp

Verification Commands

# Show configured VLANs
show vlan [brief]

# Show interface status, duplex, speed, and more
show interfaces status

# Show MAC address forwarding table
show mac address-table

# Show configured IP interfaces
show ip interface brief
# Show configured IP information
ifconfig

# Send ICMP echo requests
ping 10.1.10.20

Key Concepts

Why VLANs Matter

  • Security: Network segmentation isolates traffic
  • Broadcast Control: Reduces broadcast domain size
  • Organization: Logical grouping of devices

Questions to Explore

  • What happens when you send a broadcast in VLAN 10?
  • How does the switch learn where each host is located?
  • Why does interface VLAN 99 say down/lowerlayerdown in the output of show interfaces status?
  • When you took the tcpdump what parts of the output can you identify?

EOS 4.34.1F - Layer 2 Configuration | Virtual VLANs (VLANS)