commit | 1c7b07c78e51e25c55327f450e19802732583361 | [log] [tgz] |
---|---|---|
author | asmithakarun <asmitk01@in.ibm.com> | Mon Sep 09 03:42:59 2019 -0500 |
committer | Sunitha Harish <sunithaharish04@gmail.com> | Thu Apr 09 00:29:12 2020 -0500 |
tree | 343d59972b339397f18a917949d5a1fb9418ffe7 | |
parent | 97b0e43aa005798c81e8f918209f920e250c34c0 [diff] |
Read and Delete config files through REST interface This commit supports Read, Delete the config files through REST interface. Test-by: 1. Read a save area file: curl -k -H "X-Auth-Token: $bmc_token" -X GET https://${bmc}/ibm/v1/Host/ConfigFiles/<filename> 2. Delete a save area file: curl -k -H "X-Auth-Token: $bmc_token" -X DELETE https://${bmc}/ibm/v1/Host/ConfigFiles/<filename> Signed-off-by: Asmitha Karunanithi <asmitk01@in.ibm.com> Change-Id: Id326b516e84e93c68d2260f5372e6e7f123a0e87 Signed-off-by: Sunitha Harish <sunithaharish04@gmail.com>
This component attempts to be a "do everything" embedded webserver for openbmc.
At this time, the webserver implements a few interfaces:
BMCWeb is configured by setting -D
flags that correspond to options in bmcweb/CMakeLists.txt
and then compiling. For example, cmake -DBMCWEB_ENABLE_KVM=NO ...
followed by make
. The option names become C++ preprocessor symbols that control which code is compiled into the program.
When BMCWeb starts running, it reads persistent configuration data (such as UUID and session data) from a local file. If this is not usable, it generates a new configuration.
When BMCWeb SSL support is enabled and a usable certificate is not found, it will generate a self-sign a certificate before launching the server. The keys are generated by the secp384r1
algorithm. The certificate
C=US, O=OpenBMC, CN=testhost
,SHA-256
algorithm.