🎉 Welcome to BBU IT Student Showcase! Discover student projects and capstone portfolios.
Networking & Cybersecurity Year 3 (2025-2026)

Lab Project 5 - Configure Inter-Vlan Routing

By Chhay Bot Internetworking 140 Views

Note: Source code ZIPs & GitHub links are protected. Please sign in to download source code.

Project Overview

enable
configure terminal

#
# Layer 3 Switch Configuration
#

hostname L3-SW

#
# Enable Layer 3 Routing
#

ip routing

#
# Create VLANs
#

vlan 10
name VLAN10
exit

vlan 20
name VLAN20
exit

#
# Configure VLAN 10 SVI Gateway
#

interface vlan 10
ip address 172.16.10.1 255.255.255.0
no shutdown
exit

#
# Configure VLAN 20 SVI Gateway
#

interface vlan 20
ip address 172.16.20.1 255.255.255.0
no shutdown
exit

#
# Configure Trunk Port to Access Switch
#

interface gigabitEthernet1/0/1
switchport mode trunk
switchport trunk allowed vlan 10,20
no shutdown
exit

#
# Configure Second Trunk Port (if needed)
#

interface gigabitEthernet1/0/2
switchport mode trunk
switchport trunk allowed vlan 10,20
no shutdown
exit

#
# Configure Access Port VLAN 10
#

interface fastEthernet0/2
switchport mode access
switchport access vlan 10
spanning-tree portfast
no shutdown
exit

#
# Configure Access Port VLAN 20
#

interface fastEthernet0/3
switchport mode access
switchport access vlan 20
spanning-tree portfast
no shutdown
exit

#
# Save Configuration
#

end
copy running-config startup-config


#
# Access Switch Configuration
#

enable
configure terminal

hostname ACCESS-SW

#
# Create VLANs
#

vlan 10
name VLAN10
exit

vlan 20
name VLAN20
exit

#
# Configure Trunk to Layer 3 Switch
#

interface fastEthernet0/1
switchport mode trunk
switchport trunk allowed vlan 10,20
no shutdown
exit

#
# Configure PC Port VLAN 10
#

interface fastEthernet0/2
switchport mode access
switchport access vlan 10
spanning-tree portfast
no shutdown
exit

#
# Configure PC Port VLAN 20 (if PC2 on same switch)
#

interface fastEthernet0/3
switchport mode access
switchport access vlan 20
spanning-tree portfast
no shutdown
exit

#
# Save Configuration
#

end
copy running-config startup-config
Ratings & Feedback

Project Ratings & Reviews

Ratings and feedback from students, faculty supervisors, and visitors.

0
out of 5 stars
Based on 0 reviews

Want to rate or review this project?

Please log in with your Student or Lecturer account to leave star ratings and comments.

Log In to Rate

Reviews & Feedback (0)

No reviews published yet for this project. Be the first to rate it!

Author & Student

Chhay Bot

ID: SR26541

Associate of Information Technology
View Student Portfolio

Academic Meta

Lecturer: Mr. Chhai Lihov
Subject: Internetworking
Degree: Bachelor of Science in Information Technology
Semester & Year: Year 3 (2025-2026)

Technologies Used

Cisco Packet Tracer Cisco Packet Tracer

BBU AI Assistant Gemini 2.0

Faculty of Science & Technology Advisor

BBU AI is thinking...