| SNMP-Info documentation | Contained in the SNMP-Info distribution. |
CISCO-PORT-SECURITY-MIB - Interface Config TableCISCO-PORT-SECURITY-MIB::cpsIfVlanTableCISCO-PORT-SECURITY-MIB::cpsIfVlanSecureMacAddrTableCISCO-PORT-SECURITY-MIB::cpsSecureMacAddressTableIEEE8021-PAE-MIB::dot1xPaePortEntrySNMP::Info::CiscoPortSecurity - SNMP Interface to data from CISCO-PORT-SECURITY-MIB and CISCO-PAE-MIB
Eric Miller
# Let SNMP::Info determine the correct subclass for you.
my $cps = new SNMP::Info(
AutoSpecify => 1,
Debug => 1,
DestHost => 'myswitch',
Community => 'public',
Version => 2
)
or die "Can't connect to DestHost.\n";
my $class = $cps->class();
print "SNMP::Info determined this device to fall under subclass : $class\n";
SNMP::Info::CiscoPortSecurity is a subclass of SNMP::Info that provides an interface to the CISCO-PORT-SECURITY-MIB and CISCO-PAE-MIB. These MIBs are used across the Catalyst family under CatOS and IOS.
Use or create in a subclass of SNMP::Info. Do not use directly.
None.
These are methods that return scalar values from SNMP
(cpsGlobalClearSecureMacAddresses)
(cpsGlobalSNMPNotifControl)
(cpsGlobalSNMPNotifRate)
(cpsGlobalPortSecurityEnable)
(cpsGlobalTotalSecureAddress)
(cpsGlobalMaxSecureAddress)
CISCO-PORT-SECURITY-MIB - Interface Config Table(cpsIfInvalidSrcRateLimitValue)
(cpsIfInvalidSrcRateLimitEnable)
(cpsIfStickyEnable)
(cpsIfClearSecureMacAddresses)
(cpsIfShutdownTimeout)
(cpsIfUnicastFloodingEnable)
(cpsIfClearSecureAddresses)
(cpsIfSecureLastMacAddress)
(cpsIfViolationCount)
(cpsIfViolationAction)
(cpsIfStaticMacAddrAgingEnable)
(cpsIfSecureMacAddrAgingType)
(cpsIfSecureMacAddrAgingTime)
(cpsIfCurrentSecureMacAddrCount)
(cpsIfMaxSecureMacAddr)
(cpsIfPortSecurityStatus)
(cpsIfPortSecurityEnable)
CISCO-PORT-SECURITY-MIB::cpsIfVlanTable(cpsIfVlanCurSecureMacAddrCount)
(cpsIfVlanMaxSecureMacAddr)
(cpsIfVlanIndex)
CISCO-PORT-SECURITY-MIB::cpsIfVlanSecureMacAddrTable(cpsIfVlanSecureMacAddrRowStatus)
(cpsIfVlanSecureMacAddrRemainAge)
(cpsIfVlanSecureMacAddrType)
(cpsIfVlanSecureVlanIndex)
(cpsIfVlanSecureMacAddress)
CISCO-PORT-SECURITY-MIB::cpsSecureMacAddressTable(cpsSecureMacAddrRowStatus)
(cpsSecureMacAddrRemainingAge)
(cpsSecureMacAddrType)
(cpsSecureMacAddress)
IEEE8021-PAE-MIB::dot1xPaePortEntrydot1xPaePortCapabilities
Indicates the PAE functionality that this Port supports
and that may be managed through this MIB munged to return either
'dot1xPaePortAuthCapable' or 'dot1xPaePortSuppCapable'.
dot1xAuthLastEapolFrameSource
The source MAC address carried in the most recently received EAPOL frame.
Return either 'dot1xPaePortAuthCapable' or 'dot1xPaePortSuppCapable'
based upon bit value.
| SNMP-Info documentation | Contained in the SNMP-Info distribution. |
# SNMP::Info::CiscoPortSecurity # $Id$ # # Copyright (c) 2008 Eric Miller # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # * Redistributions of source code must retain the above copyright notice, # this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # * Neither the name of the University of California, Santa Cruz nor the # names of its contributors may be used to endorse or promote products # derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE # LIABLE FOR # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. package SNMP::Info::CiscoPortSecurity; use strict; use Exporter; @SNMP::Info::CiscoPortSecurity::ISA = qw/Exporter/; @SNMP::Info::CiscoPortSecurity::EXPORT_OK = qw//; use vars qw/$VERSION %MIBS %FUNCS %GLOBALS %MUNGE %PAECAPABILITIES/; $VERSION = '2.05'; %MIBS = ( 'CISCO-PORT-SECURITY-MIB' => 'ciscoPortSecurityMIB', 'CISCO-PAE-MIB' => 'ciscoPaeMIB', 'IEEE8021-PAE-MIB' => 'dot1xAuthLastEapolFrameSource', ); %GLOBALS = ( # CISCO-PORT-SECURITY-MIB 'cps_clear' => 'cpsGlobalClearSecureMacAddresses', 'cps_notify' => 'cpsGlobalSNMPNotifControl', 'cps_rate' => 'cpsGlobalSNMPNotifRate', 'cps_enable' => 'cpsGlobalPortSecurityEnable', 'cps_mac_count' => 'cpsGlobalTotalSecureAddress', 'cps_mac_max' => 'cpsGlobalMaxSecureAddress', ); %FUNCS = ( # CISCO-PORT-SECURITY-MIB::cpsIfConfigTable 'cps_i_limit_val' => 'cpsIfInvalidSrcRateLimitValue', 'cps_i_limit' => 'cpsIfInvalidSrcRateLimitEnable', 'cps_i_sticky' => 'cpsIfStickyEnable', 'cps_i_clear_type' => 'cpsIfClearSecureMacAddresses', 'cps_i_shutdown' => 'cpsIfShutdownTimeout', 'cps_i_flood' => 'cpsIfUnicastFloodingEnable', 'cps_i_clear' => 'cpsIfClearSecureAddresses', 'cps_i_mac' => 'cpsIfSecureLastMacAddress', 'cps_i_count' => 'cpsIfViolationCount', 'cps_i_action' => 'cpsIfViolationAction', 'cps_i_mac_static' => 'cpsIfStaticMacAddrAgingEnable', 'cps_i_mac_type' => 'cpsIfSecureMacAddrAgingType', 'cps_i_mac_age' => 'cpsIfSecureMacAddrAgingTime', 'cps_i_mac_count' => 'cpsIfCurrentSecureMacAddrCount', 'cps_i_mac_max' => 'cpsIfMaxSecureMacAddr', 'cps_i_status' => 'cpsIfPortSecurityStatus', 'cps_i_enable' => 'cpsIfPortSecurityEnable', # CISCO-PORT-SECURITY-MIB::cpsIfVlanTable 'cps_i_v_mac_count' => 'cpsIfVlanCurSecureMacAddrCount', 'cps_i_v_mac_max' => 'cpsIfVlanMaxSecureMacAddr', 'cps_i_v' => 'cpsIfVlanIndex', # CISCO-PORT-SECURITY-MIB::cpsIfVlanSecureMacAddrTable 'cps_i_v_mac_status' => 'cpsIfVlanSecureMacAddrRowStatus', 'cps_i_v_mac_age' => 'cpsIfVlanSecureMacAddrRemainAge', 'cps_i_v_mac_type' => 'cpsIfVlanSecureMacAddrType', 'cps_i_v_vlan' => 'cpsIfVlanSecureVlanIndex', 'cps_i_v_mac' => 'cpsIfVlanSecureMacAddress', # CISCO-PORT-SECURITY-MIB::cpsSecureMacAddressTable 'cps_m_status' => 'cpsSecureMacAddrRowStatus', 'cps_m_age' => 'cpsSecureMacAddrRemainingAge', 'cps_m_type' => 'cpsSecureMacAddrType', 'cps_m_mac' => 'cpsSecureMacAddress', # IEEE8021-PAE-MIB::dot1xPaePortEntry 'pae_i_capabilities' => 'dot1xPaePortCapabilities', 'pae_i_last_eapol_frame_source' => 'dot1xAuthLastEapolFrameSource', ); %MUNGE = ( 'cps_i_mac' => \&SNMP::Info::munge_mac, 'cps_m_mac' => \&SNMP::Info::munge_mac, 'cps_i_v_mac' => \&SNMP::Info::munge_mac, 'pae_i_last_eapol_frame_source' => \&SNMP::Info::munge_mac, 'pae_i_capabilities' => \&munge_pae_capabilities, ); %PAECAPABILITIES = ( 0 => 'dot1xPaePortAuthCapable', 1 => 'dot1xPaePortSuppCapable' ); sub munge_pae_capabilities { my $bits = shift; return unless defined $bits; my @vals = map( $PAECAPABILITIES{$_}, sprintf( "%x", unpack( 'b*', $bits ) ) ); return join( ' ', @vals ); } 1; __END__