exam questions

Exam 350-401 All Questions

View all questions & answers for the 350-401 exam

Exam 350-401 topic 1 question 128 discussion

Actual exam question from Cisco's 350-401
Question #: 128
Topic #: 1
[All 350-401 Questions]

Refer to the exhibit.

Which configuration establishes EBGP neighborship between these two directly connected neighbors and exchanges the loopback network of the two routers through BGP?

  • A. R1(config)#router bgp 1 R1(config-router)#neighbor 192.168.10.2 remote-as 2 R1(config-router)#network 10.1.1.0 mask 255.255.255.0 R2(config)#router bgp 2 R2(config-router)#neighbor 192.168.10.1 remote-as 1 R2(config-router)#network 10.2.2.0 mask 255.255.255.0
  • B. R1(config)#router bgp 1 R1(config-router)#neighbor 10.2.2.2 remote-as 2 R1(config-router)#network 10.1.1.0 mask 255.255.255.0 R2(config)#router bgp 2 R2(config-router)#neighbor 10.1.1.1 remote-as 1 R2(config-router)#network 10.2.2.0 mask 255.255.255.0
  • C. R1(config)#router bgp 1 R1(config-router)#neighbor 192.168.10.2 remote-as 2 R1(config-router)#network 10.0.0.0 mask 255.0.0.0 R2(config)#router bgp 2 R2(config-router)#neighbor 192.168.10.1 remote-as 1 R2(config-router)#network 10.0.0.0 mask 255.0.0.0
  • D. R1(config)#router bgp 1 R1(config-router)#neighbor 10.2.2.2 remote-as 2 R1(config-router)#neighbor 10.2.2.2 update-source lo0 R1(config-router)#network 10.1.1.0 mask 255.255.255.0 R2(config)#router bgp 2 R2(config-router)#neighbor 10.1.1.1 remote-as 1 R2(config-router)#neighbor 10.1.1.1 update-source lo0 R2(config-router)#network 10.2.2.0 mask 255.255.255.0
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

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
xziomal9
Highly Voted 3 years, 8 months ago
A. R1(config)#router bgp 1 R1(config-router)#neighbor 192.168.10.2 remote-as 2 R1(config-router)#network 10.1.1.0 mask 255.255.255.0 R2(config)#router bgp 2 R2(config-router)#neighbor 192.168.10.1 remote-as 1 R2(config-router)#network 10.2.2.0 mask 255.255.255.0 B. R1(config)#router bgp 1 R1(config-router)#neighbor 10.2.2.2 remote-as 2 R1(config-router)#network 10.1.1.0 mask 255.255.255.0 R2(config)#router bgp 2 R2(config-router)#neighbor 10.1.1.1 remote-as 1 R2(config-router)#network 10.2.2.0 mask 255.255.255.0 C. R1(config)#router bgp 1 R1(config-router)#neighbor 192.168.10.2 remote-as 2 R1(config-router)#network 10.0.0.0 mask 255.0.0.0 R2(config)#router bgp 2 R2(config-router)#neighbor 192.168.10.1 remote-as 1 R2(config-router)#network 10.0.0.0 mask 255.0.0.0 D. R1(config)#router bgp 1 R1(config-router)#neighbor 10.2.2.2 remote-as 2 R1(config-router)#neighbor 10.2.2.2 update-source lo0 R1(config-router)#network 10.1.1.0 mask 255.255.255.0 R2(config)#router bgp 2 R2(config-router)#neighbor 10.1.1.1 remote-as 1 R2(config-router)#neighbor 10.1.1.1 update-source lo0 R2(config-router)#network 10.2.2.0 mask 255.255.255.0 The correct answer is: A
upvoted 25 times
...
maurom
Highly Voted 4 years, 11 months ago
A is the correct because we are dont use igp
upvoted 14 times
diegodavid82
3 years, 7 months ago
Well, to establish an EBGP neighbor you don't need an IGP. Answer A is correct because is the right configuration.
upvoted 3 times
...
...
AbdullahMohammad251
Most Recent 9 months, 3 weeks ago
Selected Answer: A
The `neighbor <IP address> ebgp-multihop 2` command is needed to allow the BGP session to extend beyond a single hop. This command is used when you want to reach an external BGP peer that is not directly connected or is using an interface on a different subnet.
upvoted 2 times
...
[Removed]
1 year ago
Selected Answer: A
A is correct
upvoted 1 times
...
techriese
1 year, 11 months ago
Selected Answer: A
A is correct
upvoted 1 times
...
bora4motion
2 years, 6 months ago
Selected Answer: A
A is correct.
upvoted 1 times
...
Pudu_vlad
2 years, 8 months ago
A is the correct
upvoted 1 times
...
Dataset
2 years, 10 months ago
A is correct
upvoted 1 times
...
brightsyds
3 years, 3 months ago
A for sure!
upvoted 1 times
...
pj_machado
3 years, 10 months ago
D is not correct because it does not have the bgp multi-hop configuration command
upvoted 1 times
ArchBishop
3 years, 4 months ago
The routers are essentially directly connected, so they are not required to have 'multi-hop' configured. For D to be the correct answer, each router would need to have a valid entry in their RIB to reach the destination neighbor's loopback network (more specifically, the neighbors loopback interface). This, at a minimum, could be accomplished with a static route on each router to their neighbor's loopback network, whether a /32 to the interface, or a /24 that covers the entire subnet. Otherwise, the router will HAVE the neighbor entry, but have no clue how to reach the remote IP.
upvoted 2 times
ArchBishop
3 years, 4 months ago
I am wrong about 'multi-hop.' eBGP ttl default is 1 hop before discard occurs. When using loopback as a source, the hop from the loop network to the exit interface's network counts as 1 hop, meaning discard will occur. Multi-hop, update-source, AND valid route, are all required in order to use loopbacks in a neighbor statement.
upvoted 2 times
...
...
...
patrickni
4 years, 9 months ago
chalosca is correct. Answer is A.
upvoted 1 times
...
akbntc
4 years, 9 months ago
Question has clearly asked "Which configuration establishes EBGP neighborship between these two directly connected neighbors", so option A is correct.
upvoted 1 times
...
nead
4 years, 10 months ago
A is correct. D is close but there is no information of the Loopback addresses, so they cannot be used in the neighbor statement
upvoted 1 times
...
Jack1188
4 years, 10 months ago
The answer is A
upvoted 3 times
...
imed
4 years, 11 months ago
answer D is correct
upvoted 1 times
bluemoon0817
4 years, 10 months ago
No, D is IBGP's configuration.
upvoted 1 times
...
...
nep1019
4 years, 11 months ago
Answer is D. In order to exchange the Loopback addresses you must have the update-source statement added to the neighbor statement.
upvoted 2 times
bluemoon0817
4 years, 10 months ago
D is IBGP's configuration.
upvoted 1 times
...
chalosca
4 years, 10 months ago
This would require "ebgp-multihop 2" Answer is A
upvoted 6 times
...
AleGll
4 years, 5 months ago
A is the correct one. D is another right way to configure BGP peers ( using loopback addresses ), but it's not the requested mode.
upvoted 1 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 ...