1 | initial version |
There are two filtering engines in Wireshark:
As you mention capture filters, I assume you want to limit the packets saved to the pcap file. There is no tns filter in the BPF filter language, you will need to filter on ip addresses and ports. So to not capture any TNS packets, you can use not tcp port 1521
. Beware that if you are capturing vlan-tagged traffic, you need to change this filter into not (vlan and tcp port 1521)
.