Below is the lab that I had to do. I was able to finish the lab and have everything ping however when I click check results in Cisco Packet Tracer it says not correct. I’m totally confused…I have racked my brain over this and cannot figure out why! It's pretty obvious where the routing loops are by the "ip route 0.0.0.0 0.0.0.0 " command in the running config. I deleted those routs out from both routers and created static routes to the respective networks. Below you can find the running config of all three routers. Is the program wrong or is there another routing loop I’m missing?
****LAB 4.4.1: Routing Loops*******
Addressing Scheme
Device Interface IP Address Subnet Mask Default Gateway
ISP Fa0/0 10.10.0.1 255.255.0.0 N/A
S0/0 192.168.1.5 255.255.255.252 N/A
S0/1 192.168.3.10 255.255.255.252 N/A
BRANCH1 Fa0/0 172.16.4.1 255.255.255.0 N/A
S0/0 192.168.1.6 255.255.255.252 N/A
S0/1 192.168.2.1 255.255.255.252 N/A
BRANCH2 Fa0/0 172.16.15.1 255.255.255.0 N/A
S0/0 192.168.2.2 255.255.255.252 N/A
S0/1 192.168.3.9 255.255.255.252 N/A
PC0 N/A 10.10.0.2 255.255.255.0 10.10.0.1
PC1 N/A 172.16.4.2 255.255.255.0 172.16.4.1
PC2 N/A 172.16.15.2 255.255.255.0 172.16.15.2
Learning Objectives:
All routers have been configured.
Identify the conditions leading to a routing loop and the implications on router performance.
Task 1: Show contents of routing tables.
Step 1: Examine BRANCH1’s configuration.
To display the configuration of the BRANCH1 router complete the following steps:
Select router BRANCH1.
Click the CLI tab.
Change to the privileged EXEC mode by typing: enable
BRANCH1>enable
Type the following command: show run
BRANCH1#show run
Press the spacebar until the router prompt returns.
Locate the static route command. It will appear as
ip route 0.0.0.0 0.0.0.0 serial 0/1
Step 2: Examine BRANCH2’s configuration.
To display the configuration of the BRANCH2 router complete the following steps:
Select router BRANCH2.
Click the CLI tab.
Change to the privileged EXEC mode by typing: enable
BRANCH2>enable
Type the following command: show run
BRANCH2#show run
Press the spacebar until the router prompt returns.
Locate the static route command. It will appear as
ip route 0.0.0.0 0.0.0.0 serial 0/0
Task 2: Verify connectivity.
Step 1: Ping from PC2 to PC0.
Use the ping command at the command prompt of PC2 to ping PC0. The ping command will be unsuccessful due to incorrect configuration of static routes.
Step 2: How should the routes be configured?
The two static routes are incorrectly configured and will cause routing loops. What are the correct commands including the commands to remove the incorrect static routes? Correct the router configurations by replacing the incorrect static routes with the correct routes.
Step 3: Ping from PC2 to PC0.
Use the ping command at the command prompt of PC2 to ping PC0 again. The ping command should now be successful due to correct configuration of static routes
At the end of this activity your completion rate should be 100%. If the completion rate is not 100%, use the Check Results button and troubleshoot as necessary.
BRANCH1 Running Config:
Building configuration...
Current configuration : 574 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname BRANCH1
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
ip address 172.16.4.1 255.255.255.0
duplex auto
speed auto
!
interface Serial0/0
ip address 192.168.1.6 255.255.255.252
!
interface Serial0/1
ip address 192.168.2.1 255.255.255.252
clock rate 56000
!
ip classless
ip route 172.16.15.0 255.255.255.0 Serial0/1
ip route 10.10.0.0 255.255.255.0 Serial0/0
!
!
!
!
!
!
!
line con 0
line vty 0 4
login
!
!
!
end
********Branch 2 Running Config:****************
Current configuration : 561 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname BRANCH2
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
ip address 172.16.15.1 255.255.255.0
duplex auto
speed auto
!
interface Serial0/0
ip address 192.168.2.2 255.255.255.252
!
interface Serial0/1
ip address 192.168.3.9 255.255.255.252
!
ip classless
ip route 172.16.4.0 255.255.255.0 192.168.2.1
ip route 10.10.0.0 255.255.255.0 192.168.3.10
!
!
!
!
!
!
!
line con 0
line vty 0 4
login
!
!
!
end
****************ISP Running Config:**************
Building configuration...
Current configuration : 683 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname ISP
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
ip address 10.10.0.1 255.255.0.0
duplex auto
speed auto
!
interface Serial0/0
ip address 192.168.1.5 255.255.255.252
clock rate 56000
!
interface Serial0/1
ip address 192.168.3.10 255.255.255.252
clock rate 56000
!
ip classless
ip route 172.16.4.0 255.255.255.0 Serial0/0
ip route 172.16.15.0 255.255.255.0 Serial0/1
ip route 192.168.2.0 255.255.255.252 Serial0/0
ip route 192.168.2.0 255.255.255.252 Serial0/1
!
!
!
!
!
!
!
line con 0
line vty 0 4
login
!
!
!
end