Send Netdot-devel mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        https://osl.uoregon.edu/mailman/listinfo/netdot-devel
or, via email, send a message with subject or body 'help' to
        [email protected]

You can reach the person managing the list at
        [email protected]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Netdot-devel digest..."


Today's Topics:

   1. [Netdot - Support #1863] (New) ERROR:
      Device::get_snmp_session ([email protected])
   2. [SCM] Netdot branch netdot-1.0 updated.
      netdot-1.0.7-21-gcdd27c7 ([email protected])
   3. [SCM] Netdot branch master updated.       netdot-1.0.7-21-gcdd27c7
      ([email protected])


----------------------------------------------------------------------

Message: 1
Date: Wed, 27 May 2015 08:02:39 -0700
From: [email protected]
Subject: [Netdot-devel] [Netdot - Support #1863] (New) ERROR:
        Device::get_snmp_session
To: [email protected], [email protected],
        [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=utf-8


Issue #1863 has been reported by major dom.

----------------------------------------
Support #1863: ERROR: Device::get_snmp_session
https://osl.uoregon.edu/redmine/issues/1863

Author: major dom
Status: New
Priority: Normal
Assignee: Carlos Vicente
Category: Netdot
Target version: 1.0.7
Resolution: 


Hello,

I'm new on your product. I've just installed it today. I want to create a new 
device with SNMPV3 but I do it via web or CLI, I've got the answer "ERROR: 
Device::get_snmp_session" "SNMPv3 failed"

The device is an HP 3100 switch. I can do a snmpwalk on it. Cacti is also 
configured with this switch. I don't understand why it doesn't work with netdot.

I think the problem comes from my config, but I don't find the prblem. (Even 
when I browse the web)

Could you help me ? Thank you


-- 
You have received this notification because you have either subscribed to it, 
or are involved in it.
To change your notification preferences, please click here: 
http://osl.uoregon.edu/redmine/my/account


------------------------------

Message: 2
Date: Wed, 27 May 2015 08:55:58 -0700
From: [email protected]
Subject: [Netdot-devel] [SCM] Netdot branch netdot-1.0 updated.
        netdot-1.0.7-21-gcdd27c7
To: [email protected]
Message-ID: <[email protected]>

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Netdot".

The branch, netdot-1.0 has been updated
       via  cdd27c74d5061c202947c15997c193dc64e2ac45 (commit)
      from  b4ede249b9855ba8350de19b456847bf7ee2b7eb (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit cdd27c74d5061c202947c15997c193dc64e2ac45
Author: Carlos Vicente <[email protected]>
Date:   Wed May 27 11:55:21 2015 -0400

    More human-friendly error when trying to delete DNS record which is the 
name of a device

diff --git a/htdocs/management/host.html b/htdocs/management/host.html
index ec9ad24..2719026 100644
--- a/htdocs/management/host.html
+++ b/htdocs/management/host.html
@@ -74,7 +74,6 @@ if ( $submit ){
        }
        eval {
            Netdot::Model->do_transaction(sub{
-               my @ips = map { $_->ipblock } $rr->a_records();
                $deleted_label = $rr->get_label();
                delete $rrs{$rr->id};
                $rr->delete();
@@ -153,15 +152,21 @@ if ( $rr && $action eq 'delete' ){
     print '<div class="container">';
     print '<div class="containerhead"><b>Delete Records</b></div>';
     print '<div class="containerbody">';
-   
-    print '<p>';
-    print '<strong>Are you sure you want to delete the records 
below?</strong>';
-    print '<p>';
-    print '<p>';
-    print '<input type="hidden" name="id" value="'.$rr.'">';
-    print '<input type="hidden" name="action" value="delete_confirm" >';
-    print '<input type="button" name="cancel_button" value="cancel" 
onClick="history.go(-1);"> ';
-    print '<input type="submit" name="submit" value="yes" >';
+
+    if ( $rr->devices ){
+       print '<p>';
+       print '<strong>You cannot delete this record because it is the name of 
a device</strong>';
+       print '<p>';
+    }else{
+       print '<p>';
+       print '<strong>Are you sure you want to delete the records 
below?</strong>';
+       print '<p>';
+       print '<p>';
+       print '<input type="hidden" name="id" value="'.$rr.'">';
+       print '<input type="hidden" name="action" value="delete_confirm" >';
+       print '<input type="button" name="cancel_button" value="cancel" 
onClick="history.go(-1);"> ';
+       print '<input type="submit" name="submit" value="yes" >';
+    }
     print '</div>';
     print '</div>';
     print '<p>';

-----------------------------------------------------------------------

Summary of changes:
 htdocs/management/host.html | 25 +++++++++++++++----------
 1 file changed, 15 insertions(+), 10 deletions(-)


hooks/post-receive
-- 
Netdot


------------------------------

Message: 3
Date: Wed, 27 May 2015 08:56:24 -0700
From: [email protected]
Subject: [Netdot-devel] [SCM] Netdot branch master updated.
        netdot-1.0.7-21-gcdd27c7
To: [email protected]
Message-ID: <[email protected]>

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Netdot".

The branch, master has been updated
       via  cdd27c74d5061c202947c15997c193dc64e2ac45 (commit)
       via  b4ede249b9855ba8350de19b456847bf7ee2b7eb (commit)
       via  ce4afdd8ab03bd86386fda38b32cc7af933165a2 (commit)
      from  c6827622422d45c026701ebd9e78ce8da260d1e2 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 etc/Default.conf              | 14 ++++++++++++++
 htdocs/management/host.html   | 25 +++++++++++++++----------
 htdocs/management/ip.html     |  4 ++--
 lib/Netdot/Exporter/Rancid.pm | 13 +------------
 4 files changed, 32 insertions(+), 24 deletions(-)


hooks/post-receive
-- 
Netdot


------------------------------

_______________________________________________
Netdot-devel mailing list
[email protected]
https://osl.uoregon.edu/mailman/listinfo/netdot-devel


End of Netdot-devel Digest, Vol 98, Issue 12
********************************************

Reply via email to