You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project demonstrates the design and implementation of a network connecting the Accounts Department and Delivery Department in Cisco Packet Tracer.
The goal is to enable full communication between both departments, including PCs and printers, using proper IP addressing, routers, and switches.
ποΈ Network Requirements
Departments:
Accounts β 2 PCs + 1 Printer
Delivery β 2 PCs + 1 Printer
Devices:
Router with 2 Gigabit interfaces
Switch for each department
Addressing:
Network: 192.168.40.0/24
Subnetted into two subnets: /25
Connectivity:
All devices in Accounts can communicate with devices in Delivery
π‘ Network Topology
Example:
βοΈ IP Addressing Table
Router Interfaces
Interface
IP Address
Subnet Mask
Gig0/0
192.168.40.1
255.255.255.128
Gig0/1
192.168.40.129
255.255.255.128
Accounts Department
Device
IP Address
Subnet Mask
Gateway
PC1
192.168.40.10
255.255.255.128
192.168.40.1
PC2
192.168.40.11
255.255.255.128
192.168.40.1
Printer
192.168.40.12
255.255.255.128
192.168.40.1
Delivery Department
Device
IP Address
Subnet Mask
Gateway
PC1
192.168.40.130
255.255.255.128
192.168.40.129
PC2
192.168.40.131
255.255.255.128
192.168.40.129
Printer
192.168.40.132
255.255.255.128
192.168.40.129
π Device Configuration Steps
Router
Router>enable
Router# configure terminal
Router(config)# interface gig0/0
Router(config-if)# ip address 192.168.40.1 255.255.255.128
Router(config-if)# no shutdown
Router(config-if)# exit
Router(config)# interface gig0/1
Router(config-if)# ip address 192.168.40.129 255.255.255.128
Router(config-if)# no shutdown
Router(config-if)# exit
Router(config)# do write
About
Cisco Packet Tracer project demonstrating network setup for Accounts and Delivery departments with proper IP addressing, routers, and switches.