3 more videos added to the Basics series.
Now taking requests for topics to be covered in the Advanced series!
Now taking requests for topics to be covered in the Advanced series!
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menuping %OBJECT_IP_ADDR%ping 1.2.3.4ping %CUSTOM_ATTR_NAME%Quote from: volkoff on January 24, 2015, 07:41:37 PM
This one is much more serious:
I can't create or delete DCI.
History:
I tried to play with SNMP's table DCI, but wasn't successful. Later we'll get back to that
But I created one for the node (printer). And since that I can't create or delete DCI. Looks like after "sync" period something breaks, sync thread stops answering to watchdog and I can't connect with console.
So, my opinion - something is wrong in sync thread.
Error is 100% reproducible, so I can supply you with any kind of data.
DB is SQLite, Windows server 2008 R2, but since data is accumulated correctly I do believe something is wrong in sync thread (or with SQLite).
Quote from: VMGuy on January 19, 2015, 09:37:47 PM
So, today I installed a new 2.0-M1 system and found out this:
...
Tried several times and always the same.
Thanks, VMGuy
Quote from: Alex KirhenshteinLogin as admin, right click on any object (node / container / object root like "Entire Network" / etc.) in the tree, select properties and set permissions for the user. By default, permissions are propagated to child objects unless you implicitly disable inheritance in object's access control.
return $1 * 8;transport = CreateSNMPTransport($node);
if (transport == null)
return false;
// get the interface name to return as instance-name
vb = SNMPGet(transport, ".1.3.6.1.2.1.31.1.1.1.1." . $1);
if (vb == null)
return false;
// filter out loopback
if (vb->value == "lo")
return false;
return %(true, $1, vb->value);
