Which of the following log queries would show only dropped packets with source address of 192.168.1.1 and destination address of 172.26.1.1?
Which of the following log queries would show only dropped packets with source address of 192.168.1.1 and destination address of 172.26.1.1?
To show only dropped packets with a specific source address of 192.168.1.1 and a specific destination address of 172.26.1.1, a query must include conditions that both the source and destination addresses match exactly, and the action indicates a drop. Therefore, the correct query format is src:192.168.1.1 AND dst:172.26.1.1 AND action:Drop.
It's B