Definition – Static Routing
Static routing is a type of network routing technique where routes are manually configured and entered the routing table by a network administrator. Unlike dynamic routing, static routes do not change unless they are manually modified or removed. This method provides a simple, stable, and predictable routing option but lacks the automatic route adjustment capabilities that dynamic routing protocols offer.
How Static Routing Works
In static routing, a network administrator manually enters routes into the router’s routing table. These routes specify the network destination and the next hop or exit interface to use when sending packets to that destination. Static routing does not involve any type of advertisement or exchange of routing information between routers, which can save on bandwidth and processing resources.
Advantages and Disadvantages
Advantages:
- Simplicity: Easy to implement in small networks.
- Control: Offers complete control over routing.
- Resource Efficiency: Uses less bandwidth and CPU resources since there are no routing updates.
Disadvantages:
- Scalability: Not suitable for large networks with frequently changing network topologies.
- Maintenance: Requires manual updates and can become complex in larger networks.
- Lack of Redundancy: Does not automatically reroute traffic if a link fails unless alternate static routes are manually configured.
Example Scenario and Diagram
Consider a small network where:
- Router A connects the local network to the internet.
- Router B connects to a department within the organization.
- Router C is an alternative path to the internet.
Network Diagram

Static Routing Configuration
In this scenario, let’s configure static routes for Router A:
- Route to the Department Network (192.168.2.0/24):
- Traffic from the local network (192.168.1.0/24) destined for the department network (192.168.2.0/24) should go through Router B.
- Command on Router A:
ip route 192.168.2.0 255.255.255.0 192.168.1.2
Default Route to the Internet:
- All other traffic should be directed to Router C, which connects to the Internet.
- Command on Router A:
ip route 0.0.0.0 0.0.0.0 192.168.3.3
Here, 192.168.1.2 is the interface of Router B connected to Router A, and 192.168.3.3 is the interface of Router C connected to Router A.
Conclusion
This setup directs traffic from the local network to specific destinations based on manually configured static routes. Router A knows exactly where to send traffic based on these routes, ensuring predictable and straightforward routing decisions. However, if any of the specified links go down, manual intervention is required to reroute traffic unless backup static routes are also configured. Static routing is best used in smaller or more stable environments where network topology does not frequently change.
Useful Links
https://sanchitgurukul.com/tutorials-cat
