Static IP Routing
Static IP Routing
STATIC IP ROUTING
I. INTRODUCTION
The primary role of a router is to forward packets from the source device to the destination
device. There can be several routers in the packet exchange network. The router utilizes a database
known as the routing table to forward these packets. Static routing is a form of network routing
strategy. Static routing is not a routing protocol; instead, it is the manual configuration and
selection of a network route, typically managed by the network administrator. It is utilized in
situations where the network parameters and environment are expected to remain constant. Static
routing is only optimal in a few situations. Network degradation, latency and congestion are
inevitable consequences of the non-flexible nature of static routing because there is no adjustment
when the primary route is unavailable.
Static routing performs routing decisions with preconfigured routes in the routing table,
which can be changed manually only by administrators. Static routes are normally implemented
in those situations where the choices in route selection are limited, or there is only a single default
route available. Also, static routing can be used if you have only few devices for route
configuration and there is no need for route change in the future. Static routing is considered the
simplest form of routing.
1
DATA COMMUNICATIONS LABORATORY
2
DATA COMMUNICATIONS LABORATORY
IV. IP CONFIGURATION
Figure 2: IP configuration of PC 0
Figure 3: IP configuration of PC 1
Figure 4: IP configuration of PC 2
3
DATA COMMUNICATIONS LABORATORY
V. COMMANDS
ROUTER 1
Router#configure terminal
Router(config)#hostname R1
R1(config)#int fa 0/0
R1(config-if)#no shut
R1(config-if)#int se 0/0/0
R1(config-if)#no shut
R1(config-if)#exit
R1(config)#exit
R1#show ip route
4
DATA COMMUNICATIONS LABORATORY
ROUTER 2
Router#configure terminal
Router(config)#hostname R2
R2(config)#int fa 0/0
R2(config-if)#no shut
R2(config-if)#int se 0/0/0
R2(config-if)#no shut
R2(config-if)#exit
R2(config)#exit
R2#show ip route
5
DATA COMMUNICATIONS LABORATORY
ROUTER 3
Router#configure terminal
Router(config)#hostname R3
R3(config)#int fa 0/0
R3(config-if)#no shut
R3(config-if)#int se 0/0/1
R3(config-if)#no shut
R3(config)#exit
R3(config)#exit
R3#show ip route
6
DATA COMMUNICATIONS LABORATORY
VI. CONCLUSION
For this laboratory activity, we were able to transfer packets from a router to a remote
destination or network with the use of the CISCO packet tracer software. We have also
configured static routes by utilizing the routing table method. This enabled us to gather the IP
addresses needed for the routing process. A default static route is a route that will match all
packets. Therefore, we generalize that in static IP routing, routes are configured and then
manually routed to create connection with each other devices.