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

#4336
General Support / Re: automatic node name change
September 10, 2013, 09:30:42 AM
Hi!

"system name" is a node property, not a node object name in console. You have couple of options here:

1. if you have correct DNS records, you can turn on DNS node sync by setting server configuration variable SyncNodeNamesWithDNS to 1.

2. If you want to keep node name consistent with system name read from node, you can use the following hook script for configuration polls:


if (($node->snmpSysName != null) && ($node->snmpSysName != ""))
   RenameObject($node, $node->snmpSysName);


Best regards,
Victor
#4337
Hi!

Yes, you have to run configure and make again. There should be no risks, it will just build few additional binaries.

Best regards,
Victor
#4338
Общие вопросы / Re: NetXMS + DB Oracle
September 05, 2013, 07:52:41 PM
Вообщем баг в инсталлере - забыли положить oracle.ddr :) У вас 32 или 64 бита система?
#4339
Да, я пока первый ответ писал, подумал, что было бы удобно добавить скрипт для фильтрации узлов к автоматическим картам, наподобие фильтра для network discovery. Попробую сделать, по идее должно быть несложно. Тогда можно будет сделать карту L2 узлов из одной IP подсети.
#4340
Regarding duplicate IPs: check in console if these interfaces really have same IP addresses as some other interfaces.

Can you please run topology poll from console (Poll -> Topology from context menu on node) on any of switches where error "call to buildL2Topology on object 5008 failed" displayed and post output here?

Best regards,
Victor
#4341
General Support / Re: Netxmsd crashes
September 05, 2013, 07:44:47 PM
It depends on your system settings. Make sure that core dump generation turned on and check where core dumps are stored. There is a lot of instructions for Debian, for example this one: http://mtechease.blogspot.com/2011/10/core-dump-for-debian-mayank-chourey.html

Best regards,
Victor
#4342
Общие вопросы / Re: NetXMS + DB Oracle
September 05, 2013, 09:59:46 AM
Попробуйте просто ORCL в качестве TNSName, раз он прописан в tnsnames. Ну и запуск агента с дебагом прояснил бы ситуацию - вполне возможно что не выставлен например ORACLE_HOME и клиент не может нормально работать, или еще что-то (я писал выше как агента в дебаг режимне запустить).
#4343
Делаете новый объект Network Map с типом "IP Topology". В качестве seed объекта указываете любую ноду из етой подсети. В свойствах карты отмечаете "Include End Nodes" и "Custom discovery radius", discovery radius выставляете в 1. На карту будут автоматически добавлены все устройства из подсети, в которой находится seed узел.
#4344
General Support / Re: Netxmsd crashes
September 04, 2013, 03:52:21 PM
Hi!

Do you have core file left?

Best regards,
Victor
#4345
Hi!

If you install NetXMS from sources, you should add --with-client option to configure.

Best regards,
Victor
#4346
General Support / Re: Windows update checks
September 04, 2013, 03:50:34 PM
Hi!

No, there are no built-in check for Windows updates in agent. We was thinking about adding this, but it's quite complicated to check this from C, so we postpone it. Best solution is probably to creae some vps or power shell script and add it as external parameter to agent.
Btw, you can check that firewall, antivirus, and anti-spyware is active and up to date using the following parameters (provided by WMI subagent):

System.AntiSpywareProduct.Active
System.AntiSpywareProduct.DisplayName
System.AntiSpywareProduct.UpToDate
System.AntiVirusProduct.Active
System.AntiVirusProduct.DisplayName
System.AntiVirusProduct.UpToDate
System.FirewallProduct.Active
System.FirewallProduct.DisplayName
System.FirewallProduct.UpToDate

Best regards,
Victor
#4347
General / Re: Contributing code
September 04, 2013, 03:33:28 PM
Hi!

Thanks for the patch, I've applied it to the trunk.

Best regards,
Victor
#4348
Feature Requests / Re: chr() function request
September 04, 2013, 11:34:57 AM
Hi!

I've added NXSL functions chr() and ord() to 1.2.9 release.

Best regards,
Victor
#4349
Можно. Вы хотите строить автоматические карты или добавлять устройства на каждую карту руками?
#4350
General Support / Re: netxms hangs every 7-8 days
September 03, 2013, 10:02:55 AM
Hi!

Please enable crash dumps on the server (see this page for instructions: http://wiki.netxms.org/wiki/UM::Troubleshooting).
When server hangs next time, try to connect to it with nxadm tool and force server crash by entering command raise access. Then send resulting dump to me for analysis.

Best regards,
Victor