Exam 350-501 All QuestionsBrowse all questions from this exam
Question 339

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

-

Configure and verify the OSPF neighbor adjacency between R1 and R2 in OSPF area 0 according to the topology to achieve these goals:

1. Configure OSPF cost to 15 on R1 and R2.

2. Redistribute all the static routes defined in R1 and R2 to the OSPF routing protocol.

3. Set the OSPF hello interval to 5 and the OSPF dead interval to 10 between R1 and R2.

    Correct Answer:

Discussion
HARDCCNP

Qual a necessidade da rota estática na sua configuração ?

cocopost

The question asks that static routes defined in R1 be re-distributed to OSPF. However the question does not tell us which static routes are present in the lab. We only need to ensure redistribution from static to OSPF in router R1

picho707

R1 interface Loopback0 ip address 10.1.1.1 255.255.255.255 ! interface GigabitEthernet0/0 ip address 172.16.0.1 255.255.255.0 ip ospf dead-interval 10 ip ospf hello-interval 5 ip ospf cost 15 ! router ospf 10 redistribute static subnets network 10.1.1.1 0.0.0.0 area 0 network 172.16.0.0 0.0.0.255 area 0 ! ip route 10.2.2.2 255.255.255.255 172.16.0.2 R2 interface Loopback0 ip address 10.2.2.2 255.255.255.255 ! interface GigabitEthernet0/0 ip address 172.16.0.2 255.255.255.0 ip ospf dead-interval 10 ip ospf hello-interval 5 ip ospf cost 15 ! router ospf 10 redistribute static subnets network 10.2.2.2 0.0.0.0 area 0 network 172.16.0.0 0.0.0.255 area 0 ! ip route 10.1.1.1 255.255.255.255 172.16.0.1

uhljeb

Dead interval should be 10, not 15.