release 2.032003

This commit is contained in:
Oliver Gorwits
2015-05-05 20:40:52 +01:00
parent add4a564cf
commit 3f69dfdd07
4 changed files with 20 additions and 18 deletions

View File

@@ -1,9 +1,9 @@
2.032003 - 2015-04-25
2.032003 - 2015-05-05
[ENHANCEMENTS]
* THANK YOUs
* Allow renumber of device to one of its alias IPs
* Allow renumber of device to one of its alias IPs in netdisco-do
* [#216] Ability to enter IP prefix in "Discover" form in web
[BUG FIXES]

View File

@@ -7,11 +7,11 @@ build_requires:
ExtUtils::MakeMaker: 6.59
Test::More: 0.88
configure_requires:
DBIx::Class: 0.082801
DBIx::Class: '0.082801'
ExtUtils::MakeMaker: 6.59
distribution_type: module
dynamic_config: 1
generated_by: 'Module::Install version 1.14'
generated_by: 'Module::Install version 1.15'
license: bsd
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -39,7 +39,7 @@ requires:
DBIx::Class: 0.08281
DBIx::Class::Helpers: 2.024
Daemon::Control: 0.001006
Dancer: 1.3132
Dancer: '1.3132'
Dancer::Plugin::Auth::Extensible: 0.3
Dancer::Plugin::DBIC: 0.2001
Dancer::Plugin::Passphrase: 2.0.1
@@ -68,8 +68,8 @@ requires:
Plack::Middleware::Expires: 0.03
Plack::Middleware::ReverseProxy: 0.15
Role::Tiny: 1.002005
SNMP::Info: 3.26
SQL::Translator: 0.11018
SNMP::Info: 3.27
SQL::Translator: '0.11018'
Sereal: 0
Socket6: 0.23
Starman: 0.4008
@@ -92,4 +92,4 @@ resources:
homepage: http://netdisco.org/
license: http://opensource.org/licenses/bsd-license.php
repository: git://git.code.sf.net/p/netdisco/netdisco-ng
version: 2.032002
version: '2.032003'

View File

@@ -4,7 +4,7 @@ use strict;
use warnings;
use 5.010_000;
our $VERSION = '2.032002';
our $VERSION = '2.032003';
use App::Netdisco::Configuration;
use Module::Find ();

View File

@@ -36,7 +36,7 @@ but they are backwards compatible.
=back
=head1 2.033000
=head1 2.032003
=head2 General Notices
@@ -46,15 +46,17 @@ IP/name of a device will be either the IP specified for manual discovery, or
the IP reported to a neighbor port during automatic discovery. For the latter
you can often influence this through device configuration (LLDP advertise...).
Via configuration there are two further settings. C<reverse_sysname> tells
Netdisco to take the SNMP System Name and do a reverse DNS lookup for the
canonical IP. The new configuration setting C<device_identity> allows you to
set rules for picking the canonical interface from a device based on any of
its properties (model, vendor, OS, OS version, etc).
=cut
Typical use would be either to leave Netdisco to use the discovered IP, or use
C<device_identity> to control the canonical IP/name for classes of device
based on model/vendor, etc.
# Via configuration there are two further settings. C<reverse_sysname> tells
# Netdisco to take the SNMP System Name and do a reverse DNS lookup for the
# canonical IP. The new configuration setting C<device_identity> allows you to
# set rules for picking the canonical interface from a device based on any of
# its properties (model, vendor, OS, OS version, etc).
#
# Typical use would be either to leave Netdisco to use the discovered IP, or use
# C<device_identity> to control the canonical IP/name for classes of device
# based on model/vendor, etc.
=head1 2.032000