alphatest404

Comments

  • Hi, The following SQWL code will help you retrieve LLDP information: SELECT RemoteSystemName as [System Name],LocalPortNumber as [Local Interface], RemotePortId as [Chassis Id], RemotePortDescription as [Remote Port Info], RemoteIpAddress as [Remote IP Address] FROM Orion.NodeLldpEntry WHERE NodeID = ${NodeID} order by…
  • Here is my CDP SQWL which I use. You can just copy and paste it to a table. SELECT RemoteDevice AS Device,N.DetailsURL AS [_LinkFor_Device], CDP.Interfaces.InterfaceName AS [Local Interface], RemotePlatform AS [Remote Platform],RemotePort AS [Remote Interface], RemoteIPAddress AS [IP Address] FROM NCM.CiscoCdp CDP JOIN…