An engineer is troubleshooting OSPFv2 neighbor establishment between Router-Edge1 and Router-Edge2 over their directly connected GigabitEthernet0/0/1 link. The running configurations for both routers are provided below:
text
[Router-Edge1]
interface Loopback0
ip address 10.255.255.1 255.255.255.255
shutdown
!
interface Loopback1
ip address 172.16.10.1 255.255.255.255
!
interface GigabitEthernet0/0/1
ip address 192.168.12.1 255.255.255.252
ip mtu 1500
ip ospf hello-interval 10
ip ospf dead-interval 40
ip ospf 1 area 0
!
router ospf 1
router-id 1.1.1.1
[Router-Edge2]
interface Loopback0
ip address 10.255.255.2 255.255.255.255
!
interface GigabitEthernet0/0/1
ip address 192.168.12.2 255.255.255.252
ip mtu 1400
ip ospf hello-interval 10
ip ospf dead-interval 30
ip ospf 1 area 0
!
router ospf 1
Based on these configurations, which TWO statements accurately describe the OSPFv2 neighbor behavior and Router ID operation between these routers? (Select TWO.)
- The routers will fail to establish an initial 2-WAY neighbor relationship because the configured OSPF Dead intervals on GigabitEthernet0/0/1 do not match.Answer
- If the Dead interval mismatch is corrected, the routers will become stuck in the EXSTART/EXCHANGE state due to the IP MTU mismatch on the GigabitEthernet0/0/1 interfaces.Answer
- CRouter-Edge1 dynamically elects 172.16.10.1 as its Router ID because Loopback0 is administrative shut down.
- DRouter-Edge2 elects 192.168.12.2 as its Router ID because active physical interface IP addresses override loopback interface IP addresses during election.