This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Old / Stale MAC addresses in UDT

FormerMember
FormerMember

Hey all, I am trying to clean up our UDT database and I am wondering if any of you know of a good way to get a report on MAC addresses that have a "Last seen" date of a month or older.

Even if I could get a pointer of where that information is location in the database is, I could do a query there and that would help too.

Thanks everyone for your time.

  • A query like this will give you info about the historical connections of you MACs

    SELECT TOP (1000)

    ep.MACAddress,

    poeh.[FirstSeen]

          ,poeh.[LastSeen]

          ,poeh.[PortID]

          ,poeh.[EndpointID]

          ,poeh.[VlanID]

          ,poeh.[ConnectionType]

          ,poeh.[ID]

      FROM UDT_PortToEndpointHistory poeh

      Inner join UDT_Endpoint ep on poeh.EndpointID = ep.EndpointID