Ask Your Question

Revision history [back]

The pipes (||) are a logical "or" so your filter says anything to/from 192.168.70.20 or from 192.168.70.22. You will want to use two ampersands (&&).

(ip.addr == 192.168.70.20 && ip.src == 192.168.70.22)

This will only be one direction though (sourced from .22). You might want to use ip.addr for both statements to get bidirectional traffic.

(ip.addr == 192.168.70.20 && ip.addr == 192.168.70.22)

The UPD capture filter should limit it to only UDP packets. Are you sure you aren't just seeing the other protocols that rely on UDP for transmission, such as DNS?

The pipes (||) are a logical "or" so your filter says anything to/from 192.168.70.20 or from 192.168.70.22. You will want to use two ampersands (&&).

(ip.addr == 192.168.70.20 && ip.src == 192.168.70.22)

This will only be one direction though (sourced from .22). You might want to use ip.addr for both statements to get bidirectional traffic.

(ip.addr == 192.168.70.20 && ip.addr == 192.168.70.22)

The UPD capture filter should limit it to only UDP packets. Are you sure you aren't just seeing the other protocols that rely on UDP for transmission, such as DNS?

The pipes (||) are a logical "or" so your filter says anything to/from 192.168.70.20 or from 192.168.70.22. You will want to use two ampersands (&&).

(ip.addr == 192.168.70.20 && ip.src == 192.168.70.22)

This will only be one direction though (sourced from .22). You might want to use ip.addr for both statements to get bidirectional traffic.

(ip.addr == 192.168.70.20 && ip.addr == 192.168.70.22)

The UPD capture filter should limit it to only UDP packets. Are you sure you aren't just seeing the other protocols that rely on UDP for transmission, such as DNS?

The pipes (||) are a logical "or" so your filter says anything to/from 192.168.70.20 or from 192.168.70.22. You will want to use two ampersands (&&).

(ip.addr == 192.168.70.20 && ip.src == 192.168.70.22)

This will only be one direction though (sourced from .22). You might want to use ip.addr for both statements to get bidirectional traffic.

(ip.addr == 192.168.70.20 && ip.addr == 192.168.70.22)

The UPD UDP capture filter should limit it to only UDP packets. Are you sure you aren't just seeing the other protocols that rely on UDP for transmission, such as DNS?