-- Exhibit --
user@router> show configuration firewall
familyinet {
filter demo {
term example {
from {
source-address {
100.100.100.0/24;
}
destination-address {
200.200.200.0/24;
}
}
then {
reject;
}
}
term testing {
from {
source-address {
10.10.10.0/28;
}
destination-address {
200.200.200.0/24;
}
}
then sample;
}
term results {
from {
address {
200.200.200.0/24;
}
}
then accept;
}
term final {
thenpolicer LAPD;
}
}
}
-- Exhibit --
Given the configuration shown in the exhibit, what will happen to traffic from source 10.10.10.25 destined to 200.200.200.1?
Click on the arrows to vote for the correct answer
A. B. C. D.C
Looking at the given firewall configuration, we can see that there are four terms defined under the "demo" filter: "example", "testing", "results", and "final".
The traffic in question is coming from source address 10.10.10.25 and destined to 200.200.200.1. Let's see which term applies to this traffic:
Since none of the terms match the source and destination addresses in question, the default action for the filter will be taken. By default, a filter will accept all traffic that does not match any of the terms specified. Therefore, the traffic in question will be forwarded.
So, the answer is C: The traffic will be forwarded.