Comments
-
The link will be created if CDP table on cisco device has a record about the other device. Some exact sample with SNMP walks from both devices will definitely help.
-
I just tried to play a bit with Nexus 9k and IP SLA operation was successfully detected and monitored in VNQM. However, Nexus 5k and 7k do not allow to create operations from the command line console. Can somebody confirm the same behavior?
-
This UDT vNext API · solarwinds/OrionSDK Wiki · GitHub should solve your task in the nearest future
-
Here's a pointer to some recent updates we've published:UDT vNext API · solarwinds/OrionSDK Wiki · GitHub
-
Just found workaround, create one request which sets Status to Used and second which updates DnsBackward.
-
Have you tried to perform this operation from Orion Console with the same user? I am still thinking about some bad defined permissions.
-
after HF2 applying the following DLL files should have version 4.6.5300.905: SolarWinds.IPAM.BusinessObjects.dll SolarWinds.IPAM.Storage.dll SolarWinds.IPAM.BusinessLayer.dll SolarWinds.IPAM.Collector.dll SolarWinds.IPAM.EventLogger.exe SolarWinds.IPAM.ScanningEngine.dll Here is a command line how to uninstall IPAM 4.6 HF1…
-
if your evaluation has expired, it is obvious to see message that it is expired. you can contact SolarWinds support about evaluation prolonging.
-
message "The given key was not present in the dictionary" means that some property, you have entered does not exists. in you case Status is valid property, but DNSBackward is not valid. Once you connect with SWQL studio, you can see list of all available fields in an entity. You need to remove DNSBackward from parameters…
-
I would perform the following steps for troubleshooting: - use SWQL studio (Releases · solarwinds/OrionSDK · GitHub ) for running the same query - try running queyry under normal Orion account - try playing with IPAM account permussions on account page.
-
do you use UDT 3.3 with HF2?
-
you can create Custom Query resource with SWQL query SELECT CallID, DateTime, DestCause, DestDeviceName, DestJitter, DestLatency, DestMOS, DestPacketLoss, DestCCMRegionName, Duration, OrigCause, OrigDeviceName, OrigJitter, OrigLatency, OrigMOS, OrigPacketLoss, OrigCCMRegionName FROM Orion.IpSla.VoipCalls
-
I tried to use the same code for updating IP status, and everyting works correctly. I would recommend you to take a look into SWIS logs for related errors here c:\ProgramData\SolarWinds\InformationService\v3.0\.
-
when you have alert for subnet, it pulls info from subnet. Just verified on simple alert
-
You must first create a record in IPAM.IPNodeAttr and than you can update it. Take a look at sample from IPAM 4.6 API · solarwinds/OrionSDK Wiki · GitHub New-SwisObject $swis -EntityType 'IPAM.IPNodeAttr' -Properties @{ IPNodeId = 1; } Set-SwisObject $swis -Uri 'swis://localhost/Orion/IPAM.IPNode/IpNodeId=1/Custom'…
-
It will be possible once exended APE support and IP overlappping are implemented https://thwack.solarwinds.com/docs/DOC-176183#start=50
-
IP node URI should be in format swis://MyBestHost/Orion/IPAM.IPNode/IpNodeId=67913
-
mesverrum, do you need any help with topic above or it can be closed?
-
UDT uses traps for detecting new learned MAC addresses on the network, but yes, still NPM or SAM are required for this
-
1. 2. 3. Drag Custom Table widget 4. Configure widget Remaining steps are pretty simple
-
Does it work in the same way when you download Hotfix Bundle for Products with Orion 2017.3 - includes IPAM 4.6 Hotfix 1?
-
which IPAM version do you use?
-
you can use already existing method GetFirstAvailableIp from IPAM API IPAM 4.6 API · solarwinds/OrionSDK Wiki · GitHub
-
You can try IPAM 4.7 RC1. It does not contain gray color anymore
-
Engineering team is aware of this "0.0.0.0" issue. KSS 9.6 RTM will have it fixed.
-
try registering with administrotor account
-
are you able to run the same query from PostMan with the same credentials?
-
you should have a view called IPAM_GroupNodeReportView Here is a SQL scripts for its creating IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[dbo].[IPAM_GroupNodeReportView]') AND OBJECTPROPERTY(id, N'IsView') = 1) BEGIN DROP VIEW [dbo].[IPAM_GroupNodeReportView] END GO CREATE VIEW…
-
I would recommend uprading to just released 4.6 version. Also asked query you can find in c:\Program Files (x86)\SolarWinds\Orion\Modules\IPAM.xml SELECT COUNT(ipNodeId) AS IpNodeCount FROM IPAM.IPNode AS N INNER JOIN (SELECT DISTINCT GroupId, GroupType, AddressN, AddressEnd FROM IPAM.GroupReport) AS G ON N.SubnetId =…