T1 IP Static Routing, Troubleshoot Static and Default Routes
T1 IP Static Routing, Troubleshoot Static and Default Routes
T1 IP Static Routing, Troubleshoot Static and Default Routes
Tutorial 1
1. With reference to R1’s partial output of “show ip route” command, differentiate the two static
routes:
Next-
hop static route is using next-hop IP address
- Eg. 192.168.2.0/24 [1/0] via 172.16.2.2
- It actually takes two routing table lookup processes to forward any packet to the
192.168.2.0/24 network
- When the router performs multiple lookups in the routing table before forwarding a
packet, it is performing a process known as a recursive lookup --- this process consumes
router resources because recursive lookup
Directly connected static route is using only the router exit interface
- Eg. 192.168.1.0/24 is directly connected, serial s0/0/0
- Directly connected static route allows the routing table to resolve the exit interface in a
single search, instead of two searches
- Although the routing table entry indicates “directly connected”, the administrative
distance of the static route is still 1
- This process consumes lesser router resources because single lookup
202101 1
BMIT3094 ADVANCED COMPUTER NETWORKS
2. Identify and illustrate one of the types of static route shown in R1’s running-configuration.
202101 2
BMIT3094 ADVANCED COMPUTER NETWORKS
(a) In router R1, write a command to configure a default static route using the exit
interface. Ip route 0.0.0.0 0.0.0. s0/0/0
(b) In router R1, write a command to configure a summary static route for network
172.16.2.0/24 – 172.16.5.0/24 using the next hop IP address.
Ip route 172.16.0.0 255.255.248.0 192.168.2.2
(c) In router R2, write a command to configure a standard static route for network
192.168.1.0/24 using the exit interface.
Ip route 192.168.1.0 255.255.255.0 s0/0/0
(d) In router R2, write two commands to configure fully specified static routes for network
172.16.4.0/24 and 172.16.5.0/24.
Ip route 172.16.4.0 255.255.255.0 g0/0 172.16.3.2
Ip route 172.16.5.0 255.255.255.0 g0/1 172.16.2.2
202101 3
BMIT3094 ADVANCED COMPUTER NETWORKS
6. Suggest the most appropriate routing methods to be implemented for a small network topology
shown below to forward packets from R1 to ISP and vice versa. Justify your answers.
192.168.10.0/24
209.100.10.8/30
G0/0
S0/0/1
S0/0/0
G0/1
192.168.11.0/24
Static routes is the most appropriate routing method used because it use less bandwidth than
dynamic routing protocols, no CPU cycles are used to calculate and communicate routes.
R1 is configured with default static route
- A default route is a static route that matches all packets. Rather than storing all roues to
all networks in the routing table, a router can store a single default route to represent any
network that is not in the routing table
ISP is configured summary static route.
- Reduce the number of routes advertised by summarizing several contiguous networks as
one static route
- The path a static route uses to send data is known
202101 4