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

#6646
A kakaja operacionka stoit na problemnih nodah?
#6647
U menja k sozaleniju net sejchas pod rukoj NetWare'a dlja testov, poetomu sobral agenta s podderzkoj XML, no ne testiroval. Poprobujte zapustit' vot etu versiju - https://www.netxms.org/download/rc/nxagent-0.2.31-rc1-netware.tar.gz. Teoreticheski dolzno vse zarabotat'.
#6648
Pohoze problema ta-ze chto - zdes' opisana - https://www.netxms.org/forum/index.php/topic,753.0.html - t.e. reshilas' zamenoj code page'a na 1251?
#6649
I'll check it and post updated package.

Best regards,
Victor
#6650
General Support / Re: db driver about oracle
October 29, 2009, 10:49:55 AM
Hi!

Try to install Oracle Instant Client and use it for compilation.

Best regards,
Victor
#6651
Hello!

You should take binary package for IPSO. Latest available version is 0.2.23 at https://www.netxms.org/download/archive/agent_packages/nxagent-0.2.23-ipso.apkg. If you run it as


nxagent-0.2.23-ipso.apkg prefix=/opt/netxms


it should install agent under /opt/netxms. I'll also built 0.2.31 version for IPSO.

Best regards,
Victor
#6652
Po kakim-to prichinam bilo otkrito mnogo sessij na agent, kotorie ne zakrivalis' po time-out'u. Eto mozet bit' bug v agente. Esche takoe mozet sluchitsja, esli agent ispol'zuetsja kak proxy libo dlja proverki otkritih portov subagentom portcheck.nsm. Esli ispol'zuetsja portcheck ili proxy, to luchshe uvelichit' kolichestvo sessij - znachenie po umolchaniju 32, mozno poprobovat' podnjat' do 100. Esli portcheck ili proxy ne ispol'zujutsja, to pohoze na bug (ili kto-to dejstvitel'no postojanno podkljuchaetsja k agentu, setevoj skaner naprimer). Esli situacija povtoritsja, prishlite pozalujsta rezul'tat komandi netstat -an i konfig agenta.
#6653
Dlja NetWare toze est' agent, i on podderzivaet parametri File.Size i File.Count. V novoj versii pojavitsja takze parametr File.Count s viborkoj po razmeru i vremeni modifikacii.
#6654
Dobrij den'!

Znachenie peremennoj counter mozno vstavit' v stroku vot tak:

CUSTOM_MESSAGE="Interface Ethernet0/" . counter . " changed state to DOWN";

A sam skript mozno sokratit' do

sub main()
{
   CUSTOM_MESSAGE = "Interface Ethernet0/" . int32(($2 - 386) / 128) . " changed state to DOWN";
   return 1;
}

ili, esli trebuetsja proverka chto $2 - eto 386 + chislo, kratnoe 128, i ne previshaet 3458, to:

sub main()
{
   if (($2 >= 3458) || (($2 - 386) % 128 != 0))
      return 0;
   CUSTOM_MESSAGE = "Interface Ethernet0/" . int32(($2 - 386) / 128) . " changed state to DOWN";
   return 1;
}
#6655
General Support / Re: Unable to restart nxagentd
October 27, 2009, 09:59:16 PM
Yes, version of the agent can be different. So far, any server version in 0.2.x branch can work with any agent version, including very old 0.1.x version agents.

Best regards,
Victor
#6656
Hello!

1. It depends on how customized they should be. In current version of management console you can place various information windows (like alarm browser, history graphs, etc.) inside main console window and save layout. You can create as many saved layouts as you wish. We also working on a completely new console application, which is based on Eclipse platform, which will allow you to quickly develop custom plugins.

2. Yes - there are alarm view in console.

3. Both ways are possible - depending on what changes / extensions you need. System was designed to be modular and easily extendable. You can create your own modules for server and agent (subagents). There are client libraries in C and Java - they can be used for integration with other systems or to create your own client applications. However, there are one major problem - there are almost no documentation on API, so you will have to ask questions on forum and read source code (or you can order custom development from us).

Best regards,
Victor
#6657
Announcements / Re: NetXMS 0.2.30 released
October 22, 2009, 07:25:27 PM
Разобрался с этой проблемой, в ближайшие дни выложу версию 0.2.31, будет инсталлироваться. Если надо срочно, пишите, могу вечером собрать и выложить отдельно инсталлер для x64 агента.
#6658
Разобрался с этой проблемой, в ближайшие дни выложу версию 0.2.31, будет инсталлироваться. Если надо срочно, пишите, могу вечером собрать и выложить отдельно инсталлер для x64 агента.
#6659
General Support / Re: Centralized agent upgrade feature
October 22, 2009, 07:21:38 PM
Try to remove all files from <install_prefix>/share/netxms/packages

Best regards,
Victor
#6660
A v kakom meste ispol'zuetsja skript? V event processing policy? Esli da, to on dolzen vozvraschat' 0 ili 1 - 0 oznachaet chto sobitie pod pravilo ne podhodit - 1 - chto podhodit. Custom message nado zadavat' cherez peremennuju CUSTOM_MESSAGE, bez znaka dollara, i potom mozete ispol'zovat' eto znachenie v alarmah i action'ah cherez macros %M. Naprimer:

sub main()
{
   if ($1==770)
      CUSTOM_MESSAGE="FastEthernet 0/3";
   return 1;
}

I ja podumaju kak sdelat', chtobi ne pisat' if dlja kazdogo interfejsa.