0% found this document useful (0 votes)
3 views

Static Routing

Static routing is a manually configured method for forwarding packets between networks, suitable for small and stable environments. It offers advantages such as low overhead, predictable behavior, and enhanced security, but requires administrative effort for configuration. Static routes do not adapt to network changes, unlike dynamic routing, which automatically adjusts to network conditions.

Uploaded by

carlbenedictnj7
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

Static Routing

Static routing is a manually configured method for forwarding packets between networks, suitable for small and stable environments. It offers advantages such as low overhead, predictable behavior, and enhanced security, but requires administrative effort for configuration. Static routes do not adapt to network changes, unlike dynamic routing, which automatically adjusts to network conditions.

Uploaded by

carlbenedictnj7
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 11

Understanding

Static Routing
A Fundamental Concept in Computer Networking

Godfrey M. Raut
What is Routing?
• 🔹 The process of forwarding packets from one network to another.

What is Static Routing?


• 🔹 A manually configured route that does not change unless modified
by an administrator.
Dynamic vs. Static Routing
Feature Static Routing Dynamic Routing
Configuration Manually configured Learned automatically
Suitable for small
Scalability Best for large networks
networks
Low CPU/memory
Overhead Higher resource usage
usage
Cannot adapt to Adapts to network
Adaptability
changes changes
How Static Routing Works
Administrator manually enters routes in the router’s routing table.
•The router forwards packets based on these predefined routes.
•Example:
•ip route 192.168.2.0 255.255.255.0 10.10.10.2
Advantages of Static Routing

• Simple and easy to configure.


• No additional CPU or memory overhead.
• Provides predictable network behavior.
• More secure since routes are manually set.
Configuring Static Routes

• Router(config)# ip route <destination_network> <subnet_mask> <next_hop_ip>

• Router(config)# ip route 192.168.2.0 255.255.255.0 10.10.10.2


Practical Scenario
Scenario:
• Network A (192.168.1.0/24) and Network B (192.168.2.0/24) are connected via a
router.
• Router needs a static route to send traffic from A to B.

Diagram
Router_A Config
• Router_A(config)# ip route 192.168.2.0 255.255.255.0 10.10.10.2
Router_B Config
• Router_B(config)# ip route 192.168.1.0 255.255.255.0 10.10.10.1
Verifying Static Routes
• Router# show ip route
• Router# show running-config

Expected Output: Static routes listed with an "S" in the routing table.
Summary
Static routing is manually configured and does not change dynamically.

It is best for small, stable networks.

Requires administrative effort but provides security and control.

You might also like