Microsoft Internet Security and Acceleration Server 2000 |
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.
[ collFPCLAT = ] FPCNetworkConfiguration.LAT
HRESULT get_LAT( IFPCLAT **pcollFPCLAT );
The property is read-only.
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