共用方式為


定義 Edge Server 輸入檔案

 

上次修改主題的時間: 2011-04-05

在 Microsoft Office Communications Server 2007 R2 中,Edge Server 資訊未儲存在 WMI 中。因此,Merge-CsLegacyTopology Cmdlet 無法擷取您 Edge Server 的相關資訊。若您的 Office Communications Server 2007 R2 需要進行移轉,則必須建立含有舊版 Edge Server 資訊的自訂 XML 檔案。若要執行此作業,建議您複製所附加之範例的程式碼,並修改相關參數,使其符合您的部署。此程式碼的複本 (input.xml) 會併入 [移轉] 資料夾中。如需參數的詳細說明,以及編寫 Edge Server 輸入檔案的詳細資料,請參閱<建立自訂 Edge Server 輸入檔案>。

<?xml version="1.0" encoding="utf-8"?>
<TopologyInput xmlns = "urn:schema:Microsoft.Rtc.Management.Deploy.LegacyUserInput.2008"  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<EdgeClusters>
   <EdgeCluster AP="true" MR="true" DP="true" Version="OCS2007R2" FederationEnabled="true">
   <LoadBalancer InternalFqdn="edgeint.fqdn" ExternalDPFqdn="externalDP.fqdn" />
   <Machines>
      <Machine InternalFqdn = "node1.fqdn"/>
      <Machine InternalFqdn = "anothernode1.fqdn"/>
   </Machines>
   <Ports InternalAPPort="5061" InternalDPPort="8057" ExternalDPPort="443" />
   <DirectorOrEdgeNextHop Fqdn="director.fqdn.com" IsDirector="true" />
   </EdgeCluster>
</EdgeClusters>
   <RegistrarClusterPort EnableAutoDiscoveryOfPorts = "false" Port="5061" /> 
</TopologyInput>

若為合併的 Edge Server

編輯上節所述的 input.xml 檔,並進行下列清單的變更:

  • edgeint.fqdn 取代為 Office Communications Server 2007 R2 Edge Server 內部 FQDN。

  • externalDP.fqdn取代為 Office Communications Server 2007 R2 Edge Server 外部資料 Proxy FQDN。

  • node1.fqdn 取代為 Office Communications Server 2007 R2 Edge Server 內部 FQDN。

  • anothernode1.fqdn 取代為其他 Office Communications Server 2007 R2 Edge Server 內部 FQDN。

  • director.fqdn.com 取代為 Director 或 Office Communications Server 2007 R2 Edge Server 的下一個躍點集區。

  • 設定 AP="true"MR="true"DP="true"

  • 設定 FederationEnabled="false" (若您不打算使用舊版 Edge Server 進行同盟的話)。