What will accomplish this?

An administrator wants to block the re-advertisement of the 10.10.255.6 FEC to all LDP neighbors
while still advertising the local router’s loopback address. What will accomplish this?

An administrator wants to block the re-advertisement of the 10.10.255.6 FEC to all LDP neighbors
while still advertising the local router’s loopback address. What will accomplish this?

A.
Option A

B.
Option B

C.
Option C

D.
Option D

Explanation:



Leave a Reply 3

Your email address will not be published. Required fields are marked *


jslaven

jslaven

Block transmission of the route for 10.10.255.6/32 to any neighbors:

[edit protocols]
ldp {
export block-one;
}
policy-options {
policy-statement block-one {
term first {
from {
route-filter 10.10.255.6/32 exact;
}
then reject;
}
then accept;

jslaven

jslaven

Woops, answer B.