-- Exhibit --
[edit routing-options]
user@router# show
static {
defaults {
metric 10;
preference 10;
}
route 10.10.10.0/24 {
next-hop 192.168.100.1;
qualified-next-hop 192.168.200.1;
preference 6;
}
metric 8;
}
}
-- Exhibit --
Given the configuration shown in the exhibit, which statement is correct about traffic matching the route 10.10.10.0/24?
Click on the arrows to vote for the correct answer
A. B. C. D.C
The configuration shown in the exhibit is defining a static route for the network 10.10.10.0/24. Let's go through each of the configuration statements to understand how traffic will be matched and forwarded:
Based on the above configuration, the correct answer is C. Traffic matching the route 10.10.10.0/24 will be forwarded to 192.168.200.1 using a metric of 8 because this is the specific route defined in the configuration with the lower metric value (8). The preference value of 6 for this specific route will be used to determine the best path among multiple routes with the same destination and metric values.
Note that the default values of metric 10 and preference 10 set in the defaults statement will be used for any static routes defined in the future within this stanza, but they will not apply to the specific route defined for the network 10.10.10.0/24.