Redfish protocol testing tool – Postman

  1. 1. Access to tools and materials
  2. 2. Simple instruction
    1. 1. Example of GET class
    2. 2. Example of PATCH class
  3. 3. Common commands

§  1. Access to tools and information

Postman tool acquisition

Server Redfish interface documentation

Read "Applicable Products" in the interface documentation before using to check whether your server supports this protocol.

§  2. Simple instructions for use

§  1. Example of GET class

View system information: SystemOverview

Check out the documentation:

Practice:

§  2. Example of PATCH class

First get the specified user information:

Check the document:

Etag must be required: the way to obtain it is to find it in the response header returned by GET.

Modified according to the documentation:


Successfully modified:

See the documentation for other examples.

§  3. Common commands

 
 

1

2

3

1.获取系统信息

4

白牌: GET https://150.1.24.109/redfish/v1/SystemInfo

5

华为:

6

1) 主机名称

7

https://150.1.24.109/redfish/v1/SystemOverview

8

https://150.1.24.109/redfish/v1/Managers/1

9

2) 主机BMC管理地址

10

https://150.1.24.109/redfish/v1/Chassis/1/Drives/HDDPlaneDisk0

11

3) 本地存储信息

12

https://150.1.24.109/redfish/v1/Storages/RAIDStorage0

13

4) 服务器电源信息

14

https://150.1.24.109/redfish/v1/Chassis/1/Power

15

5) 服务器风扇信息

16

https://150.1.24.109/redfish/v1/Chassis/1/Thermal

17

6) 服务器资产信息

18

https://150.1.24.109/redfish/v1/Systems/1

19

20

2.获取所有BMC用户信息

21

白牌:GET https://150.1.24.109/redfish/v1/AccountService/AccountsInfo

22

华为:GET https://150.1.24.109/redfish/v1/AccountService/Accounts

23

24

3.添加BMC用户

25

POST https://150.1.24.109/redfish/v1/AccountService/AccountsInfo

26

POST https://150.1.24.109/redfish/v1/AccountService/Accounts

27

28

4.获取单个BMC用户信息

29

白牌:GET https://150.1.24.109/redfish/v1/AccountService/AccountsInfo/4

30

华为:GET https://150.1.24.109/redfish/v1/AccountService/Accounts/4

31

32

5.修改BMC用户信息

33

白牌:PATCH https://150.1.24.109/redfish/v1/AccountService/AccountsInfo/4

34

华为:PATCH https://150.1.24.109/redfish/v1/AccountService/Accounts/4

35

36

6.删除BMC用户

37

白牌: DELETE https://150.1.24.109/redfish/v1/AccountService/AccountsInfo/4

38

华为: DELETE https://150.1.24.109/redfish/v1/AccountService/Accounts/4

39

40

7.查询BMC地址

41

白牌:GET https://150.1.24.109/redfish/v1/Managers/1/NICsInfo/DedicatedPort1

42

华为:GET https://150.1.24.109/redfish/v1/Managers/1/NICs/DedicatedPort1

43

44

8.修改BMC ip地址

45

白牌:PATCH https://150.1.24.109/redfish/v1/Managers/1/NICsInfo/DedicatedPort1

46

华为:PATCH https://150.1.24.109/redfish/v1/Managers/1/NICs/DedicatedPort1

47

48

9.查询启动顺序

49

白牌:GET https://150.1.24.109/redfish/v1/Systems/1/Bios/SettingsInfo

50

华为:GET https://150.1.24.109/redfish/v1/Systems/1/Bios/Settings

51

52

10.修改启动顺序

53

白牌:PATCH https://150.1.24.109/redfish/v1/Systems/1/Bios/SettingsInfo

54

华为:PATCH https://150.1.24.109/redfish/v1/Systems/1/Bios/Settings

55

Guess you like

Origin blog.csdn.net/sinat_36458870/article/details/124728301