CAM routing configuration in a firewall environment.
search cancel

CAM routing configuration in a firewall environment.

book

Article ID: 53940

calendar_today

Updated On:

Products

CA Client Automation CA Client Automation - IT Client Manager

Issue/Introduction

Explains *ROUTING configuration restrictions in the file cam.cfg.

 

Environment

Client Automation - All versions

Resolution

In a firewall environment where you need to configure CAM to route traffic through a proxy outside the firewall you must ensure that an IP address range or IP address is specified only once when configuring the *ROUTING section in the cam.cfg file. The reason for this is that any entries that follow which contain the same IP address range or IP address will not be taken into account.

Bad example:

  *ROUTING
  forward nodename1 = 192.0.2.20 203.0.113.5 198.51.100.25
  forward nodename2 = 198.51.100.25 192.0.2.21 203.0.113.6

Good example:

   *ROUTING
   forward nodename1 = 192.0.2.20 203.0.113.5
 forward nodename2 = 198.51.100.25 192.0.2.21 203.0.113.6

In the bad example the appearance of the address 198.51.100.25 causes the problem because through nodename1, routing is not possible and routing for nodename2 is not processed because only the first occurrence of the address in the cam.cfg file is followed.