Multi-department enterprise network design with full VLAN segmentation, inter-VLAN routing, DHCP/DNS services, SSH hardening, and port security on Cisco switches.
This enterprise VLAN lab simulates a real corporate network environment with multiple departments (HR, IT, Sales, Management) each isolated on their own VLAN while still allowing controlled inter-department communication through an L3 switch and access lists.
Designed and implemented on Cisco Packet Tracer and GNS3, then replicated on real Cisco hardware during the GDL Academy Enterprise Network Bootcamp.
! ─── VLAN Creation ─────────────────────────────────────
vlan 10
name MANAGEMENT
vlan 20
name IT-DEPT
vlan 30
name HR-DEPT
vlan 40
name SALES-DEPT
! ─── Trunk Port Configuration ──────────────────────────
interface GigabitEthernet0/1
switchport mode trunk
switchport trunk allowed vlan 10,20,30,40,99
switchport trunk native vlan 99
! ─── SVI for Inter-VLAN Routing ─────────────────────────
interface Vlan20
ip address 192.168.20.1 255.255.255.0
no shutdown
! ─── DHCP Pool ───────────────────────────────────────────
ip dhcp pool VLAN20-IT
network 192.168.20.0 255.255.255.0
default-router 192.168.20.1
dns-server 8.8.8.8
ip dhcp excluded-address 192.168.20.1 192.168.20.20
! ─── Port Security ───────────────────────────────────────
interface FastEthernet0/2
switchport mode access
switchport access vlan 20
switchport port-security maximum 1
switchport port-security mac-address sticky
switchport port-security violation shutdown
! ─── SSH Hardening ───────────────────────────────────────
ip domain-name corp.local
crypto key generate rsa modulus 2048
ip ssh version 2
line vty 0 4
transport input ssh
login local