POD updates - spell check
This commit is contained in:
36
Info.pm
36
Info.pm
@@ -231,7 +231,7 @@ For more info run C<perldoc> on any of the following module names.
|
||||
|
||||
SNMP Interface to the ADSL-LINE-MIB for ADSL interfaces.
|
||||
|
||||
Requires the F<ADSL-LINE-MIB>, downloadable from Cisco.
|
||||
Requires the F<ADSL-LINE-MIB>, down loadable from Cisco.
|
||||
|
||||
See documentation in L<SNMP::Info::AdslLine> for details.
|
||||
|
||||
@@ -350,7 +350,7 @@ See documentation in L<SNMP::Info::FDP> for details.
|
||||
=item SNMP::Info::IPv6
|
||||
|
||||
SNMP Interface for obtaining configured IPv6 addresses and mapping IPv6
|
||||
addresses to MACs and interfaces, using information from F<IP-MIB>,
|
||||
addresses to MAC addresses and interfaces, using information from F<IP-MIB>,
|
||||
F<IPV6-MIB> and/or F<CISCO-IETF-IP-MIB>.
|
||||
|
||||
See documentation in L<SNMP::Info::IPv6> for details.
|
||||
@@ -551,7 +551,7 @@ See documentation in L<SNMP::Info::Layer2::HP4000> for details.
|
||||
|
||||
=item SNMP::Info::Layer2::HPVC
|
||||
|
||||
Subclass for HP VirtualConnect Switches
|
||||
Subclass for HP Virtual Connect Switches
|
||||
|
||||
See documentation in L<SNMP::Info::Layer2::HPVC> for details.
|
||||
|
||||
@@ -727,6 +727,12 @@ Subclass for Brocade (Foundry) Network devices.
|
||||
|
||||
See documentation in L<SNMP::Info::Layer3::Foundry> for details.
|
||||
|
||||
=item SNMP::Info::Layer3::H3C
|
||||
|
||||
SNMP Interface to Layer 3 Devices, H3C & HP A-series.
|
||||
|
||||
See documentation in L<SNMP::Info::Layer3::H3C> for details.
|
||||
|
||||
=item SNMP::Info::Layer3::HP9300
|
||||
|
||||
Subclass for HP network devices which Foundry Networks was the
|
||||
@@ -880,7 +886,7 @@ Creates a new object and connects via SNMP::Session.
|
||||
'BigInt' => 1,
|
||||
'BulkWalk' => 1,
|
||||
'BulkRepeaters' => 20,
|
||||
'IgnoreNetSNMPConf => 1,
|
||||
'IgnoreNetSNMPConf' => 1,
|
||||
'LoopDetect' => 1,
|
||||
'DestHost' => 'myrouter',
|
||||
'Community' => 'public',
|
||||
@@ -938,9 +944,9 @@ snmp.local.conf, from /etc/snmp, /usr/share/snmp, /usr/lib(64)/snmp, or
|
||||
$HOME/.snmp and uses those settings to automatically parse MIB files, etc.
|
||||
|
||||
Set to C<1> "on" to ignore Net-SNMP configuration files by overriding the
|
||||
C<SNMPCONFPATH> environmental varible during object initialization. Note:
|
||||
MibDirs must be defined or Net-SNMP will not be able to load MIB's and
|
||||
initalize the object.
|
||||
C<SNMPCONFPATH> environmental variable during object initialization. Note:
|
||||
MibDirs must be defined or Net-SNMP will not be able to load MIBs and
|
||||
initialize the object.
|
||||
|
||||
(default 0, which means "off")
|
||||
|
||||
@@ -1470,7 +1476,7 @@ sub device_type {
|
||||
$objtype = 'SNMP::Info::Layer3::Tasman'
|
||||
if ( $desc =~ /^(avaya|nortel)\s+(SR|secure\srouter)\s+\d{4}/i );
|
||||
|
||||
# HP VirtualConnect blade switches
|
||||
# HP Virtual Connect blade switches
|
||||
$objtype = 'SNMP::Info::Layer2::HPVC'
|
||||
if ( $desc =~ /HP\sVC\s/ );
|
||||
|
||||
@@ -1579,7 +1585,7 @@ sub device_type {
|
||||
if (
|
||||
$desc =~ /Nortel\s+(Networks\s+)??WLAN\s+-\s+Security\s+Switch/ );
|
||||
|
||||
# HP VirtualConnect blade switches
|
||||
# HP Virtual Connect blade switches
|
||||
$objtype = 'SNMP::Info::Layer2::HPVC'
|
||||
if ( $desc =~ /HP\sVC\s/ );
|
||||
|
||||
@@ -1632,7 +1638,7 @@ sub device_type {
|
||||
$objtype = 'SNMP::Info::Layer3::Cisco'
|
||||
if ( $desc =~ /Cisco Adaptive Security Appliance/i );
|
||||
|
||||
# HP VirtualConnect blade switches
|
||||
# HP Virtual Connect blade switches
|
||||
$objtype = 'SNMP::Info::Layer2::HPVC'
|
||||
if ( $desc =~ /HP\sVC\s/ );
|
||||
|
||||
@@ -2343,7 +2349,7 @@ For protocol specific information and implementation:
|
||||
|
||||
=back
|
||||
|
||||
=head3 Topology Capabilties
|
||||
=head3 Topology Capabilities
|
||||
|
||||
=over
|
||||
|
||||
@@ -3275,7 +3281,7 @@ sub init {
|
||||
# Get MibDirs if provided
|
||||
my $mibdirs = $self->{mibdirs} || [];
|
||||
|
||||
# SNMP::initMib and SNMP::addMibDirs both look for some inital MIBs
|
||||
# SNMP::initMib and SNMP::addMibDirs both look for some initial MIBs
|
||||
# so if we are not using Net-SNMP configuration files we need to
|
||||
# specify where the MIBs are before those calls.
|
||||
|
||||
@@ -4207,13 +4213,13 @@ sub _validate_autoload_method {
|
||||
|
||||
=item $info->can()
|
||||
|
||||
Overrides UNIVERSAL::can() so that objects will correctly report thier
|
||||
capabilities to include dynamic methods generated at runtime via AUTOLOAD.
|
||||
Overrides UNIVERSAL::can() so that objects will correctly report their
|
||||
capabilities to include dynamic methods generated at run time via AUTOLOAD.
|
||||
|
||||
Calls parent can() first to see if method exists, if not validates that a
|
||||
method should be created then dispatches to the appropriate internal method
|
||||
for creation. The newly created method is inserted into the symbol table
|
||||
returning to AUTOLOAD only for the inital method call.
|
||||
returning to AUTOLOAD only for the initial method call.
|
||||
|
||||
Returns undef if the method does not exist and can not be created.
|
||||
|
||||
|
||||
@@ -65,7 +65,7 @@ __END__
|
||||
|
||||
=head1 NAME
|
||||
|
||||
SNMP::Info::AdslLine - SNMP Interface to the ADSL-LINE-MIB
|
||||
SNMP::Info::AdslLine - SNMP Interface to the F<ADSL-LINE-MIB>
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
@@ -120,7 +120,7 @@ MIBs can be found at ftp://ftp.cisco.com/pub/mibs/v2/v2.tar.gz
|
||||
=head2 ATUC channel table (C<adslAtucChanTable>)
|
||||
|
||||
This table provides one row for each ATUC channel.
|
||||
ADSL channel interfaces are those ifEntries where ifType
|
||||
ADSL channel interfaces are those C<ifEntries> where C<ifType>
|
||||
is equal to adslInterleave(124) or adslFast(125).
|
||||
|
||||
=over
|
||||
@@ -146,7 +146,7 @@ is equal to adslInterleave(124) or adslFast(125).
|
||||
=head2 ATUR channel table (C<adslAturChanTable>)
|
||||
|
||||
This table provides one row for each ATUR channel.
|
||||
ADSL channel interfaces are those ifEntries where ifType
|
||||
ADSL channel interfaces are those C<ifEntries> where C<ifType>
|
||||
is equal to adslInterleave(124) or adslFast(125).
|
||||
|
||||
=over
|
||||
|
||||
@@ -175,7 +175,7 @@ Maps the C<pethPsePortTable> to C<ifIndex> by way of the F<ENTITY-MIB>.
|
||||
=item $poe->peth_port_power()
|
||||
|
||||
Power supplied by PoE ports, in milliwatts
|
||||
("cpeExtPsePortPwrConsumption")
|
||||
(C<cpeExtPsePortPwrConsumption>)
|
||||
|
||||
=back
|
||||
|
||||
@@ -185,8 +185,8 @@ Power supplied by PoE ports, in milliwatts
|
||||
|
||||
=item $poe->peth_port_neg_power()
|
||||
|
||||
Power negotiated using CDP, in milliwats
|
||||
("cdpCachePowerConsumption")
|
||||
Power negotiated using CDP, in milliwatts
|
||||
(C<cdpCachePowerConsumption>)
|
||||
|
||||
=back
|
||||
|
||||
|
||||
@@ -402,62 +402,25 @@ Returns mem_free() + mem_used()
|
||||
|
||||
=item $ciscostats->os()
|
||||
|
||||
Tries to parse if device is running IOS, CatOS, IOS-XE or something else from description()
|
||||
Tries to parse if device is running 'IOS', 'CatOS', 'IOS-XE' or something else
|
||||
from description()
|
||||
|
||||
Available values :
|
||||
Available values:
|
||||
|
||||
=over
|
||||
|
||||
=item ios
|
||||
|
||||
Cisco IOS
|
||||
|
||||
=item ios-xe
|
||||
|
||||
Cisco IOS XE
|
||||
|
||||
=item pix
|
||||
|
||||
Cisco PIX
|
||||
|
||||
=item asa
|
||||
|
||||
Cisco ASA
|
||||
|
||||
=item fwsm
|
||||
|
||||
Single-mode FWSM
|
||||
|
||||
=item fwsm-admin
|
||||
|
||||
Admin context of multi-context FWSM
|
||||
|
||||
=item fwsm-context
|
||||
|
||||
Standard context of multi-context FWSM
|
||||
|
||||
=item ace-admin
|
||||
|
||||
Admin context of ACE module
|
||||
|
||||
=item ace-context
|
||||
|
||||
Standard context of ACE module (NB: No OS version detection
|
||||
is available, but will be the same as it's 'ace admin')
|
||||
|
||||
=item css
|
||||
|
||||
Cisco Content Switch
|
||||
|
||||
=item css-sca
|
||||
|
||||
Cisco Content Switch Secure Content Acceleration
|
||||
|
||||
=item san-os
|
||||
|
||||
Cisco SAN-OS
|
||||
|
||||
=back
|
||||
'ios' for Cisco IOS
|
||||
'ios-xe' for Cisco IOS XE
|
||||
'pix' for Cisco PIX
|
||||
'asa' for Cisco ASA
|
||||
'fwsm' for Single-mode FWSM
|
||||
'fwsm-admin' for Admin context of multi-context FWSM
|
||||
'fwsm-context' for Standard context of multi-context FWSM
|
||||
'ace-admin' for Admin context of ACE module
|
||||
'ace-context' for Standard context of ACE module (NB: No OS version
|
||||
detection is available, but will be the same as it's
|
||||
'ace admin')
|
||||
'css' for Cisco Content Switch
|
||||
'css-sca' for Cisco Content Switch Secure Content Acceleration
|
||||
'san-os' for Cisco SAN-OS
|
||||
|
||||
=item $ciscostats->os_ver()
|
||||
|
||||
@@ -466,7 +429,7 @@ to parsing C<CISCO-IMAGE-MIB::ciscoImageString> if needed
|
||||
|
||||
=item $ciscostats->os_bin()
|
||||
|
||||
Tries to parse ROMMON version from rom_id() string
|
||||
Tries to parse C<ROMMON> version from rom_id() string
|
||||
|
||||
=item $ciscostats->ios_cpu()
|
||||
|
||||
|
||||
@@ -394,8 +394,9 @@ Jeroen van Ingen and Carlos Vicente
|
||||
=head1 DESCRIPTION
|
||||
|
||||
The SNMP::Info::IPv6 class implements functions to for mapping IPv6 addresses
|
||||
to MAC addresses, interfaces and more. It will use data from the IP-MIB, IPV6-MIB
|
||||
or the CISCO-IETF-IP-MIB, whichever is supported by the device.
|
||||
to MAC addresses, interfaces and more. It will use data from the F<IP-MIB>,
|
||||
F<IPV6-MIB>, or the F<CISCO-IETF-IP-MIB>, whichever is supported by the
|
||||
device.
|
||||
|
||||
This class is inherited by Info::Layer3 to provide IPv6 node tracking across
|
||||
device classes.
|
||||
|
||||
@@ -378,7 +378,7 @@ Converts 802.11n 2.4Ghz to 1 and 5Ghz to 2 to correspond to the
|
||||
|
||||
=item munge_cd11_rateset()
|
||||
|
||||
Converts rateset to array.
|
||||
Converts rate set to array.
|
||||
|
||||
=back
|
||||
|
||||
|
||||
@@ -633,7 +633,7 @@ Returns bytes of used memory
|
||||
Returns the model number of the HP Switch. Will translate between the HP Part
|
||||
number and the common model number with this map :
|
||||
|
||||
%MODEL_MAP = (
|
||||
%MODEL_MAP = (
|
||||
'J8131A' => 'WAP-420-WW',
|
||||
'J8130A' => 'WAP-420-NA',
|
||||
'J8133A' => 'AP520WL',
|
||||
@@ -730,7 +730,7 @@ number and the common model number with this map :
|
||||
'J9450A' => '1810G-24',
|
||||
'J9029A' => '1800-8G',
|
||||
'J9028A' => '1800-24G',
|
||||
);
|
||||
);
|
||||
|
||||
=item $hp->os()
|
||||
|
||||
@@ -776,12 +776,12 @@ Power supply 2 status
|
||||
=item $hp->peth_port_power()
|
||||
|
||||
Power supplied by PoE ports, in milliwatts
|
||||
("hpicfPoePethPsePortPower")
|
||||
(C<hpicfPoePethPsePortPower>)
|
||||
|
||||
=item $hp->stp_ver()
|
||||
|
||||
Returns what version of STP the device is running.
|
||||
("hpicfBridgeRstpForceVersion" with fallback to inherited stp_ver())
|
||||
(C<hpicfBridgeRstpForceVersion> with fallback to inherited stp_ver())
|
||||
|
||||
=back
|
||||
|
||||
@@ -820,7 +820,8 @@ Returns reference to hash of IIDs to admin duplex setting.
|
||||
|
||||
=item $hp->vendor_i_type()
|
||||
|
||||
Returns reference to hash of IIDs to HP specific port type (hpSwitchPortType).
|
||||
Returns reference to hash of IIDs to HP specific port type
|
||||
(C<hpSwitchPortType>).
|
||||
|
||||
=item $hp->i_name()
|
||||
|
||||
|
||||
@@ -652,7 +652,8 @@ Returns reference to hash of IIDs to admin duplex setting.
|
||||
|
||||
=item $hp->vendor_i_type()
|
||||
|
||||
Returns reference to hash of IIDs to HP specific port type (hpSwitchPortType).
|
||||
Returns reference to hash of IIDs to HP specific port type
|
||||
(C<hpSwitchPortType>).
|
||||
|
||||
=item $hp->i_name()
|
||||
|
||||
|
||||
@@ -89,7 +89,7 @@ __END__
|
||||
|
||||
=head1 NAME
|
||||
|
||||
SNMP::Info::Layer2::HPVC - SNMP Interface to HP VirtualConnect Switches
|
||||
SNMP::Info::Layer2::HPVC - SNMP Interface to HP Virtual Connect Switches
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
@@ -113,7 +113,7 @@ Jeroen van Ingen
|
||||
=head1 DESCRIPTION
|
||||
|
||||
Provides abstraction to the configuration information obtainable from a
|
||||
HP VirtualConnect Switch via SNMP.
|
||||
HP Virtual Connect Switch via SNMP.
|
||||
|
||||
For speed or debugging purposes you can call the subclass directly, but not
|
||||
after determining a more specific class using the method above.
|
||||
@@ -150,7 +150,7 @@ These are methods that return scalar value from SNMP
|
||||
|
||||
=item $hp->os()
|
||||
|
||||
Returns hpvc
|
||||
Returns C<'hpvc'>
|
||||
|
||||
=item $hp->os_bin()
|
||||
|
||||
|
||||
@@ -863,7 +863,7 @@ Returns 'trapeze'
|
||||
|
||||
Tries to reference $nwss2300->id() to F<NTWS-REGISTRATION-DEVICES-MIB>
|
||||
|
||||
Removes 'ntwsSwitch' for readability.
|
||||
Removes C<'ntwsSwitch'> for readability.
|
||||
|
||||
=item $nwss2300->serial()
|
||||
|
||||
@@ -1170,7 +1170,7 @@ for Ethernet interfaces, nwss2300_ap_name() for thin AP interfaces.
|
||||
=item $nwss2300->i_type()
|
||||
|
||||
Returns reference to map of IIDs to interface descriptions. Returns
|
||||
C<ifType> for Ethernet interfaces and 'capwapWtpVirtualRadio' for thin AP
|
||||
C<ifType> for Ethernet interfaces and C<'capwapWtpVirtualRadio'> for thin AP
|
||||
interfaces.
|
||||
|
||||
=item $nwss2300->i_up()
|
||||
|
||||
@@ -115,8 +115,8 @@ SNMP::Info::Layer2::Netgear - SNMP Interface to Netgear switches
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
Bill Fenner and Zoltan Erszenyi,
|
||||
Hacked in LLDP support from Baystack.pm by
|
||||
Bill Fenner and Zoltan Erszenyi,
|
||||
Hacked in LLDP support from Baystack.pm by
|
||||
Nic Bernstein <nic@onlight.com>
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
@@ -113,7 +113,7 @@ Subclass for Blue Coat SG Series proxy devices
|
||||
|
||||
=head2 Required MIBs
|
||||
|
||||
BLUECOAT-SG-PROXY-MIB
|
||||
BLUECOAT-SG-PROXY-MIB
|
||||
|
||||
=over
|
||||
|
||||
@@ -141,7 +141,7 @@ Returns C<'sgos'>
|
||||
|
||||
=item $router->os_ver()
|
||||
|
||||
Tries to resolve version string from "sgProxyVersion"
|
||||
Tries to resolve version string from C<"sgProxyVersion">.
|
||||
|
||||
=back
|
||||
|
||||
|
||||
@@ -202,17 +202,17 @@ to a hash.
|
||||
=item $fwsm->at_paddr()
|
||||
|
||||
This function derives the at_paddr information from the n2p_paddr() table as
|
||||
the MIB to provide that information isn't supported on FWSMs.
|
||||
the MIB to provide that information isn't supported on FWSM.
|
||||
|
||||
=item $fwsm->at_netaddr()
|
||||
|
||||
This function derives the at_netaddr information from the n2p_paddr() table as
|
||||
the MIB to provide that information isn't supported on FWSMs.
|
||||
the MIB to provide that information isn't supported on FWSM.
|
||||
|
||||
=item $fwsm->at_ifaddr()
|
||||
|
||||
This function derives the at_ifaddr information from the n2p_paddr() table as
|
||||
the MIB to provide that information isn't supported on FWSMs.
|
||||
the MIB to provide that information isn't supported on FWSM.
|
||||
|
||||
=back
|
||||
|
||||
|
||||
@@ -388,10 +388,10 @@ identifier (iid).
|
||||
|
||||
=head2 Link Layer Discovery Protocol (LLDP) Overrides
|
||||
|
||||
The LLDP table timefilter implementation continuously increments when
|
||||
The LLDP table time filter implementation continuously increments when
|
||||
walked and we may never reach the end of the table. This behavior can be
|
||||
modified with the "set snmp timefilter break disable" command,
|
||||
unfortunately it is not the default. These methods are overriden to
|
||||
modified with the C<"set snmp timefilter break disable"> command,
|
||||
unfortunately it is not the default. These methods are overridden to
|
||||
supply a partial value of zero which means no time filter.
|
||||
|
||||
=over
|
||||
|
||||
@@ -957,7 +957,7 @@ Power supplied by PoE ports, in milliwatts
|
||||
|
||||
=item $extreme->peth_power_watts()
|
||||
|
||||
The configured maximum amount of inline power available to the slot.
|
||||
The configured maximum amount of in-line power available to the slot.
|
||||
|
||||
(C<extremePethSlotPowerLimit>)
|
||||
|
||||
|
||||
@@ -405,7 +405,7 @@ Returns the human set port name if exists.
|
||||
|
||||
=item $f5->i_type()
|
||||
|
||||
Returns 'ethernetCsmacd' for each C<ifIndex>.
|
||||
Returns C<'ethernetCsmacd'> for each C<ifIndex>.
|
||||
|
||||
=back
|
||||
|
||||
|
||||
@@ -294,11 +294,11 @@ These are methods that return scalar values from SNMP:
|
||||
|
||||
=item $force10->vendor()
|
||||
|
||||
Returns 'force10'
|
||||
Returns C<'force10'>
|
||||
|
||||
=item $force10->hasCDP()
|
||||
|
||||
Returns whether LLDP is enabled.
|
||||
Returns whether LLDP is enabled.
|
||||
|
||||
=item $force10->model()
|
||||
|
||||
@@ -306,7 +306,7 @@ Tries to reference $force10->id() to the Force10 product MIB listed above.
|
||||
|
||||
=item $force10->os()
|
||||
|
||||
Returns 'ftos'
|
||||
Returns C<'ftos'>.
|
||||
|
||||
=item $force10->os_ver()
|
||||
|
||||
|
||||
@@ -575,7 +575,7 @@ Subclass for Juniper Devices running JUNOS
|
||||
|
||||
=over
|
||||
|
||||
=item F<JUNIPER-VLAN-MIB> dated "200901090000Z" -- Fri Jan 09 00:00:00 2009 UTC or later.
|
||||
=item F<JUNIPER-VLAN-MIB> dated "200901090000Z" or later.
|
||||
|
||||
=item F<JUNIPER-CHASSIS-DEFINES-MIB>
|
||||
|
||||
|
||||
@@ -134,11 +134,11 @@ These are methods that return scalar value from SNMP
|
||||
|
||||
=item $mikrotik->vendor()
|
||||
|
||||
Returns 'mikrotik'.
|
||||
Returns C<'mikrotik'>.
|
||||
|
||||
=item $mikrotik->os()
|
||||
|
||||
Returns 'routeros'.
|
||||
Returns C<'routeros'>.
|
||||
|
||||
=item $mikrotik->model()
|
||||
|
||||
|
||||
@@ -544,11 +544,11 @@ Tries to reference $netscreen->id() to F<NETSCREEN-PRODUCTS-MIB>
|
||||
|
||||
=item $netscreen->vendor()
|
||||
|
||||
Returns 'juniper'
|
||||
Returns C<'juniper'>
|
||||
|
||||
=item $netscreen->os()
|
||||
|
||||
Returns 'screenos'
|
||||
Returns C<'screenos'>
|
||||
|
||||
=item $netscreen->os_ver()
|
||||
|
||||
|
||||
@@ -280,11 +280,11 @@ Returns 'cisco'
|
||||
|
||||
=item $nexus->os()
|
||||
|
||||
Returns 'nx-os'
|
||||
Returns C<'nx-os'>
|
||||
|
||||
=item $nexus->os_ver()
|
||||
|
||||
Returns operating system version extracted fron C<sysDescr>.
|
||||
Returns operating system version extracted from C<sysDescr>.
|
||||
|
||||
=item $nexus->serial()
|
||||
|
||||
@@ -294,7 +294,7 @@ Returns the serial number of the chassis from F<ENTITY-MIB>.
|
||||
|
||||
Tries to reference $nexus->id() to F<CISCO-ENTITY-VENDORTYPE-OID-MIB>
|
||||
|
||||
Removes 'cevChassis' for readability.
|
||||
Removes C<'cevChassis'> for readability.
|
||||
|
||||
=item $nexus->mac()
|
||||
|
||||
|
||||
@@ -175,7 +175,7 @@ These are methods that return scalar value from SNMP
|
||||
|
||||
=item $pfront->vendor()
|
||||
|
||||
Returns 'packetfront'.
|
||||
Returns C<'packetfront'>.
|
||||
|
||||
=item $pfront->os()
|
||||
|
||||
@@ -187,7 +187,7 @@ Returns the software version extracted from C<sysDescr>.
|
||||
|
||||
=item $pfront->serial()
|
||||
|
||||
Returns the value of productSerialNo.
|
||||
Returns the value of C<productSerialNo>.
|
||||
|
||||
=back
|
||||
|
||||
|
||||
@@ -199,18 +199,18 @@ These are methods that return scalar values from SNMP
|
||||
|
||||
=item $tasman->vendor()
|
||||
|
||||
Returns 'avaya'
|
||||
Returns C<'avaya'>
|
||||
|
||||
=item $tasman->model()
|
||||
|
||||
Tries to get the model from C<nnchassisModel> and if not available
|
||||
cross references $tasman->id() to F<NT-ENTERPRISE-DATA-MIB>.
|
||||
|
||||
Substitutes 'SR' for 'ntSecureRouter' in the name for readability.
|
||||
Substitutes 'SR' for C<'ntSecureRouter'> in the name for readability.
|
||||
|
||||
=item $tasman->os()
|
||||
|
||||
Returns 'tasman'
|
||||
Returns C<'tasman'>
|
||||
|
||||
=item $tasman->os_ver()
|
||||
|
||||
@@ -250,8 +250,8 @@ Grabs the os version from C<nnsysVersion>
|
||||
|
||||
=item $tasman->serial()
|
||||
|
||||
Tries both (C<nnchassisOperStatus>) and (C<nnchassisSerialNumber>) as OID's
|
||||
were redefined between versions.
|
||||
Tries both (C<nnchassisOperStatus>) and (C<nnchassisSerialNumber>) as oid
|
||||
was redefined between versions.
|
||||
|
||||
=back
|
||||
|
||||
|
||||
@@ -161,7 +161,7 @@ These are methods that return scalar value from SNMP
|
||||
|
||||
=item $apc->os()
|
||||
|
||||
Returns 'aos'
|
||||
Returns C<'aos'>
|
||||
|
||||
=item $apc->os_bin()
|
||||
|
||||
@@ -178,7 +178,7 @@ card serial C<POWERNET-MIB::experimental.2.4.1.2.1> into a pretty string.
|
||||
|
||||
=item $apc->vendor()
|
||||
|
||||
apc
|
||||
Returns C<'apc'>
|
||||
|
||||
=item $apc->model()
|
||||
|
||||
|
||||
@@ -132,7 +132,7 @@ Returns 'juniper'.
|
||||
|
||||
=item $neoteris->os()
|
||||
|
||||
Returns 'ive'.
|
||||
Returns C<'ive'>.
|
||||
|
||||
=item $neoteris->os_ver()
|
||||
|
||||
|
||||
@@ -18,6 +18,7 @@ __DATA__
|
||||
5000BH
|
||||
accelar
|
||||
acl
|
||||
ADSL
|
||||
adsl
|
||||
af
|
||||
agere
|
||||
@@ -29,8 +30,10 @@ alcatel
|
||||
alteon
|
||||
Altiga
|
||||
altiga
|
||||
anycast
|
||||
AOS
|
||||
ap
|
||||
APC
|
||||
APs
|
||||
Arista
|
||||
arista
|
||||
@@ -43,9 +46,13 @@ ascii
|
||||
asn
|
||||
ati
|
||||
attr
|
||||
ATUC
|
||||
ATUR
|
||||
augenstein
|
||||
autonegotiate
|
||||
autospecify
|
||||
Avaya
|
||||
avaya
|
||||
baetz
|
||||
bayrs
|
||||
baystack
|
||||
@@ -62,6 +69,7 @@ bpdus
|
||||
BSSID
|
||||
bulkrepeaters
|
||||
bulkwalk
|
||||
Bulley
|
||||
cabletron
|
||||
catos
|
||||
cdp
|
||||
@@ -70,20 +78,26 @@ circuitless
|
||||
cisco
|
||||
cisco's
|
||||
ciscovtp
|
||||
Citrix
|
||||
citrix
|
||||
cli
|
||||
conf
|
||||
config
|
||||
contivity
|
||||
CPAN
|
||||
CPE
|
||||
cpu
|
||||
ctron
|
||||
cyclades
|
||||
DataSMART
|
||||
datatype
|
||||
deauthenticate
|
||||
debugsnmp
|
||||
dhcp
|
||||
dlink
|
||||
dmitry
|
||||
DOCSIS
|
||||
DRG
|
||||
ds
|
||||
dslam
|
||||
dslams
|
||||
@@ -103,14 +117,18 @@ fastiron
|
||||
fdb
|
||||
fdp
|
||||
fenner
|
||||
FreeBSD
|
||||
fsm
|
||||
FTOS
|
||||
FWSM
|
||||
fwsm
|
||||
gbe
|
||||
gbesm
|
||||
Gbps
|
||||
getnext
|
||||
Ghz
|
||||
gigabit
|
||||
Gorwits
|
||||
hartmaier
|
||||
iana
|
||||
ibm
|
||||
@@ -119,17 +137,21 @@ ieee
|
||||
ietf
|
||||
ifindex
|
||||
igmp
|
||||
IgnoreNetSNMPConf
|
||||
iid
|
||||
iids
|
||||
indices
|
||||
ingen
|
||||
IOS
|
||||
ios
|
||||
ip
|
||||
IPV
|
||||
IPv
|
||||
jeroen
|
||||
junos
|
||||
Kentrox
|
||||
kramarov
|
||||
ladvd
|
||||
lans
|
||||
linksys
|
||||
lldp
|
||||
@@ -152,6 +174,7 @@ mibdirs
|
||||
mib
|
||||
mibs
|
||||
milliwatts
|
||||
Mikrotik
|
||||
msb
|
||||
mtu
|
||||
multi
|
||||
@@ -165,11 +188,14 @@ ndp
|
||||
netdisco
|
||||
netgear
|
||||
netmask
|
||||
Netscaler
|
||||
netscaler
|
||||
netscreen
|
||||
nmm
|
||||
nopassword
|
||||
nortel
|
||||
nosuch
|
||||
NX
|
||||
oem
|
||||
ofdm
|
||||
oid
|
||||
@@ -179,8 +205,10 @@ os
|
||||
osi
|
||||
ospf
|
||||
overridable
|
||||
PacketFront
|
||||
pae
|
||||
petri
|
||||
pfSense
|
||||
phy
|
||||
pinkoski
|
||||
poe
|
||||
@@ -194,17 +222,21 @@ qbridge
|
||||
qos
|
||||
queueing
|
||||
radlan
|
||||
Radware
|
||||
radware
|
||||
rapidcity
|
||||
readme
|
||||
readonly
|
||||
rebranded
|
||||
retrynosuch
|
||||
rom
|
||||
RouterOS
|
||||
rtt
|
||||
rttmon
|
||||
sca
|
||||
Schenau
|
||||
sergienko
|
||||
SG
|
||||
sieborger
|
||||
SNMP
|
||||
snmp
|
||||
@@ -213,10 +245,12 @@ snmpv2
|
||||
snmpv3
|
||||
snmpwalk
|
||||
solaris
|
||||
SonicWALL
|
||||
sonmp
|
||||
ssid
|
||||
SSID's
|
||||
SSIDs
|
||||
SSL
|
||||
Stickland
|
||||
stackable
|
||||
stdout
|
||||
@@ -228,8 +262,10 @@ sunos
|
||||
supply's
|
||||
synoptics
|
||||
sys
|
||||
Telesis
|
||||
telesyn
|
||||
telesys
|
||||
terabit
|
||||
tftp
|
||||
tftpfilename
|
||||
tftpserver
|
||||
@@ -238,11 +274,13 @@ tmnxModel
|
||||
todo
|
||||
tuttle
|
||||
ucsc
|
||||
unicast
|
||||
uninstall
|
||||
uptime
|
||||
vlan
|
||||
vlans
|
||||
vpn
|
||||
VSP
|
||||
vtp
|
||||
watanabe
|
||||
wlan
|
||||
|
||||
Reference in New Issue
Block a user