Describes the details of a session's traffic direction, including origin and destination, protocol, and state for a particular session direction, either client-to-server or server-to-client.

interface SessionDirection {
    dport: string;
    dst: string;
    dst-user: string;
    ipver: string;
    proto: string;
    source: string;
    source-zone: string;
    sport: string;
    src-user: string;
    state: string;
    type: string;
}

Properties

dport: string

The destination port number used in this direction of the traffic.

dst: string

The destination IP address for this direction of the traffic.

dst-user: string

The user associated with the destination of the traffic in this direction.

ipver: string

The IP version used by the session.

proto: string

The protocol used in this direction of the traffic.

source: string

The source IP address for this direction of the traffic.

source-zone: string

The source zone for this direction of the traffic.

sport: string

The source port number used in this direction of the traffic.

src-user: string

The user associated with the source of the traffic in this direction.

state: string

The state of this particular direction of the session.

type: string

The session type for this direction of the traffic.

Generated using TypeDoc