SIMULATION 9
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 remove any existing configurations from the devices, only those necessary to make the appropriate changes required to fulfill the listed tasks.
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
Alpha company has decided to implement OSPF. As per the network design, it is a multi-Area OSPF configuration both for OSPFv2 and OSPFv3. The engineer has already completed the configuration on R2. The below tasks are needed to complete the implementation.
Task 1:
Configure OSPFv2 on R1 and R3 and advertise all networks.
Process ID = 1
Router ID = Loopback 0
Passive Interface = Ethernet 0/0
Task 2:
Configure OSPFv3 on R1 and R3 and advertise all networks.
Process ID = 10
Router ID = Loopback 0
Passive Interface = Ethernet 0/0
Correct Answer:
Task 1: OSPFv2 on R1 and R3
R1:
R1(config)# router ospf 1
R1(config-router)# router-id 1.1.1.1
R1(config-router)# passive-interface Ethernet0/0
R1(config-router)# network 192.168.1.0 0.0.0.255 area 5
R1(config-router)# network 10.1.0.0 0.0.0.255 area 5
R1(config-router)# network 1.1.1.1 0.0.0.0 area 5 !-Loopback0
R1(config-router)# exit
R1(config)# interface loopback0
R1(config-if)# ip address 1.1.1.1 255.255.255.255
R1(config-if)# exit
R1(config)# write memory
Defines OSPF process-1 with router-ID set to Loopback0, advertises each directly-connected IPv4 network into area-5, and suppresses hellos on the LAN-facing Ethernet0/0.
R3:
R3(config)# router ospf 1
R3(config-router)# router-id 3.3.3.3
R3(config-router)# passive-interface Ethernet0/0
R3(config-router)# network 192.168.3.0 0.0.0.255 area 10
R3(config-router)# network 10.2.0.0 0.0.0.255 area 10
R3(config-router)# network 3.3.3.3 0.0.0.0 area 10 !-Loopback0
R3(config-router)# exit
R3(config)# interface loopback0
R3(config-if)# ip address 3.3.3.3 255.255.255.255
R3(config-if)# exit
R3(config)# write memory
Same process-1 on R3, router-ID from Loopback0, all local networks into area-10, and Ethernet0/0 passive.
Task-2: OSPFv3 on R1 and R3
R1:
R1(config)# ipv6 unicast-routing
R1(config)# interface loopback0
R1(config-if)# ipv6 address 2001:DB8:1::1/128
R1(config-if)# exit
R1(config)# ipv6 router ospf 10
R1(config-rtr)# router-id 1.1.1.1
R1(config-rtr)# passive-interface Ethernet0/0
R1(config-rtr)# exit
R1(config)# interface Ethernet0/0
R1(config-if)# ipv6 ospf 10 area 5
R1(config-if)# exit
R1(config)# interface Ethernet0/1
R1(config-if)# ipv6 ospf 10 area 5
R1(config-if)# exit
R1(config)# interface loopback0
R1(config-if)# ipv6 ospf 10 area 5
R1(config-if)# exit
R1(config)# write memory
Enables IPv6 routing, assigns a /128 on Loopback0, creates OSPFv3 process-10 with router-ID from Loopback0, makes Ethernet0/0 passive, and binds each interface's IPv6 subnet into area-5.
R3:
R3(config)# ipv6 unicast-routing
R3(config)# interface loopback0
R3(config-if)# ipv6 address 2001:DB8:3::3/128
R3(config-if)# exit
R3(config)# ipv6 router ospf 10
R3(config-rtr)# router-id 3.3.3.3
R3(config-rtr)# passive-interface Ethernet0/0
R3(config-rtr)# exit
R3(config)# interface Ethernet0/0
R3(config-if)# ipv6 ospf 10 area 10
R3(config-if)# exit
R3(config)# interface Ethernet0/2
R3(config-if)# ipv6 ospf 10 area 10
R3(config-if)# exit
R3(config)# interface loopback0
R3(config-if)# ipv6 ospf 10 area 10
R3(config-if)# exit
R3(config)# write memory
Mirrors R1's OSPFv3 setup on R3 with process-10, router-ID from Loopback0, passive LAN interface, and all IPv6 subnets into area-10.