It might be helpful, for maintenance purposes, to have a list of outstations with their respective IP Addresses. Below are two queries that can be used to generate such lists for DNP3 Generic points and Modbus – Advanced Generic Direct Outstations, respectively:
SELECT
O.ID, O.FULLNAME, N.ADDRESS
FROM
CDNP3OSDIRECT AS O CROSS JOIN CSINGLENETWORK AS N
WHERE
O.ID = N.ID
ORDER BY
"FullName" ASC
-----------------------------------------------
SELECT
O.ID, O.FULLNAME, N.ADDRESS
FROM
CGENERICMODBUSOSDIRECT AS O CROSS JOIN CSINGLENETWORK AS N
WHERE
O.ID = N.ID
ORDER BY
"FullName" ASC
Please note that similar queries can be used to generate lists for other drivers. Proper tables for each driver can be found by using the Database Schema. More information on how to use the Database Schema can be found int the manual.