I use curl to send this to CUCM - seems to be the simplest way from a *nix machine. curl -s -k -u username:password -H 'Content-type: text/xml;' -H 'SOAPAction: "CUCMB ver=6.0"' -d @filename.xml https://x.x.x.x:/perfmonservice/services/PerfmonPort > resultfile.txt So here we are pulling system perfmon object for "Number of Replicates Created and State of Replication" by querying perfmonservice/services/PerfmonPort http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/service/8_5_1/rtmt/rtpmsys.html#wp1058441 once run you can take resultfile.txt and extract the replicate_state value: awk -F '>' '/Replicate_State/ { print "Replicate_State of SERVERNAME " $18> "outfile.txt"}' resultfile.txt resultfile.txt contains the xml response from cucm outfile.txt will look like: Replicate_State of SERVERNAME 2 You can string these together to create an output file with replication state for each server in the cluster and make the whole thing a cron job - I use CLI mutt to send myself a daily email with replication state for the cluster. You can use similar methods for any system or CUCM perfmon objects.
Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community: