- A+
所属分类:服务器
- ilorest CPU超线程
- 查看:
- ilorest get ProcHyperthreading --selector=Bios. -u Administrator -p 123456 --url=10.1.1.1
- 开启:
- ilorest set ProcHyperthreading=Enabled --selector=Bios. --commit -u Administrator -p 123456 --url=10.1.1.1
- 关闭:
- ilorest set ProcHyperthreading=Disabled --selector=Bios. --commit -u Administrator -p 123456 --url=10.1.1.1
- redfish CPU超线程
- 查询:
- curl -s -k GET https://10.1.1.1/redfish/v1/systems/1/bios/settings -u Administrator:123456 -L | json_reformat | grep -i ProcHyperthreading
- 禁用:
- 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
- 开启:
- 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