Exam 200-301 All QuestionsBrowse all questions from this exam
Question 1178

SIMULATION

-

Guidelines

-

This is a lab item in which tasks will be performed on virtual devices:

• Refer to the Tasks tab to view the tasks for this lab item.

• Refer to the Topology tab to access the device console(s) and perform the tasks

• Console access is available for all required devices by clicking the device icon or using the tab(s) above the console window

• All necessary preconfigurations have been applied

• Do not change the enable password or hostname for any device

• Save your configurations to NVRAM before moving to the next item

• Click Next at the bottom of the screen to submit this lab and move to the next question

• When Next is clicked the lab closes and cannot be reopened

Topology

-

Tasks

-

All physical cabling is in place. Routers R3 and R4 are fully configured and inaccessible. Configure static routes for various connectivity to the ISP and the LAN that resides on R4.

1. Configure a route on R1 to ensure that R1 prefers R2 when traffic is destined to the server only.

2. Configure a default route on R2 to the ISP

3. Configure a route on R1 to ensure that R1 will use R2 for the R4 LAN if the link fails between R3 and R4

4. Configure a route on R1 to ensure that R1 prefers R3 when traffic is destined to the R4 LAN at 10.0.41.0/24

    Correct Answer:

Discussion
Fervidales

I think the answer is fine, but it is assuming that those are indeed the next hop addresses and it is not specified in the diagram. To be safe, I would put the exit interface number as Next Hop. Same with the administrative distance for the floating route, 200 is fine, but it can also be any other number.

blu3wr

En la práctica deberás utilizar los comandos show para afinar las rutas.

zxan

in the live simulation you can use cdp neighbor to view r3's IP address

CertBuster

Solution: R1(config)#ip route 10.0.41.10 255.255.255.255 e0/0 R1(config)#ip route 10.0.41.0 255.255.255.0 e0/0 201 R1(config)#ip route 10.0.41.0 255.255.255.0 e0/1 R1(config)#do write memory R2(config)#ip route 0.0.0.0 0.0.0.0 209.165.200.225 R2(config)#do write memory Note: 1. 201 is a safer AD; it's greater than the default distance value for any possible DRP. 200 is the value for IBGP. 2. I specified the interfaces instead of the next-hop addresses. It's easier, and works fine for IPv4.

KT_Yu

1. Configure a route on R1 to ensure that R1 prefers R2 when traffic is destined to the server only. R1: ip route 10.0.41.10 255.255.255.0 e0/0 2. Configure a default route on R2 to the ISP R2: ip route 0.0.0.0 0.0.0.0 209.165.200.225 3. Configure a route on R1 to ensure that R1 will use R2 for the R4 LAN if the link fails between R3 and R4 R1: ip route 10.0.41.0 255.255.255.0 e0/0 2 4. Configure a route on R1 to ensure that R1 prefers R3 when traffic is destined to the R4 LAN at 10.0.41.0/24 R1: ip route 10.0.41.0 255.255.255.0 e0/1

bymrdas

R1 Task1-ip route 10.0.41.10 255.255.255.255 10.0.12.2 Task3-ip route 10.0.41.0 255.255.255.0 10.0.12.2 10 Task4-ip route 10.0.41.0 255.255.255.0 10.0.13.2 R2 Task2-ip route 0.0.0.0 0.0.0.0 209.165.200.225

picho707

Task 1 R1(config)#ip route 10.0.41.10 255.255.255.255 gigabitEthernet 0/0 Task 2 R2(config)#ip route 0.0.0.0 0.0.0.0 209.162.200.225 Task 3 R1(config)#ip route 10.0.41.0 255.255.255.0 gigabitEthernet 0/0 10 Task 4 R1(config)#ip route 10.0.41.0 255.255.255.0 gigabitEthernet 0/1