IPv4 Connection

interface IPv4Connection {
    dst_addr?: string;
    dst_port?: number;
    protocol?: L4Protocol;
    src_addr?: string;
    src_port?: number;
}

Properties

dst_addr?: string

IPv4 destination address range

dst_port?: number

Destination service per [RFC6335]

protocol?: L4Protocol

Layer 4 protocol (e.g., TCP)

src_addr?: string

IPv4 source address range

src_port?: number

Source service per [RFC6335]