Previous Topic: GUI Managing the Base ProductNext Topic: Additional Resources - Firewall Ports Specifications


Arcserve Backup Dashboard for Windows Firewall Communication Configuration

The installation wizard configures the firewall communication ports between Arcserve Backup server and the client system when you install Arcserve Backup and Arcserve Backup Dashboard for Windows.

The sections that follow describe the file names, locations, and required syntax for the configuration files, and the communication ports used on the client system and the Arcserve Backup server system.

Client System

The client system configuration file, labeled ClientConfig.xml, is installed in the directory that follows on the client system:

[ARCSERVE_HOME]/ClientConfig.xml
Syntax

The client system configuration file requires the syntax that follows:

<?xml version="1.0" encoding="utf-8" ?>
<service>
<primaryserver>LocalHost</primaryserver>
<username>caroot</username>
<port>6052</port>
</service>
Arcserve Backup Server System

The Arcserve Backup server configuration file, labeled CA.ARCserve.CommunicationFoundation.WindowsService.exe.config, is installed in the directory that follows:

C:\Program Files\CA\ARCserve Backup
Syntax

The Arcserve Backup server configuration file requires the syntax that follows:

<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>