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

#1216
General Support / Re: TCP proxy functionality
July 08, 2019, 10:46:46 AM
Did you add

EnableTCPProxy = yes

to config of proxy agent? Also, server has to be listed as master server on a proxy.

Best regards,
Victor
#1217
General Support / Re: Stacked switches in rack view
July 07, 2019, 02:35:07 PM
Hi,

one possible option is to create fake nodes without IP address to represent different units and use status DCIs to set unit status. I will also think about implementing some sort of built-in mechanism for representing units of distributed stack as that seems to be quite common task. If you wish you can follow on this ticket: https://track.radensolutions.com/issue/NX-1657

Best regards,
Victor
#1218
Actually, nxpush/nxapush was not designed with "update" option in mind. Server expects that each new push will contain new data. If you don't mind please create feature request in our tracker for "update" functionality for push DCIs.

Best regards,
Victor
#1219
Hi,

there is an option in node communication settings called "Prevent automatic SNMP configuration changes".

Best regards,
Victor
#1220
Hi,

we have request for simplifying SNMP trap configuration so there should be improvements in 3.x branch in July/August.

Best regards,
Victor
#1221
Yes, unmanaged state prevents SNMP transport creation. As possible workaround you can set node as managed from the script, create transport, and set it back to unmanaged. If you don't want any poll to start, you can disable polling before setting node to managed state.

Best regards,
Victor
#1222
This question was not related to UI - it was about using nxshell (Python based external scripting tool). You can get filtered information form event or alarm log in nxshell, but it won't be shown as UI view. You can do the same within event log or alarm log view by adding appropriate filters.

Best regards,
Victor
#1223
На какой платформе? На Линуксе вроде как давно сделан.
#1224
Сервер получает список доступных параметров во время configuration poll. Возможно он запрещен или еще не прошел.
#1225
Странно, по идее достаточно отключить network discovery polling чтобы ARP таблицы не опрашивались. Попробуйте включить дебаг уровня 5 и посмотреть в логе что пишется про этот узел.
#1226
Фикса наверное нет, надо разбираться с конкретной ситуацией. Есть инструкция по сборке консоли мавеном (из корня исходников):

Десктоп:

mvn -f src/java/netxms-eclipse/pom.xml -Dtycho.mode=maven org.eclipse.tycho:tycho-versions-plugin:update-pom -Pconsole
mvn -f src/java/netxms-eclipse/pom.xml clean package -Pconsole -Dtycho.disableP2Mirrors=true


Веб:

mvn -f webui/webapp/pom.xml -Dtycho.mode=maven org.eclipse.tycho:tycho-versions-plugin:update-pom -Pweb
mvn -f webui/webapp/pom.xml clean package -Pweb -Dtycho.disableP2Mirrors=true

#1227
Возможные значения инстансов можно получить через соответствующие агентские списки: Hardware.Batteries, Hardware.MemoryDevices, Hardware.Processors, Hardware.StorageDevices. В большинстве случаев это значение handle из SMBIOS таблиц.
#1228
Hi,

please note that RPi subagent has very limited functionality: it provides access to GPIO PINs, supports reading DHT22 sensor connected to GPIO, and provides CPU temperature.

Best regards,
Victor
#1229
General Support / Re: TCP proxy functionality
July 07, 2019, 01:32:38 PM
Hi,

there is TCP proxy functionality in agent, server, and client API which is something similar to SSH port forwarding. It was intended mostly for integration tools but there is command line tool that can be used for TCP port forwarding. You can build it from source (it is located under src/client/nxtcpproxy) or download from here: https://cloud.netxms.org/index.php/s/zQLdMnFaNu0mwNA

You run it on your workstation like this:

java -jar nxtcpproxy-2.2.15.jar netxms_server_ip netxms_login netxms_password proxy_node_name remote_ip remote_port local_port

On proxy node TCP proxy should be enabled by adding

EnableTCPProxy = yes

to nxagentd.conf file. NetXMS user should have system access right "Initiate TCP proxy sessions".

For example, if I want to connect with SSH to IP address 10.5.3.2 via proxy node "zone-proxy" I can run (assuming NetXMS server IP address is 10.0.0.10)

java -jar nxtcpproxy-2.2.15.jar 10.0.0.10 admin password zone-proxy 10.5.3.2 22 2222

and then connect with SSH client to localhost port 2222.

Best regards,
Victor
#1230
General Support / Re: Installing agent on Raspbian
July 07, 2019, 11:35:07 AM
Hi,

you have to add new source for apt. Create new file named netxms.list in /etc/apt/sources.list.d/ with content like this:

deb http://packages.netxms.org/raspbian stretch main


You may also need to install GPG key with command

wget -q -O - http://packages.netxms.org/netxms.gpg | sudo apt-key add -

Best regards,
Victor