How to get the IP address of DMA via automation script
eric septier Selected answer as best 25th April 2025
Hi Eric,
The IP address of the DMA can be retrieved in an automation script using the following property: https://docs.dataminer.services/develop/api/types/Skyline.DataMiner.Net.ServerDetails.AgentIP.html#Skyline_DataMiner_Net_ServerDetails_AgentIP
Example:
string ip = Engine.SLNetRaw.ServerDetails.AgentIP;
eric septier Selected answer as best 25th April 2025
Thank you Tom, it works perfectly.