This question tests your ability to use the SmartConsole Log Search syntax — a key skill for investigating network events.
You're looking for logs that match:
✅ Action = Drop
✅ Source IP = 192.168.1.1
✅ Destination IP = 172.26.1.1
The correct query must use:
-Field-specific syntax: like src:, dst:, and action:
-Logical operator: AND (not OR), because all three conditions must be true simultaneously
B. src:192.168.1.1 AND dst:172.26.1.1 AND action:Drop ✅
✅ Correct field-based search query
Exactly specifies:
-Source = 192.168.1.1
-Destination = 172.26.1.1
-Action = Drop
Ensures precision in log search results
D. src:192.168.1.1 OR dst:172.26.1.1 AND action:Drop
❌ Still incorrect logic
OR means logs with either IP will show up, not necessarily both
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
NyiShinHtet
1 month, 1 week agoaikaloge
1 year, 1 month ago