通过串行控制台访问kvm客户机
当ssh,vnc都不能访问客户机时,serial console可以提供另一种访问客户机的途径。
客户机serial console配置
/etc/inittab文件打开或添加如下行:
1 | T0:23:respawn:/sbin/getty -L ttyS0 38400 vt100 |
/etc/securetty文件中确保列出了ttyS0:
1 | ttyS0 |
/etc/default/grub文件添加:
1 | GRUB_CMDLINE_LINUX='console=tty0 console=ttyS0,38400n8' |
波特率是38400,没有奇偶校验,停止位是1
使用virsh来连接客户机串行控制台比较简单,应该也可以重定向客户机的串行端口到主机。
References:
[1]Debian Linux: Set a Serial Console
[2]Working with the serial console
[3]qemu(-kvm) monitor and serial console over sockets with minicom
===
[erq]