HPE DL380 Gen10服务器通过iLO查看/开启/关闭CPU超线程1 min read

  • A+
所属分类:服务器

  

  1. ilorest CPU超线程  
  2. 查看:  
  3. ilorest get ProcHyperthreading --selector=Bios. -u Administrator -p 123456 --url=10.1.1.1  
  4. 开启:  
  5. ilorest set ProcHyperthreading=Enabled --selector=Bios. --commit -u Administrator -p 123456 --url=10.1.1.1  
  6. 关闭:  
  7. ilorest set ProcHyperthreading=Disabled --selector=Bios. --commit -u Administrator -p 123456 --url=10.1.1.1  
  8.   
  9. redfish CPU超线程  
  10. 查询:  
  11. curl -s -k GET https://10.1.1.1/redfish/v1/systems/1/bios/settings -u Administrator:123456 -L | json_reformat | grep -i ProcHyperthreading  
  12. 禁用:  
  13. curl -H 'Content-Type: application/json' -X PATCH --data '{"Attributes": {"ProcHyperthreading":"Disabled"}}' -i https://10.1.1.1/redfish/v1/Systems/1/bios/settings/ -u Administrator:123456 --insecure  
  14. 开启:  
  15. curl -H 'Content-Type: application/json' -X PATCH --data '{"Attributes": {"ProcHyperthreading":"Enabled"}}' -i https://10.1.1.1/redfish/v1/Systems/1/bios/settings/ -u Administrator:123456 --insecure  

  

 

zhaoyulin

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: