Port Filter

SmartNIC Filtering with Link-Capture™ Software

Platform
Napatech SmartNIC
Content Type
User Guide
Capture Software Version
Link™ Capture Software 12.11

Frames can be filtered based on the received port information.

See the NTPL examples.
// Deliver all frames received on port 0 to stream 0.
Assign[StreamId = 0] = Port==0

// Deliver all frames received on port 1 to stream 1.
Assign[StreamId = 1] = Port==1

// Deliver all frames received on port 2 to stream 3.
Assign[StreamId = 2] = Port==2

// Deliver all frames received on port 3 to stream 3.
Assign[StreamId = 3] = Port==3
A list of ports can be applied as follows.
Assign[StreamId = 0] = Port==0,2
Assign[StreamId = 1] = Port==1,3
This example applies a filter with a range of ports.
Assign[StreamId = 0] = Port==0..2