interface DHCPEntry {
    createdAt?: Date;
    gatewayNetworkId: string;
    hostname: string;
    id: string;
    ipAddress: string;
    macAddress: string;
    type: DHCPEntryType;
    updatedAt?: Date;
    zone: Zone;
}

Properties

createdAt?: Date

DHCP entry creation date.

gatewayNetworkId: string

Owning GatewayNetwork.

hostname: string

Hostname of the client device.

id: string

DHCP entry ID.

ipAddress: string

Assigned IP address.

macAddress: string

MAC address of the client device.

Entry type, either static (DHCP reservation) or dynamic (DHCP lease).

updatedAt?: Date

DHCP entry last modification date.

zone: Zone

Zone of this DHCP entry.