I am trying to remove a host from the Live View display. I have set host != IP but it is still showing up.Is this a bug or am I doing something wrong?
Also... I captured packets for two VLANs and the WAN, and the one in the WAN is named incorrectly as:packetcapture_igb0_vlan20.capThis seems like a (minor) bug to me.
This doesn't look like a software bug to me. Written in words, i see your configuration like this:Display only packets which match rule 1.Rule 1: Does {at least one of: src, dst} not contain {10.10.10.50}?Your packets (with red underlined src) match rule 1, because their dst does not contain "10.10.10.50".You might feel this software behavior doesn't make sense. But to me it makes sense, because the implementation of both filter aspects ("src,dst" and "does not contain") seems correct. You might feel the "src,dst" should be implemented as "and" and not "or". But i think the "or" is necessary to be able to filter packets which have a given host as dst or src.If you want to see only packets which have a given host neither as src nor as dst, you probably need to create 2 rules, one for src and one for dst.
But in this case, it is very confusing to give the option "host does not contain X.X.X.X" because it will never do anything.
src=192.168.1.91 port=12345 ---> dst=192.168.1.1 port=80src=192.168.1.92 port=12345 ---> dst=192.168.1.1 port=443src=192.168.1.93 port=12345 ---> dst=192.168.1.2 port=53src=192.168.1.94 port=12345 ---> dst=192.168.1.3 port=465