exam questions

Exam 300-410 All Questions

View all questions & answers for the 300-410 exam

Exam 300-410 topic 1 question 78 discussion

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


Refer to the exhibit. An engineer has configured R1 as EIGRP stub router. After the configuration, router R3 failed to reach to R2 loopback address.
Which action advertises R2 loopback back into the R3 routing table?

  • A. Add a static route for R2 loopback address in R1 and redistribute it to advertise to R3.
  • B. Use a leak map on R1 that matches the required prefix and apply it with the distribute list command toward R3.
  • C. Use a leak map on R3 that matches the required prefix and apply it with the EIGRP stub feature.
  • D. Add a static null route for R2 loopback address in R1 and redistribute it to advertise to R3.
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
d4lv
1 week ago
Selected Answer: B
R1(config)#ip access-list standard R2_L0 R1(config-std-nacl)#permit host 2.2.2.2 R1(config)#route-map R2_L0_LEAK R2(config-route-map)#match ip address R2_L0 R1(config)#router eigrp 1 R1(config-router)#eigrp stub leak-map R2_L0_LEAK
upvoted 1 times
...
Rupirapa
2 weeks, 5 days ago
Selected Answer: C
In my opinion the answer is C Here is the config I assume is configured on the routers based on the problem *R1* router eigrp 10 network 0.0.0.0 eigrp stub connected summary leak-map LEAK ip prefix-list TEST seq 5 permit 2.2.2.2/32 route-map LEAK permit 10 match ip address prefix-list TEST *R2* router eigrp 10 network 0.0.0.0 *R3* router eigrp 10 network 0.0.0.0 A) This is the configuration that this answer is suggesting. ip route 2.2.2.2 255.255.255.255 192.168.12.2 redistribute static metric 1000000 10 255 1 1500 However, the answer is missing the command "eigrp stub connected static" B) The command does not exist R1(config-router)#distribute-list ? <1-199> IP access list number <1300-2699> IP expanded access list number WORD Access-list name gateway Filtering incoming address updates based on gateway prefix Filter prefixes in address updates route-map Filter prefixes based on the route-map C) Correct D) Does not make any sense
upvoted 1 times
...
tsamoko
3 months, 2 weeks ago
Selected Answer: A
B as everyone is said is not even possible , there is no such a command with distribution list . I go with A , for A to work we need to know the configuration of R1 . In order for this to work , we need 1) to create static route for R2 lo0 2) under eigrp process , when we are configuring the stub function , we won't just let the default stub, advertising connected and summary. We need to configure " eigrp stub connected static" , then in R3 , we will see as D EX 2.2.2.2 . So I only counted that they configure that. A is the answer
upvoted 2 times
...
AonDuine
4 months, 2 weeks ago
Selected Answer: B
access-list 10 permit 2.2.2.2 route-map LEAK_MAP permit 10 match ip address 10 router eigrp 1 distribute-list route-map LEAK_MAP out
upvoted 1 times
tsamoko
3 months, 2 weeks ago
B is Wrong !!! . If you do this your access list has deny any on the end of the ACE , so the network between R1-R2 ( 192.168.12.0 ) and R1-R3 , are filtered also . Putting permit any in the end , also doesn't help . Leak map doesn't exist in distribution command .
upvoted 1 times
...
...
bk989
5 months, 1 week ago
Answer seems to be A. I will lab to verify on my own but the rest are not correct. B. there is no distribute-list leak-map command C. This is applying the change to R3. Since R1 is a stub as well, it is not propagating R2 to R3 routes. D. If we add a static null route for R2 loopback, we lose reachability to R2 loopback.
upvoted 2 times
bk989
4 months, 3 weeks ago
R1 router eigrp 1 network 1.1.1.0 0.0.0.255 network 192.168.12.0 network 192.168.13.0 eigrp router-id 1.1.1.1 eigrp stub connected summary ! ip forward-protocol nd ! ! no ip http server no ip http secure-server ip route 2.2.2.2 255.255.255.255 192.168.12.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 2.2.2.2, timeout is 2 seconds: ..... Success rate is 0 percent (0/5)
upvoted 1 times
bk989
4 months, 3 weeks ago
R1(config)#router eigrp 1 R1(config-router)#redistribute static metric 1 1 1 1 1 R3#ping 2.2.2.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 2.2.2.2, timeout is 2 seconds: .....
upvoted 1 times
bk989
4 months, 3 weeks ago
R1(config-router)#router eigrp 1 R1(config-router)#stub static connected we need the connected keyword to advertise the links between the routers R3#ping 2.2.2.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 2.2.2.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 4/5/6 ms R3# B doesn't exist as a command
upvoted 2 times
bk989
4 months, 3 weeks ago
R1(config-router)#distribute-list ? <1-199> IP access list number <1300-2699> IP expanded access list number WORD Access-list name gateway Filtering incoming address updates based on gateway prefix Filter prefixes in address updates route-map Filter prefixes based on the route-map
upvoted 1 times
...
...
...
...
...
jabal93
5 months, 1 week ago
HQ(config-router-af)#do sh run | sec acc access-list 10 permit 192.168.4.0 0.0.0.255 (R2) access-list 20 permit 172.16.0.0 0.0.255.255 (R3) HQ(config-router-af)# HQ(config-router-af)#do sh run | sec route-m route-map LEAK-BR2 permit 10 match ip address 10 20 HQ(config-router-af)#do sh run | sec eig router eigrp cisco ! address-family ipv4 unicast autonomous-system 10 ! topology base network 0.0.0.0 eigrp router-id 5.5.5.5 eigrp stub connected summary leak-map LEAK-BR2 exit-address-family
upvoted 2 times
...
jabal93
5 months, 1 week ago
it's a tricky one but the correct answer is A B: wrong because leak map only works with route-map
upvoted 1 times
...
[Removed]
6 months ago
Selected Answer: B
B is correct
upvoted 1 times
...
Fenix7
6 months, 1 week ago
Answer is A. You need these 2 commands: redistribute static and eigrp stub static
upvoted 1 times
...
dapardo
6 months, 3 weeks ago
Selected Answer: A
Im going with A on this just because answer B mention distribute list, thats not correct. We should use a prefix list with a route map or something like that.
upvoted 1 times
...
XBfoundX
7 months, 1 week ago
the only one that can be right is A, the answer B is using a distribute list instead of a route-map that's the bad thing about this. The point is that we need also to remember that when eigrp stub is enabled by default you can only advertise connected network and summary networks, if we want to redistribute static routes we need to add the command eigrp stub connected summary static
upvoted 1 times
XBfoundX
7 months, 1 week ago
output command show ip protocols: EIGRP-IPv4 Protocol for AS(100) Metric weight K1=1, K2=0, K3=1, K4=0, K5=0 Soft SIA disabled NSF-aware route hold timer is 240 Router-ID: 192.168.34.2 Stub, connected, summary router eigrp 100 network 192.168.24.0 0.0.0.3 network 192.168.34.0 0.0.0.3 redistribute connected redistribute static eigrp stub connected static summary
upvoted 1 times
XBfoundX
7 months, 1 week ago
this is the output afer the command mentioned: Metric weight K1=1, K2=0, K3=1, K4=0, K5=0 Soft SIA disabled NSF-aware route hold timer is 240 Router-ID: 192.168.34.2 Stub, connected, static, summary Topology : 0 (base) Active Timer: 3 min
upvoted 1 times
...
...
...
Marcinko
8 months, 3 weeks ago
Selected Answer: A
There is no such option as distribute-list regarding leak-map, but redistribute command works as HungarianDish labbed: Correct answer is A
upvoted 2 times
...
[Removed]
1 year ago
Selected Answer: C
Think the question has being edited - answer is now C (verified in CML)
upvoted 2 times
[Removed]
1 year ago
Please ignore - its obviously B
upvoted 1 times
...
...
louisvuitton12
1 year, 2 months ago
Selected Answer: B
Option B is correct: https://networklessons.com/cisco/ccie-routing-switching-written/eigrp-stub-leak-map
upvoted 4 times
Dv123456
5 months, 3 weeks ago
never heard about leak-map, thanks!
upvoted 1 times
...
Pietjeplukgeluk
1 year, 1 month ago
The example you supplied matches the question. So i agree it should be B. Also strange that we get this question on CCNP as it seems out of scope of the exam. By the way, love the example, so simple!
upvoted 1 times
XBfoundX
7 months, 1 week ago
That's not true, you do NOT use a distribute list for create a leak-map, in fact if you look the configuration there is configured a route-map that is matching the 3.3.3.3/32 prefix and then is going to apply the leak map in the eigrp stub command using also the leak map the distribute list in NOT used
upvoted 3 times
...
Marcinko
8 months, 3 weeks ago
In the example you have supplied shows if we want to use leak-map we have the option: eigrp stub leak-map <leak map name> There is no such option as distribute-list regarding leak-map, but redistribute command works as HungarianDish labbed: Correct answer is A
upvoted 1 times
...
...
...
jansan55
1 year, 4 months ago
Selected Answer: A
As previously mentioned (for example by HungarianDish) there is no such possibilty eigrp leak-map with distribute list. I also labbed the configuration, and I agree with HungarianDish, that answer is "A". Even the wording is met.
upvoted 4 times
...
Brand
1 year, 4 months ago
Selected Answer: B
I don't know why but this questions seems like it's asking about leak-map feature of EIGRP stub configuration... I can't explain but I have this feeling maybe it's because there is no other question talking about leak-map. Therefor it's B to me.
upvoted 2 times
...
inteldarvid
1 year, 5 months ago
Selected Answer: A
the answer correct is "A"
upvoted 2 times
inteldarvid
1 year, 5 months ago
because, need redisitribute static in R1, because R1 is router stub
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 ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago