mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-09-01 15:51:29 +08: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:
@@ -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}}`
|
||||
@@ -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}}`
|
||||
@@ -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}}`
|
||||
@@ -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}}`
|
||||
@@ -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}}`
|
||||
@@ -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}}`
|
||||
@@ -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}}`
|
||||
Reference in New Issue
Block a user