Details of an individual routing entry provided by PAN-OS, including destination, next hop, and other routing information.

interface RoutingEntry {
    age: string;
    destination: string;
    flags: string;
    interface: string;
    metric: string;
    nexthop: string;
    route-table: string;
    virtual-router: string;
}

Properties

age: string

The age of the route since it was last updated.

destination: string

The network destination of the route, typically in CIDR notation.

flags: string

The routing flags for the route, providing additional context about the routing behavior.

interface: string

The interface through which the next hop can be reached.

metric: string

The metric associated with this route, used for route prioritization.

nexthop: string

The next hop IP address to which packets should be sent.

route-table: string

The route table to which this route belongs.

virtual-router: string

The name of the virtual router associated with this routing entry.

Generated using TypeDoc