Changes between Version 22 and Version 23 of notes/vmware


Ignore:
Timestamp:
2015-12-07T12:05:20Z (9 years ago)
Author:
root
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • notes/vmware

    v22 v23  
    124124
    125125}}}
     126
     127[[br]]
     128
     129== snmp v3 в esxi
     130{{{#!bash
     131esxcli system snmp set --authentication MD5
     132esxcli system snmp set --privacy AES128
     133esxcli system snmp hash -r -A password1 -X password2
     134esxcli system snmp set --users cacti/hash_from_prev_command1/hash_from_prev_command2/priv
     135esxcli system snmp set --enable true
     136snmpwalk -v3 -u cacti -l AuthPriv -a MD5 -A password1 -x AES -X password2 esxi.host
     137}}}