Which display filter would show only packets with a source IPv4 address of 192.168.0.5 and length greater than 1500 bytes?
ip.src = 192.168.0.5 && frame.len > 1500
ip.src == 192.168.0.5 and frame.len > 1500
ip.addr == 192.168.0.5 or frame.len > 1500
ip.src != 192.168.0.5 and frame.len < 1500
This question is part of this quiz :
What is Network Traffic Analysis in Cybersecurity?