diff --git a/tldr/chronyc b/tldr/chronyc new file mode 100644 index 00000000..4aefe489 --- /dev/null +++ b/tldr/chronyc @@ -0,0 +1,33 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# chronyc + +> Query the Chrony NTP daemon. +> More information: . + +- Start `chronyc` in interactive mode: + +`chronyc` + +- Display tracking stats for the Chrony daemon: + +`chronyc tracking` + +- Print the time sources that Chrony is currently using: + +`chronyc sources` + +- Display stats for sources currently used by chrony daemon as a time source: + +`chronyc sourcestats` + +- Step the system clock immediately, bypassing any slewing: + +`chronyc makestep` + +- Display verbose information about each NTP source: + +`chronyc ntpdata` diff --git a/tldr/snmpbulkget b/tldr/snmpbulkget new file mode 100644 index 00000000..276aed2a --- /dev/null +++ b/tldr/snmpbulkget @@ -0,0 +1,17 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# snmpbulkget + +> Query the next value in the MIB tree and all of its adjacent values. +> More information: . + +- 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}}` diff --git a/tldr/snmpdf b/tldr/snmpdf new file mode 100644 index 00000000..86580000 --- /dev/null +++ b/tldr/snmpdf @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# snmpdf + +> Fetch disk space usage information. +> More information: . + +- Fetch the disk space usage: + +`snmpget -v {{version}} -c {{community}} {{ip}}` diff --git a/tldr/snmpgetnext b/tldr/snmpgetnext new file mode 100644 index 00000000..9f1991c9 --- /dev/null +++ b/tldr/snmpgetnext @@ -0,0 +1,17 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# snmpgetnext + +> Query the next value in the MIB tree. +> More information: . + +- 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}}` diff --git a/tldr/snmpset b/tldr/snmpset new file mode 100644 index 00000000..108c280a --- /dev/null +++ b/tldr/snmpset @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# snmpset + +> Set a value using the SNMP protocol. +> More information: . + +- Set a value: + +`snmpget -v {{version}} -c {{community}} {{ip}} {{oid}} {{value_type}} {{value}}` diff --git a/tldr/snmpstatus b/tldr/snmpstatus new file mode 100644 index 00000000..d340253c --- /dev/null +++ b/tldr/snmpstatus @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# snmpstatus + +> Fetch fixed MIB status values. +> More information: . + +- Fetch the values: + +`snmpget -v {{version}} -c {{community}} {{ip}}` diff --git a/tldr/snmptable b/tldr/snmptable new file mode 100644 index 00000000..8d58e0e1 --- /dev/null +++ b/tldr/snmptable @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# snmptable + +> Fetch data in tabular format. +> More information: . + +- Fetch data: + +`snmpget -v {{version}} -c {{community}} {{ip}} {{oid}}` diff --git a/tldr/snmptest b/tldr/snmptest new file mode 100644 index 00000000..38f00c0e --- /dev/null +++ b/tldr/snmptest @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# snmptest + +> Start an interactive SNMP prompt. +> More information: . + +- Start the prompt: + +`snmpget -v {{version}} -c {{community}} {{ip}}`