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 ipList or domainList must be provided.
ipListSize
Number of internal IP addresses for the Local Access Point. Must match the number of IPs you provide.
domainList
Domain name list of the Local Access Point. The SDK resolves the IPs of the Local Access Point based on the domains you provide. DNS resolution timeout is 10 seconds. Either ipList or domainList must be provided. If both are provided, the SDK merges and deduplicates the resolved and provided IPs, and randomly selects one for load balancing.
domainListSize
Number of domain names for the Local Access Point. Must match the number of domains you provide.
verifyDomainName
Domain name used for internal certificate verification. If left empty, the SDK uses the default domain secure-edge.local.
mode
Connection mode. See LocalProxyMode.
advancedConfig
Advanced options for the Local Access Point. See AdvancedConfigInfo.