forked from etingof/pysnmp
-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ IMPORTS | |
pysnmp MODULE-IDENTITY | ||
LAST-UPDATED "201704140000Z" | ||
ORGANIZATION "The PySNMP Project" | ||
CONTACT-INFO "E-mail: Lex Li <[email protected]> | ||
CONTACT-INFO "E-mail: LeXtudio Inc. <[email protected]> | ||
GitHub: https://github.com/lextudio/pysnmp" | ||
DESCRIPTION | ||
"PySNMP top-level MIB tree infrastructure" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ IMPORTS | |
pysnmpSourceMIB MODULE-IDENTITY | ||
LAST-UPDATED "201704140000Z" | ||
ORGANIZATION "The PySNMP Project" | ||
CONTACT-INFO "E-mail: Lex Li <[email protected]> | ||
CONTACT-INFO "E-mail: LeXtudio Inc. <[email protected]> | ||
GitHub: https://github.com/lextudio/pysnmp" | ||
DESCRIPTION | ||
"This MIB module defines implementation specific objects | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,12 +16,12 @@ IMPORTS | |
pysnmpUsmMIB MODULE-IDENTITY | ||
LAST-UPDATED "201704140000Z" | ||
ORGANIZATION "The PySNMP Project" | ||
CONTACT-INFO "E-mail: Lex Li <[email protected]> | ||
CONTACT-INFO "E-mail: LeXtudio Inc. <[email protected]> | ||
GitHub: https://github.com/lextudio/pysnmp" | ||
DESCRIPTION | ||
"This MIB module defines objects specific to User | ||
Security Model (USM) implementation at PySNMP." | ||
REVISION "202211120000Z" | ||
REVISION "202211120000Z" | ||
DESCRIPTION "Updated contact" | ||
REVISION "201908300000Z" | ||
DESCRIPTION "Added USM key types" | ||
|
@@ -88,7 +88,7 @@ pysnmpUsmSecretTable OBJECT-TYPE | |
MAX-ACCESS not-accessible | ||
STATUS current | ||
DESCRIPTION | ||
"The table of USM users passphrases configured in the SNMP | ||
"The table of USM users passphrases configured in the SNMP | ||
engine's Local Configuration Datastore (LCD)." | ||
::= { pysnmpUsmMIBObjects 2 } | ||
|
||
|
@@ -151,7 +151,7 @@ pysnmpUsmKeyTable OBJECT-TYPE | |
MAX-ACCESS not-accessible | ||
STATUS current | ||
DESCRIPTION | ||
"The table of USM users localized keys configured in the | ||
"The table of USM users localized keys configured in the | ||
SNMP engine's Local Configuration Datastore (LCD)." | ||
::= { pysnmpUsmMIBObjects 3 } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,8 +87,8 @@ | |
if mibBuilder.loadTexts: | ||
pysnmp.setOrganization("The PySNMP Project") | ||
if mibBuilder.loadTexts: | ||
pysnmp.setContactInfo( | ||
"E-mail: Lex Li <[email protected]> GitHub: https://github.com/lextudio/pysnmp" | ||
pysnmp.set_contact_info( | ||
"E-mail: LeXtudio Inc. <[email protected]> GitHub: https://github.com/lextudio/pysnmp" | ||
) | ||
if mibBuilder.loadTexts: | ||
pysnmp.setDescription("PySNMP top-level MIB tree infrastructure") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,8 +89,8 @@ | |
if mibBuilder.loadTexts: | ||
pysnmpSourceMIB.setOrganization("The PySNMP Project") | ||
if mibBuilder.loadTexts: | ||
pysnmpSourceMIB.setContactInfo( | ||
"E-mail: Lex Li <[email protected]> GitHub: https://github.com/lextudio/pysnmp" | ||
pysnmpSourceMIB.set_contact_info( | ||
"E-mail: LeXtudio Inc. <[email protected]> GitHub: https://github.com/lextudio/pysnmp" | ||
) | ||
if mibBuilder.loadTexts: | ||
pysnmpSourceMIB.setDescription( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,8 +88,8 @@ | |
if mibBuilder.loadTexts: | ||
pysnmpUsmMIB.setOrganization("The PySNMP Project") | ||
if mibBuilder.loadTexts: | ||
pysnmpUsmMIB.setContactInfo( | ||
"E-mail: Lex Li <[email protected]> GitHub: https://github.com/lextudio/pysnmp" | ||
pysnmpUsmMIB.set_contact_info( | ||
"E-mail: LeXtudio Inc. <[email protected]> GitHub: https://github.com/lextudio/pysnmp" | ||
) | ||
if mibBuilder.loadTexts: | ||
pysnmpUsmMIB.setDescription( | ||
|