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.
- 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
- Network:
- Connectivity:
- All devices in Accounts can communicate with devices in Delivery
| 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 |
| 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 |
| 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 |
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