cisco:switch:9500:cisco_catalyst_9500_series_manual
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
cisco:switch:9500:cisco_catalyst_9500_series_manual [2025/07/30 16:12] – aperez | cisco:switch:9500:cisco_catalyst_9500_series_manual [2025/09/11 01:08] (current) – aperez | ||
---|---|---|---|
Line 1044: | Line 1044: | ||
+ | |||
+ | |||
+ | |||
+ | ---- | ||
Line 1138: | Line 1142: | ||
---- | ---- | ||
- | ==== ✅ Tip for Studying | + | ==== ✅ VXLAN overlays |
- | VXLAN overlays | + | allow to: |
* Stretch VLANs across L3 boundaries | * Stretch VLANs across L3 boundaries | ||
* Enable mobility and segmentation | * Enable mobility and segmentation | ||
* Scale beyond 4094 VLAN limit using 16 million VNIs | * Scale beyond 4094 VLAN limit using 16 million VNIs | ||
- | Study both the **terminology** and the **CLI structure** in IOS-XE and NX-OS for a full understanding. | + | ----Â |
+ | ----Â | ||
+ | Â | ||
+ | ====== VXLAN Static Configuration – Cisco 9500 ⇄ Aruba 6300 ====== | ||
+ | Â | ||
+ | === 📘 Architecture Summary === | ||
+ | Â | ||
+ | ^ Parameter | ||
+ | | VTEP Loopback IP | 172.22.32.1 | ||
+ | | Transport IP | 172.18.32.33 (To Aruba) | ||
+ | | Transport Interface | ||
+ | | OSPF Area | 0 | 0 |Â | ||
+ | | VXLAN Mode | Static VXLAN | Static VXLAN |Â | ||
+ | | VXLAN Interface | ||
+ | | VNIs | 10001, 10700–10732 | ||
+ | | Inter-VXLAN Bridging | ||
+ | Â | ||
+ | ----Â | ||
+ | Â | ||
+ | === 🚀 Cisco 9500 Configuration === | ||
+ | Â | ||
+ | ==== 🔹 1. VTEP Loopback ==== | ||
+ | interface Loopback0Â | ||
+ | ip address 172.22.32.1 255.255.255.255Â | ||
+ | Â | ||
+ | ==== 🔹 2. Transport Interface ==== | ||
+ | interface TenGigabitEthernet1/ | ||
+ | | ||
+ | ip address 172.18.32.33 255.255.255.252Â | ||
+ | no shutdown | ||
+ | Â | ||
+ | ==== 🔹 3. OSPF ==== | ||
+ | router ospf 100Â | ||
+ | | ||
+ | | ||
+ | | ||
+ | Â | ||
+ | ==== 🔹 4. Static Route ==== | ||
+ | ip route 172.22.32.2 255.255.255.255 172.18.32.34Â | ||
+ | Â | ||
+ | ==== 🔹 5. NVE Interface ==== | ||
+ | interface nve1Â | ||
+ | no shutdown | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | Â | ||
+ | ==== 🔹 6. Bridge Domains ==== | ||
+ | bridge-domain 1Â | ||
+ | | ||
+ | Â | ||
+ | bridge-domain 700Â | ||
+ | | ||
+ | Â | ||
+ | bridge-domain 712Â | ||
+ | | ||
+ | Â | ||
+ | bridge-domain 730Â | ||
+ | | ||
+ | Â | ||
+ | bridge-domain 732Â | ||
+ | | ||
+ | Â | ||
+ | ----Â | ||
+ | Â | ||
+ | === 🧩 Aruba 6300 Configuration === | ||
+ | Â | ||
+ | ==== 🔹 1. Loopback Interface ==== | ||
+ | interface loopback 0Â | ||
+ | ip address 172.22.32.2/ | ||
+ | Â | ||
+ | ==== 🔹 2. Transport Interface ==== | ||
+ | interface 1/1/12Â | ||
+ | | ||
+ | ip address 172.18.32.34/ | ||
+ | no shutdown | ||
+ | Â | ||
+ | ==== 🔹 3. OSPF ==== | ||
+ | router ospf | ||
+ | | ||
+ | area 0.0.0.0Â | ||
+ | | ||
+ | | ||
+ | Â | ||
+ | ==== 🔹 4. Static Route ==== | ||
+ | ip route 172.22.32.1/ | ||
+ | Â | ||
+ | ==== 🔹 5. VXLAN Interface ==== | ||
+ | interface vxlan 1Â | ||
+ | | ||
+ | | ||
+ | Â | ||
+ | ==== 🔹 6. VNI to VLAN Mapping ==== | ||
+ | vxlan vlan 1 vni 10001Â | ||
+ | vxlan vtep 172.22.32.1Â | ||
+ | Â | ||
+ | vxlan vlan 700 vni 10700Â | ||
+ | vxlan vtep 172.22.32.1Â | ||
+ | Â | ||
+ | vxlan vlan 712 vni 10712Â | ||
+ | vxlan vtep 172.22.32.1Â | ||
+ | Â | ||
+ | vxlan vlan 730 vni 10730Â | ||
+ | vxlan vtep 172.22.32.1Â | ||
+ | Â | ||
+ | vxlan vlan 732 vni 10732Â | ||
+ | vxlan vtep 172.22.32.1Â | ||
+ | Â | ||
+ | ----Â | ||
+ | Â | ||
+ | === 🧪 Validation Commands === | ||
+ | Â | ||
+ | ==== 🔸 Cisco 9500 ==== | ||
+ | show nve interface nve1Â | ||
+ | show nve vni summary | ||
+ | show nve vni interface nve 1Â | ||
+ | show nve peers | ||
+ | ping 172.22.32.2 source 172.22.32.1Â | ||
+ | show mac address-table vlan 712Â | ||
+ | Â | ||
+ | ==== 🔸 Aruba 6300 ==== | ||
+ | show interface vxlan 1Â | ||
+ | show interface vxlan vni vteps | ||
+ | ping 172.22.32.1 source 172.22.32.2Â | ||
+ | show mac-address-table vlan 712Â | ||
+ | Â | ||
+ | Â | ||
+ | Â | ||
+ | === ✅ Notes === | ||
+ | Â | ||
+ | | ||
+ | | ||
+ | * For production EVPN deployment, BGP configuration will be required. | ||
+ | Â | ||
+ | Â | ||
+ | Â | ||
+ | ----Â | ||
+ | ----Â | ||
+ | {{ : | ||
+ | Â | ||
+ | {{pdfjs 46em >: | ||
+ | ----Â | ||
+ | ----Â | ||
+ | Â | ||
+ | Â | ||
+ | {{ : | ||
+ | Â | ||
+ | {{pdfjs 46em >: | ||
---- | ---- | ||
---- | ---- |
cisco/switch/9500/cisco_catalyst_9500_series_manual.1753909922.txt.gz · Last modified: 2025/07/30 16:12 by aperez