PacketCaptureFilter Class
Filter that is applied to packet capture request. Multiple filters can be applied.
- Inheritance
-
PacketCaptureFilter
Constructor
PacketCaptureFilter(*, protocol: typing.Union[str, _ForwardRef('PcProtocol'), NoneType] = 'Any', local_ip_address: typing.Union[str, NoneType] = None, remote_ip_address: typing.Union[str, NoneType] = None, local_port: typing.Union[str, NoneType] = None, remote_port: typing.Union[str, NoneType] = None, **kwargs)
Parameters
- protocol
- str or PcProtocol
Protocol to be filtered on. Possible values include: "TCP", "UDP", "Any". Default value: "Any".
- local_ip_address
- str
Local IP Address to be filtered on. Notation: "127.0.0.1" for single address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5"? for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Default = null.
- remote_ip_address
- str
Local IP Address to be filtered on. Notation: "127.0.0.1" for single address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Default = null.
- local_port
- str
Local port to be filtered on. Notation: "80" for single port entry."80-85" for range. "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Default = null.
- remote_port
- str
Remote port to be filtered on. Notation: "80" for single port entry."80-85" for range. "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Default = null.
Feedback
Submit and view feedback for