Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
Hello, Group. I am attempting to apply a custom KAL script on a service, which will do the following:1. Do a TCP connection to host A on port 8080.2. Do a TCP connection to host B on port 8080.3. Ping host C.If any of the above fail, the service shou...
Gilles, Thanks for the reply. Here is the script I have come up with:set HOSTA "${ARGS}[1]"set HOSTB "${ARGS}[2]"set HOSTC "${ARGS}[3]"socket connect host ${ARGS}[1] port 8080 tcp set CONTINUE_ON_ERROR "1"set SOCKET-STAT "${STATUS}" set CONTINUE_ON_E...