[edit firewall family inet filter input-filter]
user@router# show
term my-policy {
from {
source-address {
151.43.62.0/24;
}
}
then {
count;
}
}
term else {
then {
discard;
}
}
Which two tasks are accomplished by the firewall filter shown in the exhibit? (Choose two.)
A.
Traffic matching the my-policy term will be counted and accepted.
B.
Traffic matching the my-policy term will be counted and discarded.
C.
Traffic not matching the my-policy term will be discarded.
D.
Traffic not matching the my-policy term will be accepted.
This is B and C
Definitely A and C. Default action when match occurs and the action is not specified is accept.
http://www.juniper.net/documentation/en_US/junos14.1/topics/reference/general/firewall-filter-actions-nonterminating.html
…Nonterminating actions carry with them an implicit accept action….
A and C are correct