Hi!
"system name" is a node property, not a node object name in console. You have couple of options here:
1. if you have correct DNS records, you can turn on DNS node sync by setting server configuration variable SyncNodeNamesWithDNS to 1.
2. If you want to keep node name consistent with system name read from node, you can use the following hook script for configuration polls:
Best regards,
Victor
"system name" is a node property, not a node object name in console. You have couple of options here:
1. if you have correct DNS records, you can turn on DNS node sync by setting server configuration variable SyncNodeNamesWithDNS to 1.
2. If you want to keep node name consistent with system name read from node, you can use the following hook script for configuration polls:
Code Select
if (($node->snmpSysName != null) && ($node->snmpSysName != ""))
RenameObject($node, $node->snmpSysName);
Best regards,
Victor
У вас 32 или 64 бита система?