Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Nortel CS1000 ACD output to PC

Status
Not open for further replies.

cirah

Technical User
Oct 5, 2014
3
AU
Hi,

Could you please advise what software to use to run & capture ACD output via serial connection at 6pm everyday?

Thanks,
Hari
 
Hi Supernn,

To manually get the ACD report i use putty, but to programm it to run the command & save the report i need some advise.

Thanks,
Hari
 
At the moment im just doing the same things that you found in the google.
Could you please provide the script for ZOC to automate the command to run ACD report?

Thanks for your help supernn.
 
Sorry for the late reply... we do not use ACD reporting, but a normal script in ZOC is like:
/****************/
ZocTimeout 10
CALL ZocLogname "ACDCapture.log"
CALL ZocLogging 1
CALL ZocCommand CLS
CALL ZocConnect "Servername:port"

CALL ZocDelay 3
CALL ZocSend "^M"
CALL ZocSend "****^M"
CALL ZocSend "loio^M"

name= "loii XXXX^M" /*insert your username here*/
pass= "YYYYYYY^M" /*insert your password, not safe but you can encrypt the script when ready*/

CALL ZocWait ">"
CALL ZocSend name

CALL ZocWait "PASS?"
CALL ZocSend pass

CALL ZocWait ">"
CALL ZocSend "LD 20^M"

CALL ZocWait "REQ:"
etc
/****************/
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top