rename IEEE802dot3ag to IEEE802dot3ad

This commit is contained in:
Oliver Gorwits
2014-01-19 17:11:42 +00:00
parent 7240f034e5
commit d68b2047b0
5 changed files with 13 additions and 13 deletions

View File

@@ -6,7 +6,7 @@ version 3.11
* [#31] port-channel (aggregate) support. Aggregate support added in new * [#31] port-channel (aggregate) support. Aggregate support added in new
agg_ports() method. Inital support added for Arista (ifStack), agg_ports() method. Inital support added for Arista (ifStack),
Avaya (MLT), Brocade (MST), and Cisco (802.3ag). Avaya (MLT), Brocade (MST), and Cisco (802.3ad).
[ENHANCEMENTS] [ENHANCEMENTS]

View File

@@ -381,11 +381,11 @@ standards based 802.11 wireless devices.
See documentation in L<SNMP::Info::IEEE802dot11> for details. See documentation in L<SNMP::Info::IEEE802dot11> for details.
=item SNMP::Info::IEEE802dot3ag =item SNMP::Info::IEEE802dot3ad
SNMP Interface to IEEE Aggregated Links. F<IEEE8023-LAG-MIB> SNMP Interface to IEEE Aggregated Links. F<IEEE8023-LAG-MIB>
See documentation in L<SNMP::Info::IEEE802dot3ag> for details. See documentation in L<SNMP::Info::IEEE802dot3ad> for details.
=item SNMP::Info::LLDP =item SNMP::Info::LLDP

View File

@@ -31,10 +31,10 @@ package SNMP::Info::CiscoAgg;
use strict; use strict;
use Exporter; use Exporter;
use SNMP::Info::IEEE802dot3ag 'agg_ports_lag'; use SNMP::Info::IEEE802dot3ad 'agg_ports_lag';
@SNMP::Info::CiscoAgg::ISA = qw/ @SNMP::Info::CiscoAgg::ISA = qw/
SNMP::Info::IEEE802dot3ag SNMP::Info::IEEE802dot3ad
Exporter Exporter
/; /;
@SNMP::Info::CiscoAgg::EXPORT_OK = qw/ @SNMP::Info::CiscoAgg::EXPORT_OK = qw/
@@ -46,7 +46,7 @@ use vars qw/$VERSION %MIBS %FUNCS %GLOBALS %MUNGE/;
$VERSION = '3.10'; $VERSION = '3.10';
%MIBS = ( %MIBS = (
%SNMP::Info::IEEE802dot3ag::MIBS, %SNMP::Info::IEEE802dot3ad::MIBS,
'CISCO-PAGP-MIB' => 'pagpGroupIfIndex', 'CISCO-PAGP-MIB' => 'pagpGroupIfIndex',
); );
@@ -98,7 +98,7 @@ Use or create in a subclass of SNMP::Info. Do not use directly.
=head2 Inherited Classes =head2 Inherited Classes
L<SNMP::Info::IEEE802dot3ag> L<SNMP::Info::IEEE802dot3ad>
=head2 Required MIBs =head2 Required MIBs

View File

@@ -1,4 +1,4 @@
# SNMP::Info::IEEE802dot3ag # SNMP::Info::IEEE802dot3ad
# #
# Copyright (c) 2014 SNMP::Info Developers # Copyright (c) 2014 SNMP::Info Developers
# All rights reserved. # All rights reserved.
@@ -27,17 +27,17 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
package SNMP::Info::IEEE802dot3ag; package SNMP::Info::IEEE802dot3ad;
use strict; use strict;
use Exporter; use Exporter;
use SNMP::Info::Aggregate; use SNMP::Info::Aggregate;
@SNMP::Info::IEEE802dot3ag::ISA = qw/ @SNMP::Info::IEEE802dot3ad::ISA = qw/
SNMP::Info::Aggregate SNMP::Info::Aggregate
Exporter Exporter
/; /;
@SNMP::Info::IEEE802dot3ag::EXPORT_OK = qw/ @SNMP::Info::IEEE802dot3ad::EXPORT_OK = qw/
agg_ports_lag agg_ports_lag
/; /;
@@ -86,7 +86,7 @@ __END__
=head1 NAME =head1 NAME
SNMP::Info::IEEE802dot3ag - SNMP Interface to IEEE Aggregated Links SNMP::Info::IEEE802dot3ad - SNMP Interface to IEEE Aggregated Links
=head1 AUTHOR =head1 AUTHOR

View File

@@ -25,7 +25,7 @@ Info/Entity.pm
Info/EtherLike.pm Info/EtherLike.pm
Info/FDP.pm Info/FDP.pm
Info/IEEE802dot11.pm Info/IEEE802dot11.pm
Info/IEEE802dot3ag.pm Info/IEEE802dot3ad.pm
Info/IPv6.pm Info/IPv6.pm
Info/Layer1.pm Info/Layer1.pm
Info/Layer1/Allied.pm Info/Layer1/Allied.pm