commit | a2a026dc9aa4a99e57271985b799dbb9f49d4419 | [log] [tgz] |
---|---|---|
author | Willy Tu <wltu@google.com> | Tue Sep 26 12:59:51 2023 -0700 |
committer | Willy Tu <wltu@google.com> | Tue Sep 26 13:01:24 2023 -0700 |
tree | a2dceba840cdf1eea6bc0e0c2d8168705f1b36d9 | |
parent | 2a5fface51431415ada38c947b4ebc06f0a9fbe5 [diff] |
ssh: Service don't depends on concurrent-servers Install the service files even with `concurrent-servers` enabled. This will match the behavior before https://gerrit.openbmc.org/c/openbmc/obmc-console/+/66418 Change-Id: If539b099185974a2546249b40bc4c97968f1a206 Signed-off-by: Willy Tu <wltu@google.com>
To build this project, run the following shell commands:
meson setup build meson compile -C build
To test:
meson test -C build
Running the server requires a serial port (e.g. /dev/ttyS0):
touch obmc-console.conf ./obmc-console-server --config obmc-console.conf ttyS0
To connect to the server, simply run the client:
./obmc-console-client
To disconnect the client, use the standard ~.
combination.
This shows how the host UART connection is abstracted within the BMC as a Unix domain socket.
+---------------------------------------------------------------------------------------------+ | | | obmc-console-client unix domain socket obmc-console-server | | | | +----------------------+ +------------------------+ | | | client.2200.conf | +---------------------+ | server.ttyVUART0.conf | | +---+--+ +----------------------+ | | +------------------------+ +--------+-------+ Network | 2200 +--> +->+ @obmc-console.host0 +<-+ <--+ /dev/ttyVUART0 | UARTs +---+--+ | console-id = "host0" | | | | console-id = "host0" | +--------+-------+ | | | +---------------------+ | | | | +----------------------+ +------------------------+ | | | | | | | +---------------------------------------------------------------------------------------------+
This supports multiple independent consoles. The console-id
is a unique portion for the unix domain socket created by the obmc-console-server instance. The server needs to know this because it needs to know what to name the pipe; the client needs to know it as it needs to form the abstract socket name to which to connect.