Which display filter would show only packets with a source IPv4 address of 192.168.0.5 and length greater than 1500 bytes?

Last Updated :
Discuss
Comments

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

Share your thoughts in the comments