ccna training » ospf neighbor sim

Upload: saw-yan-paing

Post on 09-Oct-2015

303 views

Category:

Documents


10 download

DESCRIPTION

OSPF

TRANSCRIPT

  • Home > OSPF Neighbor Sim

    October 6th, 2014 Go to comments

    Question

    Refer to the topology. Your company has decided to connect the main office with three otherremote branch offices using point-to-point serial links. You are required to troubleshoot and resolveOSPF neighbor adjacency issues between the main office and the routers located in the remotebranch offices.

    Instead of posting the output of show run commands we post here the commands entered oneach router to reduce some useless lines. Also you can try solving questions by yourself beforereading the answers.

    R1interface Loopback0

    R2!interface Loopback0

    R3username R6 passwordCISCO36

    CCNA Training OSPF Neighbor Sim http://www.9tut.com/ospf-neighbor-sim#more-2243

    1 of 13 11/27/2014 3:54 PM

  • description ***Loopback*** ip address 192.168.1.1255.255.255.255 ip ospf 1 area 0!interface Ethernet0/0 description **Connected toR1-LAN** ip address 10.10.110.1255.255.255.0 ip ospf 1 area 0!interface Ethernet0/1 description **Connected toL2SW** ip address 10.10.230.1255.255.255.0 ip ospf hello-interval 25 ip ospf 1 area 0!router ospf 1 log-adjacency-changes

    description **Loopback** ip address 192.168.2.2255.255.255.255 ip ospf 2 area 0!interface Ethernet0/0 description **Connected toR2-LAN** ip address 10.10.120.1255.255.255.0 ip ospf 2 area 0!interface Ethernet0/1 description **Connected toL2SW** ip address 10.10.230.2255.255.255.0 ip ospf 2 area 0!router ospf 2 log-adjacency-changes

    !interface Loopback0 description **Loopback** ip address 192.168.3.3255.255.255.255 ip ospf 3 area 0!interface Ethernet0/0 description **Connected toL2SW** ip address 10.10.230.3255.255.255.0 ip ospf 3 area 0!interface Serial1/0 description **Connected toR4-Branch1 office** ip address 10.10.240.1255.255.255.252 encapsulation ppp ip ospf 3 area 0!interface Serial1/1 description **Connected toR5-Branch2 office** ip address 10.10.240.5255.255.255.252 encapsulation ppp ip ospf hello-interval 50 ip ospf 3 area 0!interface Serial1/2 description **Connected toR6-Branch3 office**

    CCNA Training OSPF Neighbor Sim http://www.9tut.com/ospf-neighbor-sim#more-2243

    2 of 13 11/27/2014 3:54 PM

  • ip address 10.10.240.9255.255.255.252 encapsulation ppp ip ospf 3 area 0 ppp authentication chap!router ospf 3 router-id 192.168.3.3!

    R4!interface Loopback0 description **Loopback** ip address 192.168.4.4255.255.255.255 ip ospf 4 area 2!interface Ethernet0/0 ip address 172.16.113.1255.255.255.0 ip ospf 4 area 2!interface Serial1/0 description **Connected toR3-Main Branch office** ip address 10.10.240.2255.255.255.252 encapsulation ppp ip ospf 4 area 2!router ospf 4 log-adjacency-changes

    R5!interface Loopback0 description **Loopback** ip address 192.168.5.5255.255.255.255 ip ospf 5 area 0!interface Ethernet0/0 ip address 172.16.114.1255.255.255.0 ip ospf 5 area 0!interface Serial1/0 description **Connected toR3-Main Branch office** ip address 10.10.240.6255.255.255.252 encapsulation ppp ip ospf 5 area 0!router ospf 5 log-adjacency-changes

    R6username R3 passwordCISCO36!interface Loopback0 description **Loopback** ip address 192.168.6.6255.255.255.255 ip ospf 6 area 0!interface Ethernet0/0 ip address 172.16.115.1255.255.255.0 ip ospf 6 area 0!interface Serial1/0 description **Connected toR3-Main Branch office** ip address 10.10.240.10255.255.255.252 encapsulation ppp ip ospf 6 area 0 ppp authentication chap!router ospf 6

    CCNA Training OSPF Neighbor Sim http://www.9tut.com/ospf-neighbor-sim#more-2243

    3 of 13 11/27/2014 3:54 PM

  • router-id 192.168.3.3!

    Question 1

    An OSPF neighbor adjacency is not formed between R3 in the main office and R4 in the Branch1office. What is causing the problem?

    A. There is an area ID mismatch.B. There is a Layer 2 issue; an encapsulation mismatch on serial links.C. There is an OSPF hello and dead interval mismatch.D. The R3 router ID is configured on R4.

    Answer: A

    Explanation

    We learned it is a OSPF problem so we should check the interfaces between them first. On both R3and R4 use show running-config command to check their S1/0 interfaces

    !interface Serial1/0 description **Connected to R4-Branch1 office** ip address 10.10.240.1 255.255.255.252 encapsulation ppp ip ospf 3 area 0!

    R4

    !interface Serial1/0 description **Connected to R3-Main Branch office**

    CCNA Training OSPF Neighbor Sim http://www.9tut.com/ospf-neighbor-sim#more-2243

    4 of 13 11/27/2014 3:54 PM

  • ip address 10.10.240.2 255.255.255.252 encapsulation ppp ip ospf 4 area 2!

    In the output above we see their Area IDs are mismatched; interface S1/0 of R3 is in area 0 (R3: ) while interface s1/0 of R4 is in area 2 (R4: ).

    Question 2

    An OSPF neighbor adjacency is not formed between R3 in the main office and R5 in the Branch2office. What is causing the problem?

    A. There is an area ID mismatch.B. There is a PPP authentication issue; a password mismatch.C. There is an OSPF hello and dead interval mismatch.D. There is a missing network command in the OSPF process on R5.

    Answer: C

    Explanation

    Continue checking their connected interfaces with the show running-config command:

    !interface Serial1/1 description **Connected to R5-Branch2 office** ip address 10.10.240.5 255.255.255.252 encapsulation ppp ip ospf hello-interval 50 ip ospf 3 area 0!

    CCNA Training OSPF Neighbor Sim http://www.9tut.com/ospf-neighbor-sim#more-2243

    5 of 13 11/27/2014 3:54 PM

  • !interface Serial1/0 description **Connected to R3-Main Branch office** ip address 10.10.240.6 255.255.255.252 encapsulation ppp ip ospf 5 area 0!

    The only difference we can see here is the line ip ospf hello-interval 50 on R3. This commandsets the number of seconds R3 waits before sending the next hello packet out this interface. In thiscase after configuring this command, R3 will send hello packets to R5 every 50 seconds. But thedefault value of hello-interval is 10 seconds and R5 is using it. Therefore we can think of a hellointerval mismatch problem here. You can verify with the show ip ospf interface command on each router.

    Serial1/1 is up, line protocol is up Internet Address 10.10.240.5/30, Area 0 Process ID 3, Router ID 192.168.3.3, Network Type POINT_TO_POINT, Cost: 64 Enabled by interface config, including secondary ip addresses Transmit Delay is 1 sec, State POINT_TO_POINT, Timer intervals configured, Hello 50, Dead 200, Wait 200, Retransmit 5 oob-resync timeout 200 Hello due in 00:00:28 Supports Link-local Signaling (LLS) Index 2/2, flood queue length 0 Next 00(0)/00(0) Last flood scan length is 0, maximum is 0 Last flood scan time is 0 msec, maximum is 0 msec Neighbor Count is 0, Adjacent neighbor count is 0 Suppress hello for 0 neighbor(s)

    CCNA Training OSPF Neighbor Sim http://www.9tut.com/ospf-neighbor-sim#more-2243

    6 of 13 11/27/2014 3:54 PM

  • Serial1/0 is up, line protocol is up Internet Address 10.10.240.6/30, Area 0 Process ID 5, Router ID 10.10.240.6, Network Type POINT_TO_POINT, Cost: 64 Enabled by interface config, including secondary ip addresses Transmit Delay is 1 sec, State POINT_TO_POINT, Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5 oob-resync timeout 40 Hello due in 00:00:04 Supports Link-local Signaling (LLS) Index 1/1, flood queue length 0 Next 00(0)/00(0) Last flood scan length is 0, maximum is 0 Last flood scan time is 0 msec, maximum is 0 msec Neighbor Count is 0, Adjacent neighbor count is 0 Suppress hello for 0 neighbor(s)

    So we can see both hello and dead interval are mismatched because the dead interval always fourtimes the value of hello interval, unless you manually configure the dead interval (with the

    command).

    Question 3

    R1 does not form an OSPF neighbor adjacency with R2. Which option would fix the issue?

    A. R1 ethernet0/1 is shutdown. Configure no shutdown command.B. R1 ethernet0/1 configured with a non-default OSPF hello interval of 25; configure no ip ospfhello-interval 25C. R2 ethernet0/1 and R3 ethernet0/0 are configured with a non-default OSPF hello interval of 25;configure no ip ospf hello-interval 25D. Enable OSPF for R1 ethernet0/1; configure ip ospf 1 area 0 command under ethernet0/1

    Answer: B

    Explanation

    Continue checking their connected interfaces with the show running-config command:

    CCNA Training OSPF Neighbor Sim http://www.9tut.com/ospf-neighbor-sim#more-2243

    7 of 13 11/27/2014 3:54 PM

  • !interface Ethernet0/1 description **Connected to L2SW** ip address 10.10.230.1 255.255.255.0 ip ospf hello-interval 25 ip ospf 1 area 0!

    !interface Ethernet0/1 description **Connected to L2SW** ip address 10.10.230.2 255.255.255.0 ip ospf 2 area 0!

    We see the hello interval on R1 is not the same as R2 (and you can verify with the show ip ospfinterface command) -> There is a hello and dead interval mismatch problem. Weshould configure no ip ospf hello-interval 25 on R1.

    Note: Maybe there are some versions of this question in the exam. For example there are somereports saying that Ethernet0/1 on R1 is shutdown (and this is the correct choice in the exam). Soplease be careful checking the config on the routers before choosing the correct answers.

    Question 4

    An OSPF neighbor adjacency is not formed between R3 in the main office and R6 in the Branch3office. What is causing the problem?

    A. There is an area ID mismatch.B. There is a PPP authentication issue; the username is not configured on R3 and R6.C. There is an OSPF hello and dead interval mismatch.

    CCNA Training OSPF Neighbor Sim http://www.9tut.com/ospf-neighbor-sim#more-2243

    8 of 13 11/27/2014 3:54 PM

  • D. The R3 router ID is configured on R6.

    Answer: D

    Explanation

    username R6 password CISCO36!interface Serial1/2 description **Connected to R6-Branch3 office** ip address 10.10.240.9 255.255.255.252 encapsulation ppp ip ospf 3 area 0 ppp authentication chap!

    !router ospf 3 router-id 192.168.3.3!

    username R3 password CISCO36!interface Serial1/0 description **Connected to R3-Main Branch office** ip address 10.10.240.10 255.255.255.252 encapsulation ppp ip ospf 6 area 0 ppp authentication chap!

    CCNA Training OSPF Neighbor Sim http://www.9tut.com/ospf-neighbor-sim#more-2243

    9 of 13 11/27/2014 3:54 PM

  • !router ospf 6 router-id 192.168.3.3!

    We are not sure about the configuration of ppp authentication in this case. Some reports said thatonly one router has the ppp authentication chap command but it is just a trick and is not theproblem here. The real problem here is R6 uses the same router-id of R3 (192.168.3.3) so OSPFneighborship cannot be established. In real life, such configuration error will be shown in thecommand line interface (CLI). So please check carefully for this question.

    Comments (102) CommentsComment pages Previous 1 2 3 2243

    OmzNovember 23rd, 2014

    Oppps omc79 at hotmail dot com

    1.

    lonnNovember 24th, 2014

    no .pka to download of this section ?

    2.

    Comment pages Previous 1 2 3 2243Add a Comment

    Name

    CCNA Training OSPF Neighbor Sim http://www.9tut.com/ospf-neighbor-sim#more-2243

    10 of 13 11/27/2014 3:54 PM

  • Subscribe to comments feedEIGRP Troubleshooting Sim Simple Network Management Protocol SNMP Tutorial

    Become a member to interact with all questions and read all tutorials, labs!

    Find out more or Sign In

    CCNA Lab SimNew CCNA HSRP VRRP GLBPNew CCNA SNMP QuestionsNew CCNA NetFlow QuestionsNew CCNA Syslog QuestionsNew CCNA New Questions 2New CCNA Basic QuestionsNew CCNA OSI & TCP/IP ModelNew CCNA IOS QuestionsNew CCNA WAN QuestionsNew CCNA Switch QuestionsNew CCNA Switch Questions 2New CCNA Trunking QuestionsNew CCNA Trunking Questions 2New CCNA STPNew CCNA STP 2New CCNA RSTP

    CCNA Training OSPF Neighbor Sim http://www.9tut.com/ospf-neighbor-sim#more-2243

    11 of 13 11/27/2014 3:54 PM

  • New CCNA Access list QuestionsNew CCNA NAT PAT QuestionsNew CCNA VLAN QuestionsNew CCNA InterVLAN QuestionsNew CCNA SubnettingNew CCNA Subnetting 2New CCNA Frame RelayNew CCNA Frame Relay 2New CCNA IP Routing QuestionsNew CCNA IP Routing 2New CCNA DHCP QuestionsNew CCNA OSPF QuestionsNew CCNA OSPF Questions 2New CCNA EIGRP QuestionsNew CCNA Security QuestionsNew CCNA Operation QuestionsNew CCNA Operation 2New CCNA Show commandsNew CCNA TroubleshootingNew CCNA IPv6New CCNA IPv6 Questions 2New CCNA Drag and Drop 1New CCNA Drag and Drop 2New CCNA Drag and Drop 3New CCNA Drag and Drop 4New CCNA Drag and Drop 5CCNA FAQs & TipsShare your (new) CCNA Experience

    Practice CCNA GNS3 LabsCCNA Knowledge

    CCNA Training OSPF Neighbor Sim http://www.9tut.com/ospf-neighbor-sim#more-2243

    12 of 13 11/27/2014 3:54 PM

  • Free Router Simulators

    ICND1/ICND2 Website

    CCNP - ROUTE Website

    CCNP - SWITCH Website

    CCNP - TSHOOT Website

    CCNA Voice Website

    CCNA Wireless Website

    CCNA Security Website

    CCDA Website

    CCIP Website

    CCIE Written Website

    Support 9tut

    Your contribution will help keep this site updated!

    Top

    Copyright 2010-2013 CCNA TrainingSite Privacy Policy. Valid XHTML 1.1 and CSS 3.UV

    CCNA Training OSPF Neighbor Sim http://www.9tut.com/ospf-neighbor-sim#more-2243

    13 of 13 11/27/2014 3:54 PM