Actions
Feature #13094
closed
SW
MM
Allow packet capture filtering in tagged packets
Feature #13094:
Allow packet capture filtering in tagged packets
Start date:
Due date:
% Done:
0%
Estimated time:
Plus Target Version:
23.05
Release Notes:
Force Exclusion
Description
Currently the host filtering options in the webgui packet capture do not match VLAN or QinQ tagged traffic.
It would be very useful to be able to filter for that when looking for VLAN traffic on an interface carrying untagged traffic.
Currently 'Host Address' field is used as a host or subnet only:
/usr/sbin/tcpdump -i ix3 -c 1000 -s 0 -w /root/packetcapture.cap ( host 10.229.0.1)
/usr/sbin/tcpdump -i ix3 -c 1000 -s 0 -w /root/packetcapture.cap ( net 10.229.0.0/24)
To match tagged traffic that command needs to be:
/usr/sbin/tcpdump -i ix3 -c 1000 -s 0 -w /root/packetcapture.cap ( vlan and net 10.229.0.0/24)
Or tagged and untagged traffic:
/usr/sbin/tcpdump -i ix3 -c 1000 -s 0 -w /root/packetcapture.cap ( net 10.229.0.0/24) or (vlan and net 10.229.0.0/24)
Actions