Menu

Show posts

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 Menu

Messages - Victor Kirhenshtein

#256
Announcements / Meet us at GITEX -- Hall 2, stand H2-60
October 10, 2022, 11:25:06 AM
We' re at Gitex, Dubai, as we're writing this. Are you planning on being here too? Come to our stand (we' re exhibiting on Latvia' s national stand in Hall 2) and let's catch up!
#257
Hi,

something like this:
result = "";
for(i = 0; i < 8; i += 2)
{
  if (result->length > 0)
      result .= ".";
  result .= x2d($1[i : i + 2]);
}
return result;

This script assumes that 8 hex digits passed as input.

Best regards,
Victor
#258
Do you get exception in web or desktop UI? Please find console log (for desktop it is in your home directory in .nxmc/data/.metadata/.log) and post it here.

Best regards,
Victor
#259
General Support / Re: New Server
September 07, 2022, 08:37:06 PM
Hi,

if database is external to the server, then yes, the only thing you need is to point new server to existing database. If database is on the same machine, and you plan to use new database, then database migration will help. Search the forum for "nxdbmgr migrate" - you should get few topics regarding database migration.

Best regards,
Victor
#260
Quote from: adarsh031 on September 05, 2022, 12:26:44 PM
ALCATEL-NMC-PROXY-AGENT-MIB: ERROR 002: Import module "HPOV-NNM-MIB" unresolved

Are you sure that HPOV-NNM.txt was included into compilation?
#261
General Support / Re: JSON NXSL
September 06, 2022, 12:54:23 PM
This message indicates that agent was built with libcurl without bearer authentication support. On what platform you run agent and how did you install it?
#262
Could you please share output of command

nddload -c community -n JUNIPER -V path_to/juniper.ndd 10.5.4.2

Replace path_to/juniper.ndd with actual path to juniper.ndd (if installed from packages it likely will be /usr/lib/netxms/ndd) and community with actual community string.
#263
Feature Requests / Re: Dci alert on out of normal range
September 05, 2022, 10:01:34 AM
Hello,

currently not, but we definitely plan to move in that direction.

Best regards,
Victor
#264
Feature Requests / Re: Documentation Changes
September 05, 2022, 09:59:11 AM
That's good idea, we will add such banner.

Best regards,
Victor
#265
Remove , at the end of line 51:

   cacOverrun INTEGER,

should become

   cacOverrun INTEGER

Best regards,
Victor
#266
General Support / Re: Manual Binding not working
September 05, 2022, 09:56:50 AM
Hi,

it is legacy or new UI? It could be that binding not yet moved to new UI.

Best regards,
Victor
#267
You should put either %a (to use IP address) or #%i (to refer to current node by ID) in "remote host" field.

Best regards,
Victor
#268
General Support / Re: Cannot load mysql subagent
September 05, 2022, 09:49:10 AM
Hello,

most likely mysql.ddr cannot find MySQL client libraries. Please check if they are in the PATH.

Best regards,
Victor
#269
Hello!

It is possible that server selected generic driver for this node. Check this in object overview, and if it is the case, try to force use of Juniper driver by adding custom attribute snmp.driver to value JUNIPER. Run cionfiguration poll andf check if VLANs are correctly detected.

Best regards,
Victor
#270
Hi,

this is very strange. I just compared process execution and external parameter handling code in 3.9 and 4.1 and the only difference is that in 4.x agent replaces null characters with spaces in received command output. Theoretically if script returns null character in first line that could cause such difference in behavior.

Best regards,
Victor