*: fix errors reported by languagetool (#6069)

This commit is contained in:
Seth Falco
2021-08-15 19:59:09 +02:00
committed by GitHub
parent 3fbefc8b77
commit 3e4c519004
281 changed files with 433 additions and 429 deletions

View File

@@ -7,18 +7,18 @@
`snmpwalk -v1 -c {{community}} {{ip}}`
- Query specific system information on a remote host by OID using SNMPv2 on a specified port:
- Query system information on a remote host by OID using SNMPv2 on a specified port:
`snmpwalk -v2c -c {{community}} {{ip}}:{{port}} {{oid}}`
- Query specific system information on a remote host by OID using SNMPv3 and authentication without encryption:
- Query system information on a remote host by OID using SNMPv3 and authentication without encryption:
`snmpwalk -v3 -l {{authNoPriv}} -u {{username}} -a {{MD5|SHA}} -A {{passphrase}} {{ip}} {{oid}}`
- Query specific system information on a remote host by OID using SNMPv3, authentication, and encryption:
- Query system information on a remote host by OID using SNMPv3, authentication, and encryption:
`snmpwalk -v3 -l {{authPriv}} -u {{username}} -a {{MD5|SHA}} -A {{auth_passphrase}} -x {{DES|AES}} -X {{enc_passphrase}} {{ip}} {{oid}}`
- Query specific system information on a remote host by OID using SNMPv3 without authentication or encryption:
- Query system information on a remote host by OID using SNMPv3 without authentication or encryption:
`snmpwalk -v3 -l {{noAuthNoPriv}} -u {{username}} {{ip}} {{oid}}`