Difference between revisions of "Script Example: Setting node geolocation from SNMP"

no edit summary
(Created page with "Adjust the OIDs in ''SNMPGetValue'' as required. <syntaxhighlight lang="c"> transport = CreateSNMPTransport($node); if (transport == null) { return null; } lat = SNMPGetVa...")
 
Line 1: Line 1:
Adjust the OIDs in ''SNMPGetValue'' as required.
Adjust the OIDs in ''SNMPGetValue'' as required.


<syntaxhighlight lang="c">
<syntaxhighlight lang="c++">
transport = CreateSNMPTransport($node);
transport = CreateSNMPTransport($node);
if (transport == null) {
if (transport == null) {
Line 14: Line 14:
}
}


geoLoc = GeoLocation(lat, long);
geoLoc = new GeoLocation(lat, long);
$node->setGeoLocation(geoLoc);
$node->setGeoLocation(geoLoc);


return 0;
return 0;
</syntaxhighlight>
</syntaxhighlight>
683

edits