Has this ever been addressed or resolved?
So without buying another add-on, I cannot see my interface IP addresses?
Not really. Orion is monitoring the management IP you choose for your devices. It's not designed to "inventory" per say all the router IPs in a particular box. That's why they created Cirrus as a companion tool. It has the inventory piece, etc.BB
I understand what you are saying, but I dont know if it makes sense.. I can dig into the interface details which shows all sorts of information, bandwidth, errors etc.. The only thing it doesnt show is the ip address. I cannot imagine buying an addon just for that 1 thing. Am I crazy here?
Why don't you put the IP in the description on the router interface? Orion will pull the description field and then you will have that information.
It's not possible because i use the Descrition to another information, such was my internal circuit reference and other things
I can't believe this hasn’t been added yet and it seems like the topic has just been dropped. I haven’t been able to find anything on it within the last year.
This feature is on our list of things to add into the product in the future, but I don't have a planned timeframe to give you
Not sure if this will help anyone but I wrote a SQL query to get the data needed for IP addresses. Note that I have a unique identifier for the interfaces I care about returning the IP address back. Use the "1.3.6.1.2..4.20.1.2" OID so that you can extract the index # off the router as 'Status' and the RowID on the CustomPollerStatus table will be the IP address of that Index #. Enjoy.
SELECT
Nodes.Caption AS "Host Name",
Nodes.NodeID,
Interfaces.InterfaceID,
Interfaces.InterfaceName AS Interface,
CustomPollerStatus.CustomPollerAssignmentID,
CustomPollerStatus.Status AS "Index #",
CustomPollerStatus.RowID AS "IP Address",
CustomPollerAssignment.CustomPollerID
FROM
(Nodes INNER JOIN Interfaces ON (Nodes.NodeID = Interfaces.NodeID)
Inner Join CustomPollerAssignment ON (Interfaces.NodeID = CustomPollerAssignment.NodeID)
Inner Join CustomPollers ON (CustomPollerAssignment.CustomPollerID = CustomPollers.CustomPollerID)
Inner Join CustomPollerStatus ON (CustomPollerAssignment.CustomPollerAssignmentID = CustomPollerStatus.CustomPollerAssignmentID)
)
WHERE
((Interfaces.*CustomProperty* LIKE '%Criteria%') AND
(Interfaces.InterfaceIndex = CustomPollerStatus.Status) AND
(CustomPollers.UniqueName = 'ipAdEntIfIndex'))
ORDER BY [Host Name] ASC