CA ARCserve Backup Dashboard for Windows 防火墙通讯配置

安装 CA ARCserve Backup 和 CA ARCserve Backup Dashboard for Windows 时,安装向导会配置 CA ARCserve Backup 服务器和客户端系统之间的防火墙通讯端口。

以下部分将说明文件名、位置、配置文件所需的语法以及客户端系统和 CA ARCserve Backup 服务器系统上使用的通讯端口。

客户端系统

客户端系统配置文件(标为 ClientConfig.xml)安装在客户端系统上的以下目录中:

[ARCSERVE_HOME]/ClientConfig.xml
语法

客户端系统配置文件需要使用以下语法:

<?xml version="1.0" encoding="utf-8" ?>
<service>
<primaryserver>LocalHost</primaryserver>
<username>caroot</username>
CA Portal6052</port>
</service>
CA ARCserve Backup 服务器系统

CA ARCserve Backup 服务器配置文件(标为 CA.ARCserve.CommunicationFoundation.WindowsService.exe.config)安装在以下目录中:

C:\Program Files\CA\ARCserve Backup
语法

CA ARCserve Backup 服务器配置文件需要使用以下语法:

<services>
<service name="CA.ARCserve.CommunicationFoundation.Impl.DBServicePInvokeImpl" behaviorConfiguration="DBServiceBehavior">
<host>
<baseAddresses>
<add baseAddress="net.tcp://localhost:6052/DBService"/>
</baseAddresses>
</host>
<endpoint binding="netTcpBinding" bindingConfiguration="BindingConfiguration" contract="CA.ARCserve.CommunicationFoundation.Contract.IDBService" address=""></endpoint>
</service>
<service name ="CA.ARCserve.CommunicationFoundation.Impl.AuthServiceImpl" behaviorConfiguration="AuthServiceBehavior">
<host>
<baseAddresses>
<add baseAddress="net.tcp://localhost:6052/AuthService"/>
</baseAddresses>
</host>
<endpoint address="" binding="netTcpBinding" bindingConfiguration="BindingConfiguration" contract="CA.ARCserve.CommunicationFoundation.Contract.IAuthService" />
</service>
</services>