LocalAccessPointConfiguration
Local Access Point configuration.
export class LocalAccessPointConfiguration {
ipList?: string[];
ipListSize?: number;
domainList?: string[];
domainListSize?: number;
verifyDomainName?: string;
mode?: LocalProxyMode;
advancedConfig?: AdvancedConfigInfo;
}
Properties
- ipList
- Internal IP address list of the Local Access Point. Either
ipListordomainListmust be provided. - ipListSize
- Number of internal IP addresses of the Local Access Point. This value must match the number of IP addresses you provide.
- domainList
- Domain name list of the Local Access Point. The SDK resolves the IP addresses of the Local Access Point from the provided domain names. The domain resolution timeout is 10 seconds. Either
ipListordomainListmust be provided. If you specify both IP addresses and domain names, the SDK merges and deduplicates the resolved IPs and the specified IPs, then randomly connects to one IP for load balancing. - domainListSize
- Number of domain names for the Local Access Point. This value must match the number of domain names you provide.
- verifyDomainName
- Domain name for internal certificate verification. If left empty, the SDK uses the default verification domain
secure-edge.local. - mode
- Connection mode. See
LocalProxyMode. - advancedConfig
- Advanced options for the Local Access Point. See AdvancedConfigInfo.