I'd like a report on all IP addresses which show up in Node Details view which are below the POLLING IP ADDRESS.
Is there any way to make this report?
I am also interested in this report.
Yes. ;-)
a) gut yourself a copy of SWQL studio from the SDK
b) write a query the returns the correct values from Orion.NodeIPAddresses and Orion.Nodes
select blah, blah. blah
from Orion.NodeIPAddresses NI inner join Orion.Nodes N
on NI.Nodeid=N.Nodeid
where blah blah blah are the columns you want in your report.
note: I do not know how useful this report would be.