How to bind CA Workload Automation agent to only one IP?
search cancel

How to bind CA Workload Automation agent to only one IP?

book

Article ID: 22062

calendar_today

Updated On:

Products

CA Workload Automation AE - Business Agents (AutoSys) CA Workload Automation AE - Scheduler (AutoSys) Workload Automation Agent DSERIES- SERVER CA Workload Automation DE - System Agent (dSeries)

Issue/Introduction

If a host has several NIC or Ethernet interfaces configured, then how do you configure the agent to listen to only one particular interface?

 

 

Environment

Release: Any
Component: Workload Automation System Agent

Resolution

When a host or operating system has several network interfaces (NIC's), the agent will by default bind itself to all the interfaces.

The following command will provide information on interfaces that agent binds itself to:

  • UNIX/Linux:   netstat -na | grep 7520
  • Windows:      netstat -na | FINDSTR 7520

    Note: 7520 is the default port that agent uses, this can be changed to any other port. Substitute appropriate port in the above commands.

The output of the above commands will look something like the following:

tcp        0      0 :::7520      :::*         LISTEN

This example shows that the agent is binding itself to all available interfaces. To restrict the binding to only one interface, add the following parameter in the agentparm.txt of the agent and restart the agent.

communication.bindaddress=<IP address>

Run the above mentioned netstat commands again, the output will be something similar to following line.

tcp        0      0 :7520        :::*         LISTEN