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?
answer a
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;
Woops, answer B.