September 2003
Intermediate to advanced
624 pages
15h 49m
English
You want to set a preferred bridgehead server for a site.
Open the Active Directory Sites and Services snap-in.
In the left pane, expand Sites, expand the site
where the server you want to set as a bridgehead is contained and
expand the Servers container
Right-click on the server you want to set as the bridgehead and select Properties.
Highlight IP, SMTP, or both, pertaining to the protocol(s) for which you want the server to be a bridgehead.
Click the Add button.
Click OK.
Create an LDIF file called set_bridgehead_server.ldf with the following contents:
dn: cn=<DCName>,cn=servers,cn=<SiteName>,cn=sites,cn=configuration,<ForestRootDN> changetype: modify add: bridgeheadTransportList bridgeheadTransportList: cn=IP,cn=Inter-site Transports,cn=sites,cn=configuration,<ForestRootDN> -
then run the following command:
> ldifde -v -i -f set_bridgehead_server.ldf
' This code sets a preferred bridgehead server for a particular transport ' ------ SCRIPT CONFIGURATION ------ strServer = "<DomainControllerName>" ' e.g. dc1 strServerSite = "<SiteName>" ' e.g. Default-First-Site-Name strTransport = "<TransportName>" ' e.g. either IP or SMTP ' ------ END CONFIGURATION --------- set objRootDSE = GetObject("LDAP://RootDSE") set objServer = GetObject("LDAP://cn=" & strServer & ",cn=Servers,cn=" & _ strServerSite & ",cn=sites," & _ objRootDSE.Get("configurationNamingContext") ...