Users Guide
4. 保证启用了“On with console redirection via COM1”(开,通过 COM1 进行控制台重定向)。
5. 启用“Redirection After Boot”(引导后重定向)(默认值是“disabled” [禁用])。选择此选项后,可在后续的重新引导后进行 BIOS 控制台重定向。
6. 保存更改并退出。
7. 受管服务器重新引导。
配置 Windows 进行串行控制台重定向
对于运行 Microsoft Windows Server(Windows Server 2003 以上版本)的服务器,不必进行任何配置。Windows 会接收来自 BIOS 的信息,并启用 Special Administration
Console (SAC) 控制台一 COM1。
配置 Linux 在引导期间进行服务器串行控制台重定向
以下步骤特定于 Linux GRand Unified Bootloader (GRUB)。如果使用不同的引导加载程序,可能需要进行相似的更改。
按照以下说明编辑 /etc/grub.conf 文件:
1. 找到文件的常规设置部分并添加以下两行新命令:
serial --unit=1 --speed=57600
terminal --timeout=10 serial
2. 在内核行上追加两个选项:
kernel console=ttyS1,57600
3. 如果 /etc/grub.conf 包含 splashimage 指令,应将其注释掉。
以下示例显示了此过程中说明的更改。
#grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes
# to this file
#NOTICE:Youdonothavea/bootpartition.Thismeansthat
#allkernelandinitrdpathsarerelativeto/,e.g.
#root(hd0,0)
#kernel/boot/vmlinuz-version ro root=/dev/sdal
#initrd/boot/initrd-version.img
#
#boot=/dev/sda
default=0
timeout=10
#splashimage=(hd0,2)/grub/splash.xpm.gz
serial --unit=1 --speed=57600
terminal --timeout=10 serial
title Red Hat Linux Advanced Server (2.4.9-e.3smp)
root(hd0,0)
kernel/boot/vmlinuz-2.4.9-e.3smp ro root=/dev/sda1 hda=ide-scsi console=ttyS0 console=ttyS1,57600
initrd/boot/initrd-2.4.9-e.3smp.img
title Red Hat Linux Advanced Server-up (2.4.9-e.3)
root(hd0,00)
kernel/boot/vmlinuz-2.4.9-e.3 ro root=/dev/sda1
initrd/boot/initrd-2.4.9-e.3.img
按照以下原则编辑 /etc/grub.conf 文件:
l 禁用 GRUB 的图形界面并使用基于文本的界面;否则,GRUB 屏幕不会在控制台重定向中显示。要禁用图形界面,注释掉以 splashimage 开头的行。
l 要使用多个 GRUB 选项来通过串行连接启动控制台会话,将以下行添加到所有选项:
console=ttyS1,57600
此示例中,console=ttyS1,57600 仅添加到第一个选项。
配置 Linux 在引导后进行服务器串行控制台重定向
注:在配置客户端 VT100 仿真窗口时,将显示重定向控制台的窗口或应用程序设置为 25 行 x 80 列以确保文本正确显示;否则,有些文本屏幕可能会出现乱码。