How to configure Internet Security and Acceleration Server 2004 to skip name resolution in a Web proxy chaining configuration (891244)



The information in this article applies to:

  • Microsoft Internet Security and Acceleration Server 2004, Standard Edition

INTRODUCTION

In Microsoft Internet Security and Acceleration (ISA) Server 2004, you may experience poor performance when the downstream proxy cannot resolve the Internet names of your requests.

Note The downstream proxy is the first proxy in a Web proxy chaining configuration.

This article discusses how to configure ISA Server to skip name resolution a Web proxy chaining configuration.

MORE INFORMATION

You can configure ISA Server to skip name resolution by setting the SkipNameResolutionForAccessAndRoutingRules COM property to TRUE. To do this, follow these steps:
  1. Copy the following Visual Basic script to a text editor, such as Notepad. Then save the file to your local ISA Server-based computer by using a .vbs file name extension.
    ' Create the root object
    Dim root  ' The FPCLib.FPC root object
    Set root = CreateObject("FPC.Root")
    
    ' Declare the other objects needed.
    Dim isaArray     ' An FPCArray object
    Dim webProxy     ' An FPCWebProxy object
    Dim restartMask  ' A 32-bit bitmask of type FpcServices
    
    ' Get references to the array object
    ' and the Web proxy object. 
    Set isaArray = root.GetContainingArray()
    set webProxy = isaArray.ArrayPolicy.WebProxy
    
    ' Configure the Web proxy to skip name resolution
    ' while checking access and routing rules and save
    ' the new configuration. 
    webProxy.SkipNameResolutionForAccessAndRoutingRules = True
    restartMask = webProxy.GetServiceRestartMask
    webProxy.Save
    
    ' Restart the firewall service so that
    ' the change will take effect.
    isaArray.RestartServices restartMask
    
  2. Click Start, click Run, type cmd, and then click OK.
  3. At the command prompt, change to the folder that contains the .vbs file that you saved in step 1, type cscript Your_ISA_Script.vbs, and then press ENTER.

    Note Your_ISA_Script is a placeholder for the name of the file that you saved in step 1.

REFERENCES

For additional information about the SkipNameResolutionForAccessAndRoutingRules COM property, visit the following Microsoft Web site:

Modification Type:MinorLast Reviewed:2/9/2005
Keywords:kbhowto kbtshoot kbprb KB891244 kbAudDeveloper