Пример #1
0
 /**
  * Return generic system information
  */
 public function systemInfo()
 {
     $community = $this->getSnmpCommunity();
     $host = new SNMP($this->ipToTalkTo, $community);
     try {
         $systemInfo = $host->useSystem()->getAll();
     } catch (Exception $e) {
         return 'false';
     }
     return $systemInfo;
 }