すべての物理的なケーブル配線が適切に配置されています。ルーター R4 と PCI は完全に構成されており、アクセスできません。 R4 の WAN インターフェイスは、各サブネットの最後のオクテットに .4 を使用します。
構成では、接続がエンドツーエンドで確立されるようにする必要があります。
1.スタティック ルーティングを構成して、RI が R4 の LAN 上の PCI のみに到達するために R2 を経由するパスを優先するようにします。
2. プライマリ パスに沿って障害が発生した場合に、RI から送信されたトラフィックが R3 を経由して PCI への代替パスを通過するようにする静的ルーティングを構成します。
3. 最小数のホップを使用して、RI および R3 上でインターネットへのデフォルト ルートを設定します。 ガイドライン これは、仮想デバイス上でタスクが実行されるラボ項目です。
* このラボ項目のタスクを表示するには、「タスク」タブを参照してください。
* デバイス コンソールにアクセスしてタスクを実行するには、[トポロジ] タブを参照してください。
* デバイス アイコンをクリックするか、コンソール ウィンドウ上のタブを使用すると、必要なすべてのデバイスでコンソールにアクセスできます。
* 必要な事前構成はすべて適用されています。
* デバイスのイネーブル パスワードまたはホスト名は変更しないでください。
* 次の項目に進む前に、設定を NVRAM に保存してください。
* 画面の下部にある [次へ] をクリックしてこのラボを送信し、次の質問に進みます。
※「次へ」をクリックするとラボが閉じられ、再度開くことはできません。

正解:
See the solution below in Explanation
Explanation:
To configure static routing on R1 to ensure that it prefers the path through R2 to reach only PC1 on R4's LAN, you need to create a static route for the host 10.0.0.100/8 with a next-hop address of 20.0.0.2, which is the IP address of R2's interface connected to R1. You also need to assign a lower administrative distance (AD) to this route than the default AD of 1 for static routes, so that it has a higher preference over other possible routes. For example, you can use an AD of 10 for this route. To create this static route, you need to enter the following commands on R1's console:
R1#configure terminal R1(config)#ip route 10.0.0.100 255.0.0.0 20.0.0.2 10 R1(config)#end To configure static routing on R1 that ensures that traffic sourced from R1 will take an alternate path through R3 to PC1 in the event of an outage along the primary path, you need to create another static route for the host 10.0.0.100/8 with a next-hop address of 40.0.0.2, which is the IP address of R3's interface connected to R1. You also need to assign a higher AD to this route than the AD of the primary route, so that it has a lower preference and acts as a backup route. For example, you can use an AD of 20 for this route. This type of static route is also known as a floating static route. To create this static route, you need to enter the following commands on R1's console:
R1#configure terminal R1(config)#ip route 10.0.0.100 255.0.0.0 40.0.0.2 20 R1(config)#end To configure default routes on R1 and R3 to the Internet using the least number of hops, you need to create a static route for the network 0.0.0.0/0 with a next-hop address of the ISP's interface connected to each router respectively. A default route is a special type of static route that matches any destination address and is used when no other specific route is available. The ISP's interface connected to R1 has an IP address of 10.0.0.4, and the ISP's interface connected to R3 has an IP address of 50.0.0.4. To create these default routes, you need to enter the following commands on each router's console:
On R1: R1#configure terminal R1(config)#ip route 0.0.0.0 0.0.0.0 10.0.0.4 R1(config)#end On R3: R3#configure terminal R3(config)#ip route 0.0.0.0 0.0.0.0 50.0.0.4 R3(config)#end