From 01aa330d38cdd13d636a45d7de03b873fc047c60 Mon Sep 17 00:00:00 2001 From: Jonathan Provost Date: Mon, 21 Nov 2016 14:29:58 -0500 Subject: [PATCH] Fix OID for sysDescr and sysObjectID --- virtualpdu/pdu/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/virtualpdu/pdu/__init__.py b/virtualpdu/pdu/__init__.py index 27b6635..223f790 100644 --- a/virtualpdu/pdu/__init__.py +++ b/virtualpdu/pdu/__init__.py @@ -20,11 +20,11 @@ from virtualpdu import core logger = logging.getLogger(__name__) # A textual description of the entity. -sysDescr = (1, 3, 6, 1, 2, 1, 1, 1) +sysDescr = (1, 3, 6, 1, 2, 1, 1, 1, 0) # The vendor's authoritative identification of the network management # subsystem contained in the entity. -sysObjectID = (1, 3, 6, 1, 2, 1, 1, 2) +sysObjectID = (1, 3, 6, 1, 2, 1, 1, 2, 0) class PDUFeature(object):