ESXI SNMP v3
參考網址:https://docs.vmware.com/tw/VMware-vSphere/6.5/com.vmware.vsphere.monitoring.doc/GUID-2E4B0F2A-11D8-4649-AC6C-99F89CE93026.html #設定引擎ID(十六進制字串長度需介於5~32) esxcli system snmp set --engineid id #設定認證加密方式 esxcli system snmp set --authentication 加密方式(none, SHA1, MD5) #設定隱私加密方式 esxcli system snmp set --privacy 加密方式(none, AES128) #產生驗證、隱私雜湊值 esxcli system snmp hash --auth-hash authsecret --priv-hash privsecret --raw-secret authsecret, privsecret:請自行輸入 範例輸入 esxcli system snmp hash --auth-hash dragonyue --priv-hash dragonyue --raw-secret 範例輸出 Authhash: 52bc8e54a245feefb806750f869900a4251a0028 Privhash: 52bc8e54a245feefb806750f869900a4251a0028 #設定SNMP使用者 esxcli system snmp set --users userid/authhash/privhash/security userid:請自行輸入 authhash, privihash:請用產生出來的雜湊值 security:auth (代表僅驗證), priv (代表驗證和隱私), none (代表無驗證或隱私) #啟用SNMP esxcli system snmp set --enable true #查看SNMP設定資訊 esxcli system snmp get