Quantcast
Channel: THWACK: Message List
Viewing all articles
Browse latest Browse all 21093

Re: Way to join Bridge and ARP tables?? Need to build "where is this host?" type of reports

$
0
0

For the new integrated tables, here's the new query.  I'm curious if somebody can define the difference between the result set under MACHolder alias and ARPHolder alias?

 

 

 

SELECT

N.SysName MACHolder,

I.InterfaceName,

I.InterfaceAlias,

MF.MAC,

A.IPAddress,

A.RDNSLookup,

N1.SysName ARPHolder,

MF.Source,

A.Source

 

FROM NCM_Nodes N

INNER JOIN NCM_Interfaces I on N.NodeID = I.NodeID

INNER JOIN NCM_BridgePorts BP on BP.NodeID = N.NodeID and BP.InterfaceIndex = I.InterfaceIndex

INNER JOIN NCM_MACForwarding MF on MF.NodeID = N.NodeID and MF.Port = BP.Port

LEFT JOIN NCM_ARPTables A on MF.MAC = A.MAC

INNER JOIN NCM_Nodes N1 on N1.NodeID = A.NodeID

 

WHERE N.SysName = 'YourDeviceSysname' and MF.Source = 'Learned'  and A.Source != 'Static'

 

ORDER BY N.SysName, I.InterfaceIndex, MF.MAC


Viewing all articles
Browse latest Browse all 21093

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>