Include the saved output of the routing table from Steps 1 and 2. Explain the fields of the routing table entries of the Cisco router. Explain how the routing table has changed from Step 1 to Step 3.

What will be an ideal response?


Routing table of Router1 before static entry was added:
```
router1#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route
Gateway of last resort is not set
10.0.0.0/24 is subnetted, 2 subnets
C 10.0.2.0 is directly connected, FastEthernet0/0
C 10.0.3.0 is directly connected, FastEthernet0/1
```
The above shows the routing table of the router1 before a static route to the network 10.0.1.0/24 is added. We can see there are two routes, one route to “10.0.2.0” and the other route to “10.0.3.0”. These two routes are both directly routes (denoted by the “C” at the beginning of the route entries) and are connected by the interfaces Ethernet0 and Ethernet1 respectively. Since the default gateway for this router is not set therefore, it says “Gateway of last resort is not set“
Routing Table of Router1:
```
router1#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route
Gateway of last resort is not set
10.0.0.0/24 is subnetted, 3 subnets
C 10.0.2.0 is directly connected, FastEthernet0/0
C 10.0.3.0 is directly connected, FastEthernet0/1
S 10.0.1.0 [1/0] via 10.0.2.22
```

Computer Science & Information Technology

You might also like to view...

The ________ statement directs the code to jump to the exit routine

Fill in the blank(s) with correct word

Computer Science & Information Technology

Match the disaster on the left with the scenario on the right

1. technological disaster a. DoS attack 2. human-caused disaster b. flood 3. natural disaster c. RAID controller failure

Computer Science & Information Technology

You select a database or change to a different database with the ____ function.

A. mysql_select_database() B. mysql_change_database() C. mysql_select_db() D. mysql_change_db()

Computer Science & Information Technology

Critical Thinking Questions Case 9-2 ? PrattLast Associates has two different groups of users. One user group wants to be able to tailor forms and reports to their individual needs. The other user group should be able to use the database but should not be able to make changes to the design of forms or reports. What should management do to prevent users from making changes to the design of forms or reports?  a. Management should create a locked database (ACCDE file). b. Management should create a hidden file. c. Management should create a .pdf. c. Management should create an Excel workbook.

What will be an ideal response?

Computer Science & Information Technology