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 the dropped packets with a source address of 192.168.1.1 and a destination address of 172.26.1.1, the log query must include conditions that match all specified criteria and must be combined using the AND operator. The option 'src:192.168.1.1 AND dst:172.26.1.1 AND action:Drop' ensures that all three conditions are met simultaneously.
Correct
Correct
Correct.