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

#2986
So, there are two problems. First, you should add 127.0.0.1 to list of MasterServers for agent running on NetXMS server. Second, you should check that primary host name for node is not set to 127.0.0.1, but to real IP address.

Best regards,
Victor
#2987
Попробуйте прописать в конфиге агента как ConfigurableQuery - должен появится новый параметр checksensor к которому можно будет обратится как checksensor(1)
#2988
Логично на самом деле. Тип тоже можно ведь достать из объекта интерфейса - поле ifType.
#2989
Из фильтра можно возвращать измененый instance и instance name. Можно попробовать такой скрипт:


transport = CreateSNMPTransport($node);
if (transport == null)
return false;
type = SNMPGet(transport, ".1.3.6.1.2.1.2.2.1.3." . $1);
if (type == null)
return false;
if (type->value != 129)
return false;

name = SNMPGetValue(transport, ".1.3.6.1.2.1.2.2.1.2." . $1);  // ifDescr
if (name == null)
        name = $1; // use interface index as fallback

return %(true, $1, name);


и в параметре использовать {instance-name} там где надо подставить имя интерфейса.
#2990
Can you post agent config for verification please?

Best regards,
Victor
#2991
Hi,

your agent version (2.0-M2) has a bug that can cause incorrect server access if server address listed in multiple categories (Servers, ControlServers, MasterServers). Try to comment out Servers and ControlServers options in nxagentd.conf leaving only MasterServers.

Best regards,
Victor
#2992
Actually, there is a flaw in the logic of status poll. When there are no SNMP or NetXMS agent ob the node, server relies only on ICMP pings of interfaces. If all interfaces are down, node is considered down. Problem is that status poller checks status of interfaces, so interfaces with expected state set to ignore are effectively excluded from status calculation. Probably most correct solution would be to use interface operational state instead of status for determining if all interfaces are down.

Best regards,
Victor
#2993
По поводу навигации по карте - сейчас такого нет, но можно сделать. Добавлю в наш список feature requests.
#2994
Попробуйте такой скрипт:

return int64($1) * 8L;
#2995
So the driver that is working is CATALYST-GENERIC? In that case, could you send me result of SNMP walk on .1.3.6.1.4.1.9.5.1.2 from this C4500 switch?

I've seen post on topology issues, will answer on it later.

Best regards,
Victor
#2996
Add interface speed and type description is quite easy, will do that in one of next releases.

Entity MIB support should be enough to show information in components. Can you send me result of SNMP walk on .1.3.6.1.2.1.47.1.1.1.1?

Best regards,
Victor
#2997
General Support / Re: nxshell gives Request timed out
August 05, 2015, 05:49:48 PM
Hi,

event if connection is not closed properly connection limit is way bigger than 2. What is in server log (on debug level 6 or higher) when you try to connect for 3rd time?

Best regards,
Victor
#2998
Hi,

most likely it indicated that there are no server connection accepting traps. Can you share agent configuration file (nxagentd.conf)? Also, how this node is configured in NetXMS server and what is configuration poll output for it?

Best regards,
Victor
#2999
General Support / Re: Gauge – Dial type setup
August 05, 2015, 05:45:01 PM
Hi,

you should set:

left red end at 150;
left yellow end at 200;
right yellow start at 250;
right red start at 250;

Best regards,
Victor
#3000
General Support / Re: Nxevent not working
August 04, 2015, 06:08:56 PM
Hi,

seems to be a problem with installation - looks like nxevent compiled for older/newer version of libnxcl. Is it possible that you for example forgot to specify --with-client when building upgrade binaries? Anyway, I think best solution would be to recompile binaries on that server.

Best regards,
Victor