Core refresh: simplify trunks + management isolation
Cleaned VLAN boundaries, tightened management plane assumptions, and updated port roles.
Build logs, diagrams, configs, and notes — documented like a system, not a feed.
L3 core + access switching + segmented VLANs + virtualization stack. Focus: management isolation, clean trunks, routing labs, and security layering.
Core refresh: simplify trunks + management isolation
Cleaned VLAN boundaries, tightened management plane assumptions, and updated port roles.
Virtualization baseline: trunk to hypervisor
Standardized VLAN tagging for VMs and separated infra services from user workloads.
Access switch cleanup: edge ports + naming
Standardized port descriptions and tightened access vs trunk expectations.
Keep this clean: only the parts that matter. Each snippet should explain intent.
! interface example (placeholder)
interface Gi1/0/1
description UPLINK_TO_CORE
switchport mode trunk
switchport trunk allowed vlan 10,20,30
spanning-tree portfast trunk
!
! management posture (placeholder)
ip access-list standard MGMT_ONLY
permit 10.10.10.0 0.0.0.255
deny any
!
line vty 0 4
access-class MGMT_ONLY in
transport input ssh
!