exam questions

Exam 300-410 All Questions

View all questions & answers for the 300-410 exam

Exam 300-410 topic 1 question 429 discussion

Actual exam question from Cisco's 300-410
Question #: 429
Topic #: 1
[All 300-410 Questions]



Refer to the exhibit. The traffic from spoke to hub is dropping. The operations team observes:

• R2-R3 link is down due to the fiber cut.
• R2 and R5 receive traffic from R1 in AS 65101.
• R3 and R6 receive traffic from R4 in AS 65201.

Which configuration resolves the issue?

  • A. R5(config)#router bgp 65101 -
    R5(config-router)#neighbor 10.10.10.6 remote-as 65201
    R5(config-router)#neighbor 10.10.10.6 update-source Loopback0
    R5(config-router)#neighbor 10.10.10.6 ebgp-multihop 3
  • B. R5(config)#router bgp 65101 -
    R5(config-router)#no neighbor 10.0.0.18 update-source Loopback0
  • C. R6(config)#router bgp 65101 -
    R6(config-router)#no neighbor 10.0.0.17 update-source Loopback0
  • D. R6(config)#router bgp 65201 -
    R6(config-router)#neighbor 10.10.10.5 remote-as 65101
    R6(config-router)#neighbor 10.10.10.5 update-source Loopback0
    R6(config-router)#neighbor 10.10.10.5 ebgp-multihop 3
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Titini
Highly Voted 2 years, 3 months ago
Selected Answer: B
The error message "BGP: 10.0.0.18 passive open failed - 10.0.0.17 is not update-source Loopback0's address (10.10.10.5)" indicates that there was a problem with establishing a BGP session between two routers with IP addresses 10.0.0.18 and 10.0.0.17. The message specifically states that the passive open attempt from the device with IP address 10.0.0.18 has failed because the device with IP address 10.0.0.17 is not using the correct source IP address when sending updates. Instead of using the IP address of the Loopback0 interface, which is 10.10.10.5, it is using a different IP address. In this case, it appears that the device with IP address 10.0.0.17 is using a different source IP address than the one expected by the device with IP address 10.0.0.18. Specifically, the device with IP address 10.0.0.17 should be configured to use the IP address of its Loopback0 interface (10.10.10.5 in this case) as the source address for BGP updates when communicating with the device at IP address 10.0.0.18.
upvoted 11 times
d740f62
1 year, 2 months ago
Very sharp, nicely done!
upvoted 1 times
...
...
kldoyle97
Most Recent 7 months ago
R6(10.0.0.18) is sending BGP open messages to R5(10.0.0.17). They are failing because R5 has its peering source with R6 set to the loopback 10.10.10.5. R5's in its debug output is expecting open messages to it loopback address 10.10.10.5. Solution is remove the neighbor 10.0.0.18 update-source L0 on R5 or configure the neighbor statement using the loopback addresses with ebgp multihop instead of the WAN interface address if you had the option to select 2 choices A and D would be correct, just not one or the other
upvoted 2 times
...
[Removed]
10 months, 4 weeks ago
Selected Answer: B
B is corerct
upvoted 1 times
...
HungarianDish_111
2 years, 1 month ago
Selected Answer: B
Reproduced error in CML lab with a simple BGP config: R5 router bgp 65101 neighbor 10.0.0.18 remote-as 65201 network 10.10.10.5 mask 255.255.255.255 !debug ip bgp -> enabled on both routers for viewing the error !When adding this incorrect line the same error comes as in the output: neighbor 10.0.0.18 update-source Loopback0 R6 router bgp 65201 neighbor 10.0.0.17 remote-as 65101 network 10.10.10.6 mask 255.255.255.255
upvoted 3 times
HungarianDish_111
2 years, 1 month ago
Config for update-source loopback0: R5 router bgp 65101 neighbor 10.10.10.6 remote-as 65201 neighbor 10.10.10.6 update-source Loopback0 neighbor 10.10.10.6 ebgp-multihop 2 ip route 10.10.10.6 255.255.255.255 10.0.0.18 !Static Route to reach Loopback0 of R6 R6 router bgp 65201 neighbor 10.10.10.5 remote-as 65101 neighbor 10.10.10.5 update-source Loopback0 neighbor 10.10.10.5 ebgp-multihop 2 ip route 10.10.10.5 255.255.255.255 10.0.0.17 !Static Route to reach Loopback0 of R5
upvoted 2 times
Pietjeplukgeluk
1 year, 3 months ago
I agree with HungarianDish his config, but i do not think B will fix the setup, we do not have starting config, so it might still not work after B. I guess the actual answer is B and then A config.
upvoted 1 times
bk989
10 months, 1 week ago
A does fix it. But B is the first step. A is the second step. If we only do A, the neighbor statement in B is still there, and we get the same error message. Just labbed it. Stupid answer trying to throw you off.
upvoted 2 times
...
bk989
10 months, 1 week ago
"BGP: 10.0.0.18 passive open failed - 10.0.0.17 is not update-source Loopback0's address (10.10.10.5)" R5 receives this debug with Hungarians original configuration. R5 receives R6 OPEN message and realizes the open message is trying to peer with 10.0.0.17, which is not the address R5 is trying to use to peer. The OPEN message contains RID, but how does R5 know 10.0.0.17 is not update-source loopback 0? Does R6's OPEN message contain the RID it is trying to peer with? This bothered me. I looked at wireshark, and noticed in capture the ip address headers. R5 is seeing an OPEN message from 10.0.0.18 --> 10.0.0.17, however for 10.0.0.17 R5 has update-source loopback 0 as part of its configuration.
upvoted 1 times
...
...
...
...
Lilienen
2 years, 4 months ago
Selected Answer: B
Could someone actually explain this question please? I feel like we don't have enough information from the question itself. For me, B makes sense. Current situation is, that R5 is using 10.10.10.5 address for BGP communication with R6. Also, R6 is using 10.0.0.18 for BGP communication with R5 and it's trying to open a session with R5's address 10.0.0.17. Which means: A - won't help, because then R6 will not respond as it's not using its Lo0 address for communication B - will help, because we remove Lo0 as update source from R5, so R6 can use R5's address 10.0.0.17 and R5 will reply C - won't help, because R6 is clearly not using Lo0 for communication, so this command is redundant D - won't help, because we would make R6 use R5's Lo0 address for communication, but we would also change R6's communication address too, so then there would be a mismatch with R5's neighbor config
upvoted 2 times
...
pitcholo
2 years, 4 months ago
B IS CORRECT
upvoted 1 times
...
ellen_AA
2 years, 5 months ago
I think it's A, it says in the exhibit of R5, 10.0.0.17 is not update source loopback0. We need to to update source loopback and update ebgp multihop to 3.
upvoted 3 times
...
Zizu007
2 years, 5 months ago
Selected Answer: B
Correct!
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...