Welcome to VOSS Fabric Connect Lab! 🚀
This interactive lab will guide you through configuring a three-switch Extreme Networks
VOSS Fabric Connect topology. You'll learn real-world configuration techniques based on
actual troubleshooting scenarios.
This lab can be found on the 192.168.128.185 server in the SimGym
What You'll Learn
- VOSS-specific command syntax and sequence requirements
- SPBM (Shortest Path Bridging MAC) configuration
- ISIS routing protocol setup for fabric connectivity
- Fabric Attach vs. Static VLAN assignment strategies
- Common configuration errors and their solutions
- Verification and troubleshooting techniques
Lab Environment
- 3 VOSS Switches: VOSSVM-1, VOSSVM-2, VOSSVM-3
- 2 Client PCs: PC1 (connected to VOSSVM-2), PC2 (connected to VOSSVM-1)
- Triangular Fabric: Full mesh connectivity between switches
- Service VLAN: VLAN 100 with I-SID 10000100
Network Topology 📊
VOSSVM-3
🔄
1/1 / \ 1/2
/ \
/ \
/ \
🔄 VOSSVM-2 ———————————— VOSSVM-1 🔄
| 1/4 1/4 |
| |
| 1/8 | 1/8
| |
💻 PC1 PC2 💻
Physical Connections
- VOSSVM-1 ↔ VOSSVM-2: GigE 1/4 ↔ GigE 1/4 (Fabric Link)
- VOSSVM-2 ↔ VOSSVM-3: GigE 1/1 ↔ GigE 1/1 (Fabric Link)
- VOSSVM-1 ↔ VOSSVM-3: GigE 1/1 ↔ GigE 1/2 (Fabric Link)
- PC1 ↔ VOSSVM-2: GigE 1/8 (Client Connection)
- PC2 ↔ VOSSVM-1: GigE 1/8 (Client Connection)
Logical Design
- Fabric Type: ISIS Level-1 Area
- SPBM Instance: Instance 1
- B-VLANs: 4051 (Primary), 4052 (Secondary)
- Customer Service: VLAN 100 → I-SID 10000100
- IP Addressing: 192.168.100.0/24 network
Prerequisites & Planning 📋
Required Information
Before starting, gather this information for each switch:
| Switch | System ID | Nickname | VLAN 100 IP |
|---|---|---|---|
| VOSSVM-1 | 0001.0001.0001 | 1.00.01 | 192.168.100.1/24 |
| VOSSVM-2 | 0002.0002.0002 | 2.00.02 | 192.168.100.2/24 |
| VOSSVM-3 | 0003.0003.0003 | 3.00.03 | No VLAN interface |
Common Parameters
- ISIS Area: 49.0000 (Manual Area)
- SPBM Instance: 1
- Primary B-VLAN: 4051
- Secondary B-VLAN: 4052
- Customer VLAN: 100
- I-SID: 10000100
- SPBM Ethertype: 0x8100
💡 Key Learning Point
System IDs and Nicknames must be unique per switch, but B-VLANs, I-SIDs, and ISIS Area must be identical across all fabric switches for proper operation.
Step-by-Step Configuration ⚙️
🔧 VOSSVM-1 Configuration
Initial Setup & ISIS Disable
🎯 Why This Step?
ISIS must be disabled before making SPBM configuration changes. This prevents runtime modification errors and ensures clean configuration.
SPBM Global Configuration
ISIS & SPBM Instance Setup
B-VLAN Creation
Fabric Interface Configuration
encapsulation dot1q, you'll get: "ISIS configurations are not allowed on EAPOL enabled ports"
Edge Interface for PC2
Enable ISIS & Services
📝 VLAN Type Syntax
When using type port-mstprstp, you must specify the MSTP instance (0 = default CIST).
VLAN Interface & Port Assignment
tagging untagAll syntax, not tagging untagged.
🚀 Pro Tip: Automated Alternative
Instead of manual configuration, you can use the built-in script on each switch:
The script will prompt for all parameters and handle the correct sequence automatically!
Common Issues & Solutions 🔧
Error: "ISIS - IS-IS is enabled, runtime change not allowed"
Error: "ISIS configurations are not allowed on EAPOL enabled ports"
encapsulation dot1q first.
Error: "Instance id" required when creating VLANs
Error: "Switched UNI ports cannot be part of any vlan"
Command Syntax Issues
| Wrong | Correct | Purpose |
|---|---|---|
no shutdown |
enable |
Enable interface |
tagging untagged |
tagging untagAll |
Untagged VLAN ports |
no eapol enable |
encapsulation dot1q |
Allow ISIS config |
🔍 Troubleshooting Commands
Configuration Verification ✅
Verify SPBM Configuration
Expected output should show:
- SPBM Instance 1 with correct B-VID and nickname
- Primary B-VLAN 4051, Secondary 4052
- Status should be "enable"
Verify ISIS Adjacencies
Expected output should show:
- Adjacencies with other VOSS switches
- State should be "Up"
- Level should be "L1"
Verify VLAN and I-SID Mapping
Expected output should show:
- VLAN 100 mapped to I-SID 10000100
- VLAN members including edge ports
- VLAN interface with correct IP address
Verify Fabric Forwarding
Expected output should show:
- Unicast FIB entries for other fabric switches
- Outgoing interfaces for each destination
- Correct costs and area information
Test End-to-End Connectivity
- PC1 (connected to VOSSVM-2): 192.168.100.10
- PC2 (connected to VOSSVM-1): 192.168.100.20
🎯 Success Criteria
- ✅ All ISIS adjacencies are Up
- ✅ SPBM instance shows all switches
- ✅ VLAN 100 is present on all edge switches
- ✅ I-SID 10000100 is properly mapped
- ✅ PC-to-PC connectivity works
- ✅ Fabric provides redundant paths
Knowledge Check Quiz 🧠
Test your understanding of VOSS Fabric Connect configuration!
🏆 Quiz Complete!
Great job working through the VOSS Fabric Connect configuration! You've learned:
- Critical configuration sequence requirements
- VOSS-specific command syntax
- Common troubleshooting scenarios
- Fabric Attach vs. static VLAN assignment
- Verification and validation techniques