1. 程式人生 > >訪問System x3650 IMM2的幾種方式

訪問System x3650 IMM2的幾種方式

控制器 port tran type file span request com esp

一、通過web瀏覽器訪問

1、打開瀏覽器,在地址欄上輸入IMM2的IP地址訪問,打開登錄頁面後,輸入用戶名和密碼 登錄

PS:第一次登錄IMM2時,初始的用戶名為USERID,密碼為PASSW0RD(零,不是字母O)。在初始配置期間更改此用戶名和密碼,以增強安全性。

技術分享圖片

技術分享圖片

二、通過IPMI 管理工具:IPMItool進行訪問

ipmitool 是一種命令行方式的 ipmi 平臺管理工具,通過它可以實現獲取傳感器的信息、顯示系統日誌內容、網絡遠程開關機等功能。

一些英文簡寫:

SDR傳感器數據庫 sensor data repository

BMC :基板管理控制器 Baseboard Management Controller :

SEL : System Evelnt Log 系統事件日誌

FRU : Field Replaceable Unit 可更換部件

linux下可以通過包管理工具安裝,例如:yum install ipmitool -y

常用命令:

ipmitool -U 用戶名 -P 密碼 -H IP地址 power off 關電(非正常關機)

ipmitool -U 用戶名 -P 密碼 -H IP地址 power on 開機

ipmitool -U 用戶名 -P 密碼 -H IP地址 sdr 打印傳感器數據庫條目

ipmitool -U 用戶名 -P 密碼 -H IP地址

sensor 打印詳細的傳感器數據

ipmitool -U 用戶名 -P 密碼 -H IP地址 sel list 打印系統事件日誌

ipmitool -U 用戶名 -P 密碼 -H IP地址 fru list 打印可更換部件

usage: ipmitool [options...] <command>

   -h            This help
   -V            Show version information
   -v            Verbose (can use multiple times)
   -c            Display output in comma separated format
   -I intf       Interface to use
   -H hostname   Remote host name for LAN interface
   -p port       Remote RMCP port [default=623]
   -L level      Remote session privilege level [default=USER]
   -A authtype   Force use of authtype NONE, PASSWORD, MD2 or MD5
   -U username   Remote session username
   -P password   Remote session password
   -f file       Read remote session password from file
   -a            Prompt for remote password
   -E            Read password from IPMI_PASSWORD environment variable
   -m address    Set local IPMB address
   -t address    Bridge request to remote target address

Interfaces:
    open         Linux OpenIPMI Interface [default]
    imb          Intel IMB Interface
    lan          IPMI v1.5 LAN Interface
    lanplus      IPMI v2.0 RMCP+ LAN Interface

Commands:
    raw          Send a RAW IPMI request and print response
    lan          Configure LAN Channels
    chassis      Get chassis status and set power state
    event        Send pre-defined events to BMC
    bmc          Print BMC status and configure global enables
    sdr          Print Sensor Data Repository entries and readings
    sensor       Print detailed sensor information
    fru          Print built-in FRU and scan SDR for FRU locators
    sel          Print System Evelnt Log
    sol          Configure IPMIv2.0 Serial-over-LAN
    user         Configure BMC users
    channel      Configure BMC channels
    session      Print session information
    shell        Launch interactive IPMI shell
    exec         Run list of commands from file
    set          Set runtime variable for shell and exec


未完待續。。。

訪問System x3650 IMM2的幾種方式