# BMC Side ## Enable SoL on specific serial port Assumption: - The source serial port is `ttyS17`. ### Console server side Config file: `/etc/obmc-console/server.ttyS17.conf` ``` baud = 115200 ``` ### Enable the service ``` systemctl start obmc-console@ttyS17 ``` ### Disable the service ``` systemctl stop obmc-console@ttyS17 ``` # Host Side ## Generate a login console on specific serial port ``` agetty ttyS0 /bin/sh & ``` # Client Side Assumption: - BMC has ip address `192.168.2.154`. Connection command line: - SoL over SSH: `ssh -l root -p 2200 192.168.2.154` - SoL over IPMI: `ipmitool -H 192.168.2.154 -U root -P 0penBmc -I lanplus -C 17 sol activate` - SoL over WebSocket: Login to WebUI https://192.168.2.154 -> Operations -> SOL Console