Count Wireless Stations

Started by blingblouw, September 09, 2019, 12:35:13 PM

Previous topic - Next topic

blingblouw

Hi.

I'm hoping someone can maybe assist me.

I've downloaded a template for UBNT Airmax which works perfectly, however I would like to add a new DCI that "counts" the amount of wireless stations. I tried to modify some other script but I failed. Is there anyone that can help point me in the right direction?

currently I have this, but Netxms says its unsupported

walk_oid = ".1.3.6.1.4.1.41112.1.4.7.1.1";

tube = CreateSNMPTransport($node);
if (tube == null)
  return null;

varbinds = SNMPWalk(tube, walk_oid);
if (varbinds == null)
  return null;

return varbinds->size;

Tursiops

Your script works fine for me. For testing purposes I created a DCI from it and it works, too.
Could you show your DCI configuration?

I'm assuming you placed the script into your script library, created a DCI with a "Script" Origin and provided your script name as Parameter and Data Type is Integer?

blingblouw

Quote from: Tursiops on September 09, 2019, 02:34:55 PM


I'm assuming you placed the script into your script library, created a DCI with a "Script" Origin and provided your script name as Parameter and Data Type is Integer?

Hi. No I didn't do that. Thanks, you are correct its working now. Much appreciated