diff options
author | Dave Barach <dave@barachs.net> | 2020-01-27 09:56:58 -0500 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-01-27 20:43:29 +0000 |
commit | 196fce2b62c0d215722dd233aa8bf70a43aa0a66 (patch) | |
tree | 58e74da7f9e7c387c8b085d01034bc74cbfa52b5 /extras/pcapcli | |
parent | 03328ec8bb86b93fa70bb6b2a9b37c40e686a1f7 (diff) |
classify: pcap / packet trace debug CLI bugs
"classify filter trace ... " and "classify filter pcap ..." are
mutually exclusive.
vnet_pcap_dispatch_trace_configure needs to check for
set->table_indices == NULL.
Type: fix
Ticket: VPP-1827
Signed-off-by: Dave Barach <dave@barachs.net>
Change-Id: I43733364087ffb0a43de92e450955033431d559d
Diffstat (limited to 'extras/pcapcli')
-rw-r--r-- | extras/pcapcli/setup.tracefilter | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extras/pcapcli/setup.tracefilter b/extras/pcapcli/setup.tracefilter index e6c86298c84..db07a0e4224 100644 --- a/extras/pcapcli/setup.tracefilter +++ b/extras/pcapcli/setup.tracefilter @@ -17,4 +17,6 @@ packet-generator new { } } -classify filter trace mask l3 ip4 src match l3 ip4 src 192.168.1.15 +comment { Pick one, uncomment, and "pcap rx ..." or "trace add pg-input ..." } +comment { classify filter trace mask l3 ip4 src match l3 ip4 src 192.168.1.15 } +comment { classify filter pcap mask l3 ip4 src match l3 ip4 src 192.168.1.15 } |