Represents the system information response structure from a PAN-OS device. It encapsulates key system details such as the hostname, IP configuration, serial number, and other relevant information.

interface SystemInfoResponse {
    defaultGateway: string;
    hostname: string;
    ipAddress: string;
    netmask: string;
    serialNumber: string;
}

Properties

defaultGateway: string

The default gateway address for the PAN-OS device.

hostname: string

The hostname of the PAN-OS device.

ipAddress: string

The IP address of the PAN-OS device.

netmask: string

The subnet mask of the device's network.

serialNumber: string

The serial number of the PAN-OS device.

Generated using TypeDoc