Enterprise Network Design with VLAN and IP Phones

No Comments

Photo of author

By Mohsin Khurshid

Final Project – Enterprise Network Design Assignment

ABC is a fast-growing company with many branches and customers. As a network administrator you have been asked to configure the ABC company network. All devices in all the departments are required to communicate with each other and with the Internet. The company has 3 departments: you need VLANs for data and VLANs for voice)

  • HR & Finance (28 users) • Sales & Marketing (50 users)
  • Development and IT Support (60 users) including the Server Room (DHCP, DNS, Web, Mail and an Internet Server that is connected to the cloud and has a public IP address such as 209.165.200.246/29_You can use any Public IP address) _ (VLAN #)

Solution Using Cisco Packet Tracer:

Basic Switch Configuration

Each departmental switch (HR, IT, Sales) is configured with:
– Hostname (e.g., Switch-HR)
– VLANs for segmentation
– Access ports assigned to user VLANs
– Trunk ports connected to routers or other switches

Example:
Switch> enable
Switch# configure terminal
Switch(config)# hostname Switch-HR
Switch-HR(config)# vlan 10
Switch-HR(config-vlan)# name HR
Switch-HR(config)# interface range fa0/1 – 10
Switch-HR(config-if-range)# switchport mode access
Switch-HR(config-if-range)# switchport access vlan 10
Switch-HR(config)# interface g0/1
Switch-HR(config-if)# switchport mode trunk

Basic Switch Configuration Finance Dept

HR

Basic Switch Configuration HR Dept

IT

Basic Switch Configuration IT Dept

Sales

Basic Switch Configuration Sales Dept

Basic Router Configuration (e.g., FIN-Router)

Set hostname
Configure interface IPs
Enable interfaces

Example:
Router> enable
Router# configure terminal
Router(config)# hostname FIN-Router
Router(config)# interface g0/0
Router(config-if)# ip address 192.168.100.1 255.255.255.224
Router(config-if)# no shutdown

Fin Router

Basic Router Configuration Finance Dept

HR Router

Basic Router Configuration HR Dept

IT Router

Basic Router Configuration IT Dept

Sales Router

Basic Router Configuration Sales Dept

SSH Configuration on Routers

Enable SSH for secure remote access

Example:
Router(config)# ip domain-name company.local
Router(config)# crypto key generate rsa
Router(config)# username admin password cisco123
Router(config)# line vty 0 4
Router(config-line)# login local
Router(config-line)# transport input ssh

Sales

SSH Configuration on Sales Dept Router

Finance

SSH Configuration on Finance Dept Router

HR

SSH Configuration on HR Dept Router
SSH Configuration on HR Dept Router 2

IT

SSH Configuration on IT Dept Router
SSH Configuration on IT Dept Router 2

VLAN and IP Addressing

Base Network: 192.168.100.0/24

DepartmentSubnet AddressHost RangeBroadcast Address
Finance192.168.100.0/27192.168.100.1 – 30192.168.100.31
HR192.168.100.32/27192.168.100.33 – 62192.168.100.63
Sales192.168.100.64/27192.168.100.65 – 94192.168.100.95
IT192.168.100.96/27192.168.100.97 – 126192.168.100.127
ServerSide192.168.100.128/29192.168.100.129 – 134192.168.100.135

IP Phones (Voice Network)

Base Network: 172.16.100.0/24

DepartmentSubnet AddressHost RangeBroadcast Address
Finance172.16.100.0/27172.16.100.1 – 30172.16.100.31
HR172.16.100.32/27172.16.100.33 – 62172.16.100.63
Sales172.16.100.64/27172.16.100.65 – 94172.16.100.95
IT172.16.100.96/27172.16.100.97 – 126172.16.100.127

Point-to-Point Router Links

Using /30 subnets for router interconnections:

LinkNetwork Address
Finance to HR10.10.10.0/30
Finance to IT10.10.10.4/30
Sales to HR10.10.10.8/30
Sales to IT10.10.10.12/30

DHCP Configuration

  • DHCP pools for data and voice VLANs

Example (HR Data):

ip dhcp pool HR

 network 192.168.100.32 255.255.255.224

 default-router 192.168.100.33

 dns-server 8.8.8.8

Voice DHCP:

ip dhcp pool Voice-HR

 network 172.16.100.32 255.255.255.224

 default-router 172.16.100.33

 option 150 ip 192.168.100.129

Inter-VLAN Routing + DHCP Relay

Router-on-a-stick configuration:

interface g0/0.10

 encapsulation dot1Q 10

 ip address 192.168.100.1 255.255.255.224

 ip helper-address 192.168.100.129

Vlan configuration

Finance

Vlan Configuration Finance Dept
Vlan Configuration Finance Dept 2

HR

Vlan Configuration HR Dept

IT

Vlan Configuration IT Dept

Sales

Vlan Configuration Sales Dept

SVR

Vlan Configuration SVR

AS all the VLANs assignment plus all access and trunk ports on the switches has been done. Now let’s start assignment of Subnetting and IP addressing.

• Configure static IPs for servers and use DHCP for all other hosts

Finance

Static IPs for Finance Dept Router

HR

Static IPs for HR Dept Router

Sales

Static IPs for Sales Dept Router

IT

Static IPs for IT Dept Router

• Static Server IP Addressing

Static Server IP Addressing
Static Server IP Addressing 2

Configure DHCP pools

Finance Router

Configure DHCP pools FIN Router

HR Router

Configure DHCP pools HR Router

Sales Router

Configure DHCP pools Sales Router

IT Router

Configure DHCP pools IT Router

Inter-VLAN routing on routers plus DHCP helper address

Finance Router

Inter-VLAN routing on Finance Dept Router

HR Router

Inter-VLAN routing on HR Dept Router

Sales Router

Inter-VLAN routing on Sales Dept Router

SVR

Inter-VLAN routing on SVR Router

IT Router

Inter-VLAN routing on IT Dept Router

Routing: RIP v2

All routers use RIP version 2:

router rip

 version 2

 no auto-summary

 network 192.168.100.0

 network 10.10.10.0  network 172.16.100.0

Routing RIP v2 on all routers

IP Phone

IP Phone All Dept Routers

NAT (Network Address Translation)

  • Purpose: Allows internal private IP addresses to access the public internet by translating them into a single public IP address.
  • Usage Scenario: Server or PCs in the private network need internet access.

Configuration Example:

access-list 1 permit 192.168.100.0 0.0.0.255

ip nat inside source list 1 interface g0/1 overload

interface g0/0

 ip nat inside

interface g0/1  ip nat outside

  • Explanation:
    • The access-list defines the range of internal addresses to be translated.
    • The overload keyword allows many devices to share one public IP.
    • ip nat inside and ip nat outside are set on internal and external interfaces respectively.
NAT (Network Address Translation)

This report summarizes the full configuration setup for switches, routers, VLANs, DHCP, NAT, IP addressing, and routing protocols for a structured departmental network.

Leave a Comment