Teltonika driver, node name

Started by troffasky, July 13, 2023, 01:41:09 PM

Previous topic - Next topic

troffasky

Teltonika SNMP implementation is a bit annoying in that it doesn't populate sysName with the actually configured name of the device. When you install the SNMP package the sysName defaults to 'name'.
I can see that the "Product Name" field detected by the Teltonika driver is actually a useful value, however.
So would it be possible to derive the node name for nodes using the Teltonika driver, from the Product Name?

Victor Kirhenshtein

There is no such option in the driver. However, it is possible to use configuration poll hook to test if node name is "name" and driver is "TELTONIKA", and rename it as desired. Sample script that does this and sets node name to product name:

if ($node->name == 'name' and $node->driver == 'TELTONIKA')
{
   $node->rename($node->productName);
}

Best regards,
Victor