Changes between Version 22 and Version 23 of notes/vmware
- Timestamp:
- 2015-12-07T12:05:20Z (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
notes/vmware
v22 v23 124 124 125 125 }}} 126 127 [[br]] 128 129 == snmp v3 в esxi 130 {{{#!bash 131 esxcli system snmp set --authentication MD5 132 esxcli system snmp set --privacy AES128 133 esxcli system snmp hash -r -A password1 -X password2 134 esxcli system snmp set --users cacti/hash_from_prev_command1/hash_from_prev_command2/priv 135 esxcli system snmp set --enable true 136 snmpwalk -v3 -u cacti -l AuthPriv -a MD5 -A password1 -x AES -X password2 esxi.host 137 }}}