Design and implement a multi-floor enterprise LAN using access and distribution switches. Configure inter-switch trunking, verify connectivity and understand the role of trunk ports in supporting multiple VLANs.
This scenario simulates a multi-floor enterprise network. Each floor has its own access switch connecting PCs and printers. The floors are interconnected via a distribution switch. The goal is to set up the network, assign IP addresses, enable trunk ports, and verify connectivity across floors.
Below is the topology diagram for this lab setup:
Why this step?
This step ensures that the physical and logical connections mimic a real-world multi-floor enterprise network. Establishing the topology is critical to testing communication paths and configurations.
1. Floor 1 Devices:
ip 192.168.1.10 255.255.255.0
ip 192.168.1.20 255.255.255.0
ip 192.168.1.30 255.255.255.0
2. Floor 2 Devices:
ip 192.168.2.10 255.255.255.0
ip 192.168.2.20 255.255.255.0
ip 192.168.2.30 255.255.255.0
Why this step?
Assigning unique IP addresses to each device ensures they can communicate within their subnets and across floors. Proper IP addressing is the foundation of network communication.
1. Access Switches:
enable
configure terminal
hostname Floor1_Access
enable
configure terminal
hostname Floor2_Access
Tip
“Uplink port” refers to the port on a switch that connects to another switch, router, or higher-tier network device.
Why this step?
Assigning hostnames makes it easier to identify switches during configuration and troubleshooting.
2. Distribution Router:
Router>enable
Router#configure terminal
Router(config)#hostname Distribution-R
Distribution-R(config)#int ethernet0/0
Distribution-R(config-if)#ip address 192.168.1.1 255.255.255.0
Distribution-R(config-if)#description uplink-port-floor1
Distribution-R(config-if)#no shutdown
Distribution-R(config-if)#exit
Distribution-R(config)#
Distribution-R(config)#interface e0/1
Distribution-R(config-if)#ip address 192.168.2.1 255.255.255.0
Distribution-R(config-if)#description uplink-port-floor2
Distribution-R(config-if)#no shutdown
Distribution-R(config-if)#exit
Distribution-R(config)#
Tip
Assign a routers ports ip will enable routing between other segmants.
Why this step?
This step allows routing between the subnets on each floor by enabling IP addresses on the router’s interfaces and activating them. The router acts as the default gateway for each floor.
1. Ping between devices on the same floor:
ping 192.168.1.20
ping 192.168.2.20
Why this step?
This step verifies that devices within the same subnet can communicate, ensuring the Access Switch configurations are correct.
2. Ping between devices on different floors:
ping 192.168.2.10
Why this step?
Testing inter-floor communication ensures that routing between subnets is configured properly on the Distribution Router and that trunking links are functional.
1. Check Router Ports IPs:
show ip interface brief
Tip
If devices across floors cannot communicate, verify that the ip ports are operational. Misconfigured router ports are a common cause of inter-switch communication failure.
2. Ping Devices:
Tip
Ensure each device has the correct IP configuration and belongs to the correct subnets are introduced.