Skip to content

Repository files navigation

CCNA Static Routing Configuration

Cisco Routing CCNA

Overview

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.


Objectives

  • Design a network topology
  • Configure router interfaces
  • Configure IPv4 addressing
  • Configure Serial WAN connection
  • Implement Static Routing
  • Verify connectivity using Ping

Network Topology

image

Devices Used

Device Quantity
Cisco Router 2
Cisco Switch 2
PCs 2
Laptops 2
Serial Connection 1

IP Addressing Plan

LAN 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

LAN 2

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

WAN

Device Interface IP Address
Router R0 Fa0/1 10.0.0.1/30
Router R1 Fa0/0 10.0.0.2/30

Configuration Steps

1. Build the Network

  • Add routers
  • Add switches
  • Add PCs
  • Add Laptops
  • Connect all devices

2. Configure Interfaces

Assign IPv4 addresses and enable interfaces.

interface g0/0
ip address ...
no shutdown

3. Configure Serial Interface

interface s0/0/0
ip address ...
clock rate 64000
no shutdown

4. Configure Static Routing

Router R0

ip route 192.168.2.0 255.255.255.0 10.0.0.2

Router R1

ip route 192.168.1.0 255.255.255.0 10.0.0.1

Verification

Connectivity was verified successfully using:

  • PC0 → PC1
image
  • Laptop0 → Laptop1
image

Skills Demonstrated

  • Cisco Packet Tracer
  • Static Routing
  • IPv4 Addressing
  • WAN Configuration
  • Router Configuration
  • Troubleshooting

Repository Structure

CCNA-Static-Routing
│
├── LICENSE
├── README.md
├── Static Routing Configuration in Cisco Packet Tracer.pdf
└── Static-Routing.pkt


Author

Farhan Ali

BS Computer Science

University of Central Punjab (UCP)


⭐ If you found this project useful, feel free to star the repository.

About

A Cisco Packet Tracer project demonstrating Static Routing between two LANs using Cisco routers. Covers IPv4 addressing, router configuration, WAN connectivity, static route implementation, and end-to-end communication verification as part of my CCNA portfolio.

Topics

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors