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:
parent
cf12d13804
commit
3239c4b7bb
7 changed files with 64 additions and 0 deletions
12
pages/common/snmpbulkget.md
Normal file
12
pages/common/snmpbulkget.md
Normal 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
8
pages/common/snmpdf.md
Normal 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}}`
|
12
pages/common/snmpgetnext.md
Normal file
12
pages/common/snmpgetnext.md
Normal 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
8
pages/common/snmpset.md
Normal 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}}`
|
8
pages/common/snmpstatus.md
Normal file
8
pages/common/snmpstatus.md
Normal 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}}`
|
8
pages/common/snmptable.md
Normal file
8
pages/common/snmptable.md
Normal 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
8
pages/common/snmptest.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue