1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 11:33:33 +02:00

snmp{getnext, bulkget, set, test, status, table, df}: add page (#15760)

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
This commit is contained in:
Managor 2025-02-22 18:01:12 +02:00 committed by GitHub
parent cf12d13804
commit 3239c4b7bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 64 additions and 0 deletions

View file

@ -0,0 +1,12 @@
# snmpbulkget
> Query the next value in the MIB tree and all of its adjacent values.
> More information: <https://manned.org/snmpbulkget>.
- Request the next value from the SNMP agent:
`snmpbulkget -v {{version}} -c {{community}} {{ip}} {{oid}}`
- Display the full Object Identifier (OID) path:
`snmpbulkget -v {{version}} -c {{community}} -O f {{ip}} {{oid}}`

8
pages/common/snmpdf.md Normal file
View file

@ -0,0 +1,8 @@
# snmpdf
> Fetch disk space usage information.
> More information: <https://manned.org/snmpdf>.
- Fetch the disk space usage:
`snmpget -v {{version}} -c {{community}} {{ip}}`

View file

@ -0,0 +1,12 @@
# snmpgetnext
> Query the next value in the MIB tree.
> More information: <https://manned.org/snmpgetnext>.
- Request the next value from the SNMP agent:
`snmpget -v {{version}} -c {{community}} {{ip}} {{oid}}`
- Display the full Object Identifier (OID) path:
`snmpget -v {{version}} -c {{community}} -O f {{ip}} {{oid}}`

8
pages/common/snmpset.md Normal file
View file

@ -0,0 +1,8 @@
# snmpset
> Set a value using the SNMP protocol.
> More information: <https://manned.org/snmpset>.
- Set a value:
`snmpget -v {{version}} -c {{community}} {{ip}} {{oid}} {{value_type}} {{value}}`

View file

@ -0,0 +1,8 @@
# snmpstatus
> Fetch fixed MIB status values.
> More information: <https://manned.org/snmpstatus>.
- Fetch the values:
`snmpget -v {{version}} -c {{community}} {{ip}}`

View file

@ -0,0 +1,8 @@
# snmptable
> Fetch data in tabular format.
> More information: <https://manned.org/snmptable>.
- Fetch data:
`snmpget -v {{version}} -c {{community}} {{ip}} {{oid}}`

8
pages/common/snmptest.md Normal file
View file

@ -0,0 +1,8 @@
# snmptest
> Start an interactive SNMP prompt.
> More information: <https://manned.org/snmptest>.
- Start the prompt:
`snmpget -v {{version}} -c {{community}} {{ip}}`