NAME

Net::SNMP::Mixin::System - mixin class for the mib-2 system-group values

VERSION

Version 0.14

SYNOPSIS

A Net::SNMP mixin class for mib-II system-group info. It's just in the distribution to act as a blueprint for mixin authors.

use Net::SNMP;
use Net::SNMP::Mixin;

my $session = Net::SNMP->session( -hostname => 'foo.bar.com' );

$session->mixer('Net::SNMP::Mixin::System');
$session->init_mixins;
snmp_dispatcher();
$session->init_ok();
die $session->errors if $session->errors;

my $system_group = $session->get_system_group;

printf "Name: %s, Contact: %s, Location: %s\n",
  $system_group->{sysName},
  $system_group->{sysContact},
  $system_group->{sysLocation};

MIXIN METHODS

OBJ->get_system_group()

Returns the mib-II system-group as a hash reference:

{
  sysDescr        => DisplayString,
  sysObjectID     => OBJECT_IDENTIFIER,
  sysUpTime       => TimeTicks,
  sysContact      => DisplayString,
  sysName         => DisplayString,
  sysLocation     => DisplayString,
  sysServices     => INTEGER,
}

INITIALIZATION

OBJ->_init($reload)

Fetch the SNMP mib-II system-group values from the host. Don't call this method direct! Returns nothing in case of failure so init_mixins can stop initialization.

PRIVATE METHODS

Only for developers or maintainers.

_fetch_system_group($session)

Fetch values from the system-group once during object initialization. Push error message onto the error buffer in case of failure and returns nothing.

_system_group_cb($session)

The callback for _fetch_system_group. Push error message onto the error buffer in case of failure and returns nothing.

BUGS, PATCHES & FIXES

There are no known bugs at the time of this release. However, if you spot a bug or are experiencing difficulties that are not explained within the POD documentation, please submit a bug to the RT system (see link below). However, it would help greatly if you are able to pinpoint problems or even supply a patch.

Fixes are dependant upon their severity and my availablity. Should a fix not be forthcoming, please feel free to (politely) remind me by sending an email to gaissmai@cpan.org .

RT: http://rt.cpan.org/Public/Dist/Display.html?Name=Net-SNMP-Mixin

AUTHOR

Karl Gaissmaier <karl.gaissmaier at uni-ulm.de> =head1 COPYRIGHT & LICENSE

Copyright 2008-2015 Karl Gaissmaier, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.