IPAM

interface IPAM {
    Config?: IPAMConfig[];
    Driver?: string;
    Options?: {
        [key: string]: string;
    };
}

Properties

Config?: IPAMConfig[]

List of IPAM configuration options, specified as a map: {\"Subnet\": <CIDR>, \"IPRange\": <CIDR>, \"Gateway\": <IP address>, \"AuxAddress\": <device_name:IP address>}

Driver?: string

Name of the IPAM driver to use.

Options?: {
    [key: string]: string;
}

Driver-specific options, specified as a map.