You are configuring a firewall filter.
Which "from" criterion would match only those packets destined for 10.10.10.1?
Click on the arrows to vote for the correct answer
A. B. C. D.B
The correct option that would match only those packets destined for 10.10.10.1 is B. [edit firewall filter test] root@router# set term 1 from destination-address 10.10.10.1.
Explanation:
When configuring a firewall filter, the "from" criterion specifies the conditions under which the filter will be applied. In this case, the question asks for the criterion that would match only those packets destined for 10.10.10.1.
Option A, [edit firewall filter test] root@router# set term 1 from address 10.10.10.1, would match packets with a source address of 10.10.10.1. It does not match the destination address.
Option C, [edit firewall filter test] root@router# set term 1 from destination 10.10.10.1, is not a valid option for the "from" criterion. The "destination" keyword is used in the "then" part of the firewall filter to specify the destination address of the packet.
Option D, [edit firewall filter test] root@router# set term 1 from ip-prefix 10.10.10.1, would match packets with a source or destination address that matches the prefix 10.10.10.1. It does not match only the packets destined for 10.10.10.1.
Option B, [edit firewall filter test] root@router# set term 1 from destination-address 10.10.10.1, is the correct option as it matches only the packets that have a destination address of 10.10.10.1. This is because the "destination-address" keyword is used to match only the destination address of the packet.
Therefore, the correct answer is B. [edit firewall filter test] root@router# set term 1 from destination-address 10.10.10.1.