Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
subprojects/ | H | - | - | 31 | 22 | |
.clang-format | H A D | 01-Feb-2025 | 3.7 KiB | 137 | 135 | |
LICENSE | H A D | 12-Jun-2018 | 11.1 KiB | 202 | 169 | |
OWNERS | H A D | 24-Feb-2025 | 1.6 KiB | 49 | 44 | |
README.md | H A D | 04-Aug-2024 | 1.3 KiB | 70 | 63 | |
ipmb-channels.json | H A D | 08-Dec-2022 | 321 | 17 | 16 | |
ipmb.service | H A D | 28-Mar-2019 | 195 | 13 | 10 | |
ipmbbridged.cpp | H A D | 08-Apr-2025 | 33 KiB | 1,014 | 789 | |
ipmbbridged.hpp | H A D | 17-Jun-2024 | 8.4 KiB | 359 | 214 | |
ipmbdefines.hpp | H A D | 01-Nov-2023 | 2.9 KiB | 77 | 41 | |
ipmbutils.cpp | H A D | 30-Mar-2023 | 2.2 KiB | 91 | 52 | |
ipmbutils.hpp | H A D | 30-Mar-2023 | 896 | 30 | 5 | |
meson.build | H A D | 01-Feb-2025 | 2 KiB | 85 | 76 |
README.md
1Sample config options available to configure : 2 31. Single channel with one me and ipmb : 4 5```json 6{ 7 "channels": [ 8 { 9 "type": "me", 10 "slave-path": "/dev/ipmb-4", 11 "bmc-addr": 32, 12 "remote-addr": 44 13 }, 14 { 15 "type": "ipmb", 16 "slave-path": "/dev/ipmb-9", 17 "bmc-addr": 32, 18 "remote-addr": 96 19 } 20 ] 21} 22``` 23 242. Multiple sub channels with me and ipmb : 25 26```json 27{ 28 "channels": [ 29 { 30 "type": "me", 31 "slave-path": "/dev/ipmb-1", 32 "bmc-addr": 32, 33 "remote-addr": 64, 34 "devIndex": 0 35 }, 36 { 37 "type": "ipmb", 38 "slave-path": "/dev/ipmb-3", 39 "bmc-addr": 32, 40 "remote-addr": 64, 41 "devIndex": 0 42 }, 43 { 44 "type": "me", 45 "slave-path": "/dev/ipmb-5", 46 "bmc-addr": 32, 47 "remote-addr": 64, 48 "devIndex": 1 49 }, 50 { 51 "type": "ipmb", 52 "slave-path": "/dev/ipmb-7", 53 "bmc-addr": 32, 54 "remote-addr": 64, 55 "devIndex": 1 56 } 57 ] 58} 59``` 60 61```text 62Config fields : 63 64type : This points to the ChannelType. It can be ME or ipmb channel. 65slave-path : The ipmb device path. 66bmc-addr : This is BMC target address to communicate between BMC and device. 67remote-addr : This is Remote/requester target address to communicate between BMC and device. 68devIndex : This devIndex used to identify the particular device/host. 69``` 70