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:
answer a
0
1
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;
1
0
Woops, answer B.
1
0