Updates to documentation for Avaya acquisition of Nortel. Update of device support matrix for recent Avaya additions
This commit is contained in:
@@ -181,7 +181,7 @@ sub lldp_port {
|
||||
}
|
||||
}
|
||||
|
||||
# Nortel lldpRemPortDesc doesn't match ifDescr, but we can still
|
||||
# Avaya/Nortel lldpRemPortDesc doesn't match ifDescr, but we can still
|
||||
# figure out slot.port based upon lldpRemPortDesc
|
||||
if ( $port =~ /^(Unit\s+(\d+)\s+)?Port\s+(\d+)$/ ) {
|
||||
$port = defined $1 ? "$2.$3" : "$3";
|
||||
|
||||
@@ -93,7 +93,7 @@ sub os {
|
||||
}
|
||||
|
||||
sub vendor {
|
||||
return 'nortel';
|
||||
return 'avaya';
|
||||
}
|
||||
|
||||
sub model {
|
||||
@@ -469,7 +469,7 @@ __END__
|
||||
|
||||
=head1 NAME
|
||||
|
||||
SNMP::Info::Layer1::Bayhub - SNMP Interface to Bay / Nortel Hubs
|
||||
SNMP::Info::Layer1::Bayhub - SNMP Interface to Bay/Nortel/Avaya Hubs
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
@@ -541,7 +541,7 @@ These are methods that return scalar value from SNMP
|
||||
|
||||
=item $bayhub->vendor()
|
||||
|
||||
Returns 'nortel'
|
||||
Returns 'avaya'
|
||||
|
||||
=item $bayhub->os()
|
||||
|
||||
|
||||
@@ -344,8 +344,8 @@ __END__
|
||||
|
||||
=head1 NAME
|
||||
|
||||
SNMP::Info::Layer2::Baystack - SNMP Interface to Avaya Ethernet (Baystack)
|
||||
and VSP 7000 series switches
|
||||
SNMP::Info::Layer2::Baystack - SNMP Interface to Avaya Ethernet Switch
|
||||
(Baystack) and VSP 7000 series switches
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
@@ -369,7 +369,8 @@ Eric Miller
|
||||
=head1 DESCRIPTION
|
||||
|
||||
Provides abstraction to the configuration information obtainable from an
|
||||
Avaya Ethernet Switch (Baystack) and VSP 7000 series through SNMP.
|
||||
Avaya Ethernet Switch (formerly Nortel/Bay Baystack) and VSP 7000 series
|
||||
through SNMP.
|
||||
|
||||
For speed or debugging purposes you can call the subclass directly, but not
|
||||
after determining a more specific class using the method above.
|
||||
|
||||
@@ -545,7 +545,7 @@ sub model {
|
||||
}
|
||||
|
||||
sub vendor {
|
||||
return 'nortel';
|
||||
return 'avaya';
|
||||
}
|
||||
|
||||
sub os {
|
||||
@@ -1191,7 +1191,7 @@ sub e_vendor {
|
||||
|
||||
my %wf_e_vendor;
|
||||
foreach my $iid ( keys %$wf_e_idx ) {
|
||||
$wf_e_vendor{$iid} = 'nortel';
|
||||
$wf_e_vendor{$iid} = 'avaya';
|
||||
}
|
||||
return \%wf_e_vendor;
|
||||
}
|
||||
@@ -1378,7 +1378,8 @@ __END__
|
||||
|
||||
=head1 NAME
|
||||
|
||||
SNMP::Info::Layer3::BayRS - SNMP Interface to Nortel routers running BayRS.
|
||||
SNMP::Info::Layer3::BayRS - SNMP Interface to Avaya/Nortel routers running
|
||||
BayRS.
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
@@ -1401,7 +1402,7 @@ Eric Miller
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
Abstraction subclass for routers running Nortel BayRS.
|
||||
Abstraction subclass for routers running Avaya/Nortel BayRS.
|
||||
|
||||
For speed or debugging purposes you can call the subclass directly, but not
|
||||
after determining a more specific class using the method above.
|
||||
@@ -1474,7 +1475,7 @@ and the common model with this map :
|
||||
|
||||
=item $bayrs->vendor()
|
||||
|
||||
Returns 'nortel'
|
||||
Returns 'avaya'
|
||||
|
||||
=item $bayrs->os()
|
||||
|
||||
@@ -1583,7 +1584,7 @@ Returns reference to hash. Key: IID, Value: Hardware version.
|
||||
|
||||
=item $bayrs->e_vendor()
|
||||
|
||||
Returns reference to hash. Key: IID, Value: nortel.
|
||||
Returns reference to hash. Key: IID, Value: avaya.
|
||||
|
||||
=item $bayrs->e_serial()
|
||||
|
||||
|
||||
@@ -68,7 +68,7 @@ sub layers {
|
||||
}
|
||||
|
||||
sub vendor {
|
||||
return 'nortel';
|
||||
return 'avaya';
|
||||
}
|
||||
|
||||
sub model {
|
||||
@@ -162,8 +162,8 @@ __END__
|
||||
|
||||
=head1 NAME
|
||||
|
||||
SNMP::Info::Layer3::Contivity - SNMP Interface to Nortel VPN Routers
|
||||
(Contivity Extranet Switches).
|
||||
SNMP::Info::Layer3::Contivity - SNMP Interface to Avaya/Nortel VPN Routers
|
||||
(formerly Contivity Extranet Switches).
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
@@ -186,7 +186,8 @@ Eric Miller
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
Abstraction subclass for Nortel VPN Routers (Contivity Extranet Switch).
|
||||
Abstraction subclass for Avaya/Nortel VPN Routers (formerly Contivity
|
||||
Extranet Switch).
|
||||
|
||||
For speed or debugging purposes you can call the subclass directly, but not
|
||||
after determining a more specific class using the method above.
|
||||
@@ -227,7 +228,7 @@ These are methods that return scalar value from SNMP
|
||||
|
||||
=item $contivity->vendor()
|
||||
|
||||
Returns 'Nortel'
|
||||
Returns 'avaya'
|
||||
|
||||
=item $contivity->model()
|
||||
|
||||
|
||||
@@ -93,7 +93,7 @@ sub model {
|
||||
}
|
||||
|
||||
sub vendor {
|
||||
return 'nortel';
|
||||
return 'avaya';
|
||||
}
|
||||
|
||||
sub os {
|
||||
@@ -174,7 +174,8 @@ __END__
|
||||
|
||||
=head1 NAME
|
||||
|
||||
SNMP::Info::Layer3::N1600 - SNMP Interface to Nortel 16XX Network Devices
|
||||
SNMP::Info::Layer3::N1600 - SNMP Interface to Avaya/Nortel 16XX Network
|
||||
Devices
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
@@ -198,8 +199,8 @@ Eric Miller
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
Provides abstraction to the configuration information obtainable from a Nortel
|
||||
N16XX device through SNMP.
|
||||
Provides abstraction to the configuration information obtainable from an
|
||||
Avaya/Nortel N16XX device through SNMP.
|
||||
|
||||
For speed or debugging purposes you can call the subclass directly, but not
|
||||
after determining a more specific class using the method above.
|
||||
@@ -247,7 +248,7 @@ F<RAPID-CITY-MIB> and then parses out C<rcA>.
|
||||
|
||||
=item $n1600->vendor()
|
||||
|
||||
Returns 'nortel'
|
||||
Returns 'avaya'
|
||||
|
||||
=item $n1600->os()
|
||||
|
||||
|
||||
@@ -85,7 +85,7 @@ sub model {
|
||||
}
|
||||
|
||||
sub vendor {
|
||||
return 'nortel';
|
||||
return 'avaya';
|
||||
}
|
||||
|
||||
sub os {
|
||||
@@ -927,7 +927,7 @@ sub e_vendor {
|
||||
|
||||
my %rc_e_vendor;
|
||||
foreach my $iid ( keys %$rc_e_idx ) {
|
||||
$rc_e_vendor{$iid} = 'nortel';
|
||||
$rc_e_vendor{$iid} = 'avaya';
|
||||
}
|
||||
return \%rc_e_vendor;
|
||||
}
|
||||
@@ -1051,8 +1051,8 @@ __END__
|
||||
|
||||
=head1 NAME
|
||||
|
||||
SNMP::Info::Layer3::Passport - SNMP Interface to modular Nortel Ethernet Routing
|
||||
Switches (formerly Passport / Accelar)
|
||||
SNMP::Info::Layer3::Passport - SNMP Interface to modular Avaya
|
||||
Ethernet Routing Switch 8000 Series and VSP 9000 Series switches.
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
@@ -1075,10 +1075,10 @@ Eric Miller
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
Abstraction subclass for modular Nortel Ethernet Routing Switches (formerly
|
||||
Passport and Accelar Series Switches).
|
||||
Abstraction subclass for modular Avaya Ethernet Routing Switch 8000 Series
|
||||
(formerly Nortel/Bay Passport/Accelar) and VSP 9000 Series switches.
|
||||
|
||||
These devices have some of the same characteristics as the stackable Nortel
|
||||
These devices have some of the same characteristics as the stackable Avaya
|
||||
Ethernet Switches (Baystack). For example, extended interface information is
|
||||
gleaned from F<RAPID-CITY>.
|
||||
|
||||
@@ -1126,7 +1126,7 @@ F<RAPID-CITY-MIB> and then parses out C<rcA>.
|
||||
|
||||
=item $passport->vendor()
|
||||
|
||||
Returns 'nortel'
|
||||
Returns 'avaya'
|
||||
|
||||
=item $passport->os()
|
||||
|
||||
@@ -1273,7 +1273,7 @@ Returns reference to hash. Key: IID, Value: Hardware version.
|
||||
|
||||
=item $passport->e_vendor()
|
||||
|
||||
Returns reference to hash. Key: IID, Value: nortel.
|
||||
Returns reference to hash. Key: IID, Value: avaya.
|
||||
|
||||
=item $passport->e_serial()
|
||||
|
||||
|
||||
@@ -313,7 +313,7 @@ sub ns_e_vendor {
|
||||
|
||||
my %ns_e_vendor;
|
||||
foreach my $iid ( keys %$ns_e_idx ) {
|
||||
my $vendor = 'nortel';
|
||||
my $vendor = 'avaya';
|
||||
|
||||
$ns_e_vendor{$iid} = $vendor;
|
||||
}
|
||||
@@ -549,8 +549,8 @@ __END__
|
||||
|
||||
=head1 NAME
|
||||
|
||||
SNMP::Info::NortelStack - SNMP Interface to the Nortel F<S5-AGENT-MIB> and
|
||||
F<S5-CHASSIS-MIB>
|
||||
SNMP::Info::NortelStack - SNMP Interface to the Avaya/Nortel F<S5-AGENT-MIB>
|
||||
and F<S5-CHASSIS-MIB>
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
@@ -576,7 +576,7 @@ Eric Miller
|
||||
|
||||
SNMP::Info::NortelStack is a subclass of SNMP::Info that provides an interface
|
||||
to F<S5-AGENT-MIB> and F<S5-CHASSIS-MIB>. These MIBs are used across the
|
||||
Nortel Stackable Ethernet Switches (BayStack), as well as, older Nortel
|
||||
Avaya/Nortel Stackable Ethernet Switches (BayStack), as well as, older Nortel
|
||||
devices such as the Centillion family of ATM switches.
|
||||
|
||||
Use or create in a subclass of SNMP::Info. Do not use directly.
|
||||
@@ -857,7 +857,7 @@ Returns reference to hash. Key: IID, Value: Hardware version
|
||||
|
||||
=item $stack->ns_e_vendor()
|
||||
|
||||
Returns reference to hash. Key: IID, Value: nortel
|
||||
Returns reference to hash. Key: IID, Value: avaya
|
||||
|
||||
=item $stack->ns_e_serial()
|
||||
|
||||
|
||||
@@ -572,7 +572,7 @@ __END__
|
||||
|
||||
=head1 NAME
|
||||
|
||||
SNMP::Info::RapidCity - SNMP Interface to the Nortel RapidCity MIB
|
||||
SNMP::Info::RapidCity - SNMP Interface to the Avaya/Nortel RapidCity MIB
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
@@ -597,9 +597,9 @@ Eric Miller
|
||||
=head1 DESCRIPTION
|
||||
|
||||
SNMP::Info::RapidCity is a subclass of SNMP::Info that provides an interface
|
||||
to the C<RAPID-CITY> MIB. This MIB is used across the Nortel Ethernet Routing
|
||||
Switch and Ethernet Switch product lines (Formerly known as Passport,
|
||||
BayStack, and Accelar).
|
||||
to the C<RAPID-CITY> MIB. This MIB is used across the Avaya/Nortel Ethernet
|
||||
Routing Switch and Ethernet Switch product lines (Formerly known as Passport,
|
||||
BayStack, and Accelar), as well as, the VSP 9000 and 7000 series.
|
||||
|
||||
Use or create in a subclass of SNMP::Info. Do not use directly.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user