Microsoft Knowledge Base Email Alertz

KBAlertz.com: (896073) - Describes how to to explicitly set a specific network adapter for cluster communication on a member server in Application Center 2000.

Receive Microsoft Knowledge Base articles by E-Mail?

Every night we scan the Microsoft Knowledge Base. If technologies you're interested in are updated, we'll send you an e-mail. You only get one e-mail a day, and only when new articles are added.

Click here to create a
FREE account
Already have an account?
[Click here to Login]

Search KbAlertz

Advanced Search

Webmasters
Put kbAlertz on your website.
[ Click Here for more! ]





ASP.NET 3.5 Web Hosting with Windows 2008 and SQL 2008: Click Here!
Discount ASP.NET Hosting
ASP.NET 2.0 and 3.5
Windows2008 and SQL2008
US and UK Hosting
The ad says 3 - but KBAlertz referrals get
** SIX MONTHS FREE **


Bug Tracking Software
For bug tracking software or defect tracking software or issue tracking software, visit Axosoft.


Community Site



We Send hundreds of thousands of emails using ASP.NET Email



Expert Web Design & Graphic Design
Design44.com

ASP.NET 3.5 Web Hosting with Windows 2008 and SQL 2008: Click Here!
Discount ASP.NET Hosting
ASP.NET 2.0 and 3.5
Windows2008 and SQL2008
US and UK Hosting
The ad says 3 - but KBAlertz referrals get
** SIX MONTHS FREE **




Mentioned In








Microsoft Knowledge Base Article

This article contents is Microsoft Copyrighted material.
©2005-©2007 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks




Article ID: 896073 - Last Review: March 30, 2005 - Revision: 1.2

How to explicitly set a specific network adaptor for cluster communication on a member server in Application Center 2000

Important This article contains information about editing the metabase. Before you edit the metabase, verify that you have a backup copy that you can restore if a problem occurs. For information about how to do this, see the "Configuration Backup/Restore" Help topic in Microsoft Management Console (MMC).

INTRODUCTION

This article describes how to explicitly set a specific network adaptor for cluster communication on a member server. You set the network adaptor after the member server has been added to a Microsoft Application Center 2000 cluster.

MORE INFORMATION

Warning If you edit the metabase incorrectly, you can cause serious problems that may require you to reinstall any product that uses the metabase. Microsoft cannot guarantee that problems that result if you incorrectly edit the metabase can be solved. Edit the metabase at your own risk.

Note Always back up the metabase before you edit it.

When you add a member server to an existing Application Center 2000 cluster or when you create a cluster controller, Application Center 2000 determines which network adaptors are used for client communication and which network adaptors are used for cluster communication on the member server.

The cluster communication network is for used for internal cluster communication. This network should be separate from the client communication network. The client communication network provides application services to clients such as HTTP and Microsoft COM+.

Application Center assigns a unique GUID to each network adaptor on the member server. Assigning unique GUIDs enables Application Center to determine which network adaptor will be used to communicate with clients or with other cluster members.

The list of GUIDs that are assigned to the cluster communication network is maintained in the Microsoft Internet Information Services (IIS) metabase.

Depending on your network infrastructure, you may have to change the internal cluster communication network adaptor list. Because there is no user interface to edit this list, you must use a tool such as MetaEdit or Mdutil if you want to change the list.

You can use one of the following methods to determine which network adaptors that Application Center is using for cluster communication.
  • Use the Mdutil.exe utility that is located in the Support folder on the Application Center 2000 CD-ROM to interrogate the list that is stored in the metabase. To do this, follow these steps:
    1. Click Start, click Run, type cmd, and then click OK.
    2. At the command prompt, type the following command, and then press ENTER.
      mdutil get /AppCenter/Server -prop 57447
  • You can also perform a Microsoft Windows Management Instrumentation (WMI) query to determine the GUIDs of your network adaptors. To do this, run the following Microsoft Visual Basic script.
    Dim IPConfigSet
       Dim strNIC
       Dim CRLF 
    
       CRLF = CHR(10) & CHR(13)
    
       ' Perform a WMI query to obtain information about the network adaptors that are bound to IP and that have a physical MAC address.
       Set IPConfigSet = _
          GetObject("winmgmts:").ExecQuery _
             ("Select * from Win32_NetworkAdapterConfiguration Where ((IPEnabled = TRUE) And (MacAddress != NULL) And (SettingID != NULL))")
    
       ' Enumerate the results (list of NICS).
       For Each IPConfig In IPConfigSet
          If Not IsNull(IPConfig.IPAddress) Then
             strNIC = _
                "Caption: " & IPConfig.Caption & CRLF & _
                "Description: " & IPConfig.Description & CRLF & _
                "NIC GUID: " & IPConfig.SettingID
             For i = LBound(IPConfig.IPAddress) To UBound(IPConfig.IPAddress)
                strNIC = strNIC & CRLF & "IP Address (" & CStr(i) & "):" & IPConfig.IPAddress(i)
             Next 'i
             Wscript.Echo strNIC
          End If
       Next 'IPConfig
    
To change the network adaptor that is used for cluster communication, type the following command at a command prompt:

mdutil set /AppCenter/Server -prop 57447 -value "{GUID of network adaptor 1},{GUID of network adaptor 2}
When you replace GUID of network adaptor 1 and GUID of network adaptor 2 with the actual GUIDs, the command would look similar to the following:
mdutil set /AppCenter/Server -prop 57447 -value {6628EE2A-8DFD-4782-83C8-982CE377D9FF},{ECAC57F1-203B-47f1-8FE4-BA0AE16DA2C3}

REFERENCES

For more information about the IIS metabase, click the following article number to view the article in the Microsoft Knowledge Base:
240941  (http://kbalertz.com/Feedback.aspx?kbNumber=240941/ ) An introduction to the IIS metabase
For more information about the Adsutil and MetaEdit utilities , click the following article number to view the article in the Microsoft Knowledge Base:
240225  (http://kbalertz.com/Feedback.aspx?kbNumber=240225/ ) Description of Adsutil and MetaEdit utilities used to modify the metabase

APPLIES TO
  • Microsoft Application Center 2000 Standard Edition, when used with:
    • Microsoft Windows Server 2003, Standard Edition (32-bit x86)
    • Microsoft Windows Server 2003, Enterprise Edition (32-bit x86)
    • Microsoft Windows Server 2003, Datacenter Edition (32-bit x86)
    • Microsoft Windows 2000 Datacenter Server
    • Microsoft Windows 2000 Advanced Server
Keywords: 
kbtshoot kbinfo KB896073
       

Community Feedback System

Very often, it takes hours to solve a problem. Very often, you've looked high and low, and have tried a lot of solutions. When you finally found it, chances are, it was because someone else helped you. Here's your chance to give back. Use our community feedback tool to let others know what worked for you and what didn't.

Please also understand that the community feedback system is not warranted to be correct, it's simply a system that we've built to let people try and help each other. If something in a feedback response doesn't make sense to you, or you're not comfortable making changes that the feedback talks about (like registry edits), please consult a professional.

Thank you for using kbAlertz.com Feedback System.

-- Scott Cate

Be the first to leave feedback, to help others about this knowledge base article.

(Optional) Name

(Optional) Public URL Or Email

Comments
No HTML -- Text Only Please