
Adds support for serial console, in addition to VNC, SPICE, and RDP. Depends on term.js being added to OpenStack global requirements: https://review.openstack.org/#/c/145825 To try this patch: 1. In `nova.conf`: [serial_console] enable=True base_url = ws://<location-of-serial-console-proxy>:6083/ 2. Set CONSOLE_TYPE = "SERIAL" in local_settings.py. 3. You may need to start nova-serialproxy. 4. You may need to port-forward 6083. https://review.openstack.org/#/c/143615 will make the serial console available from Network Topology, along with other consoles. Co-Authored-By: Richard Jones<r1chardj0n3s@gmail.com> Implements blueprint serial-console Change-Id: If83c4efa1a96f9d393110af27f90a0808a23e641
19 lines
334 B
CSS
19 lines
334 B
CSS
/* Stand-alone CSS file for Serial Console IFrame. */
|
|
|
|
#terminalNode {
|
|
display:inline-block;
|
|
}
|
|
|
|
.terminal {
|
|
float: left;
|
|
border: black solid 5px;
|
|
font-family: "DejaVu Sans Mono", "Liberation Mono", monospace;
|
|
font-size: 16px;
|
|
color: white;
|
|
background: black;
|
|
}
|
|
|
|
.terminal-cursor {
|
|
color: black;
|
|
background: white;
|
|
}; |