This project demonstrates the implementation of Static Routing using Cisco Packet Tracer.
The network consists of two LANs connected through two Cisco routers over a serial WAN link. Static routes are configured manually to enable communication between devices located in different networks.
- Design a network topology
- Configure router interfaces
- Configure IPv4 addressing
- Configure Serial WAN connection
- Implement Static Routing
- Verify connectivity using Ping
| Device | Quantity |
|---|---|
| Cisco Router | 2 |
| Cisco Switch | 2 |
| PCs | 2 |
| Laptops | 2 |
| Serial Connection | 1 |
| Device | Interface | IP Address |
|---|---|---|
| Router R0 | Fa0/0 | 192.168.1.1/24 |
| PC0 | NIC | 192.168.1.2 |
| Laptop0 | NIC | 192.168.1.3 |
| Device | Interface | IP Address |
|---|---|---|
| Router R1 | Fa0/1 | 192.168.2.1/24 |
| PC1 | NIC | 192.168.2.2 |
| Laptop1 | NIC | 192.168.2.3 |
| Device | Interface | IP Address |
|---|---|---|
| Router R0 | Fa0/1 | 10.0.0.1/30 |
| Router R1 | Fa0/0 | 10.0.0.2/30 |
- Add routers
- Add switches
- Add PCs
- Add Laptops
- Connect all devices
Assign IPv4 addresses and enable interfaces.
interface g0/0
ip address ...
no shutdown
interface s0/0/0
ip address ...
clock rate 64000
no shutdown
ip route 192.168.2.0 255.255.255.0 10.0.0.2
ip route 192.168.1.0 255.255.255.0 10.0.0.1
Connectivity was verified successfully using:
- PC0 → PC1
- Laptop0 → Laptop1
- Cisco Packet Tracer
- Static Routing
- IPv4 Addressing
- WAN Configuration
- Router Configuration
- Troubleshooting
CCNA-Static-Routing
│
├── LICENSE
├── README.md
├── Static Routing Configuration in Cisco Packet Tracer.pdf
└── Static-Routing.pkt
Farhan Ali
BS Computer Science
University of Central Punjab (UCP)
⭐ If you found this project useful, feel free to star the repository.