Microsoft Internet Security and Acceleration Server 2000

FPCNetworkConfiguration.LAT Property

Gets a reference to an object for accessing the Local Address Table (LAT) configuration.The LAT is a table of all internal IP address ranges used by the internal network behind the ISA Server. ISA Server uses the LAT to control the way computers on the internal network communicate with external networks.

VBScript Syntax[VBScript]

[ collFPCLAT = ] FPCNetworkConfiguration.LAT

C++ Syntax[C++]

HRESULT get_LAT(
  IFPCLAT **pcollFPCLAT
);

Parameters

collFPCLAT
Reference to the FPCLAT collection.

The property is read-only.

Example

The following Visual Basic Scripting Edition code adds a new LAT entry to the FPCLAT collection.

Set objFPC  = CreateObject ("FPC.Root")
Set objNetConfig = objFPC.Arrays(1).NetworkConfiguration
Set objLAT = objNetConfig.LAT
ObjLAT.Add "2.2.2.2","3.3.3.3"
ObjLAT.Save

Applies To

FPCNetworkConfiguration

See Also

FPCLATEntry