1.remote access control power
Ipmitool -I lanplus -H 192.168.0.10 -U username -P Password chassis power off
Ipmitool -I lanplus -H 192.168.0.10 -U username -P Password chassis power on
Ipmitool -I lanplus -H 192.168.0.10 -U username -P Password chassis power reset
Ipmitool -I lanplus -H 192.168.0.10 -U username -P Password chassis power cycle
2.Sensor status
Ipmitool sensor list
Ipmitool fru list
Ipmitool sdr list
ipmitool sdr entity
Ipmitool peflist
3.system log
ipmitool sel sellist(显示)
ipmitool sel clear
ipmitool sel delete ID
ipmitool sel time get
ipmitool sel time set xxx(设置当前bmc时间)
4.boot
ipmitool chassis bootdev bios(重启后停在bios菜单)
ipmitool chasssis bootdev pxe(重启后从PXE启动)
ipmitool -I lanplus -H 10.41.1.41 -U root -P root chassis bootparam set bootflag force_disk(TBD)
5.system command
ipmitool mc info
ipmitool bmc reset cold
ipmitool bmc reset warm
6.network command
ipmitool lan print 1
ipmitool lan set 1 ipaddr 192.168.0.1
ipmitool lan set 1 netmask 255.255.255.0
ipmitool lan set 1 ipsrc dhcp(static)
ipmitool lan set 1 defgw 192.168.0.1
7.channel command
ipmitool channel info
ipmitool channel authcap channel-number privilege(修改通道优先级)
ipmitool channel getaccess channel-number user-id(读取用户通道上的权限)
ipmitool channel setaccess channel-number user-id callin=on ipmi=on link=onprivilege=5
8.watch dog command
ipmitool mc watchdog get
ipmitool watchdog off
ipmitool watchdog reset
9. user management command
ipmitool user list chan-id(某通道上的所有用户)
ipmitool set password <user id>[<password>]修改某用户密码
ipmitool disable userid
ipmitool enable userid
ipmitool priv userid privilegelevel channel_number
10.SOL
ipmitool -H 192.168.0.1 -I lanplus -U username -P password sol set volatile-bit-rate<9.6/115.2/38.4>
ipmitool -H 192.168.0.1 -I lanplus -U username -P password sol activate(deactivate)(enable/disable sol)

ipmitool命令的更多相关文章

  1. ipmitool命令详解

    基础命令学习目录首页 原文链接:https://www.cnblogs.com/EricDing/p/8995263.html [root@localhost ~]# yum install -y i ...

  2. IPMITOOL命令支持列表V2.0

    命令集 命令行格式 命令行说明 User ipmitool -H <IP地址> -I lanplus -U <用户名> -P <密码> user summary 查 ...

  3. 使用ipmitool 命令添加IPMI 界面的SMTP邮件服务器地址

    目前要通过ipmitool工具在IPMI的界面上添加邮件服务器地址,该脚本如下 SMTP.sh #!/bin/bash ipmitool raw 0x32 0x78 0x01 0x01 0x00 0x ...

  4. IPMITool和其中常用的命令

    IPMITool和其中常用的命令 # ipmitool -I lanplus -H 10.1.83.14-U ##### -P ##### chassis power status # ipmitoo ...

  5. BMC ipmitool 对linux服务器进行IPMI管理

    IPMI是智能型平台管理接口(Intelligent Platform Management Interface)的缩写,是管理基于 Intel结构的企业系统中所使用的外围设备采用的一种工业标准,该标 ...

  6. ipmitool+python应用处理大量带外地址

    ipmitool 是一种可用在 linux 系统下的命令行方式的 ipmi 平台管理工具,它支持 ipmi 1.5 规范(最新的规范为 ipmi 2.0),通过它可以实现获取传感器的信息.显示系统日志 ...

  7. 使用 ipmitool 实现 Linux 系统下对服务器的 ipmi 管理

    http://www.ibm.com/developerworks/cn/linux/l-ipmi/ 1.简介 IPMI(Intelligent Platform Management Interfa ...

  8. 86 ipmitools-查看硬件信息工具

    1.简介 IPMI(Intelligent Platform Management Interface)即智能平台管理接口是使硬件管理具备"智能化"的新一代通用接口标准.用户可以利 ...

  9. IPMI

    ipmitool -I lanplus -H 10.79.62.64 -U admin -P Nbv12345 [chassis power soft]/[raw 6 2 5] ipmiutil [r ...

随机推荐

  1. mysql 隔离性与隔离级别

    提到事务,你肯定不陌生,和数据库打交道的时候,我们总是会用到事务.最经典的例子就是转账,你要给朋友小王转 100 块钱,而此时你的银行卡只有 100 块钱. 转账过程具体到程序里会有一系列的操作,比如 ...

  2. PHP基础学习笔记1

    一.基本语法 1.1 形式 PHP 脚本以 <?php 开始,以 ?> 结束: <?php //php代码 ?> 1.2 注释 单行注释 //这是单行注释 多行注释 /* 这是 ...

  3. 如何在Linux中显示和设置主机名(适用ubantu、centos等版本)

    随着连接到网络的计算机数量越来越多,每一台计算机都需要有一个属性来区别于其它计算机.和现实世界中的人一样,计算机也有一个叫做hostname(主机名)的属性. 什么是hostname 从它的操作手册来 ...

  4. 2017年陕西省网络空间安全技术大赛——人民的名义-抓捕赵德汉2——Writeup

    下载下来的文件是一个jar包,用die和binwalk检查,确实是一个纯正的jar包 java -jar FileName运行jar包,观察文件的外部特征,发现也是判断password的题目 ​ 用查 ...

  5. 清晰架构(Clean Architecture)的Go微服务: 程序设计

    我使用Go和gRPC创建了一个微服务,并将程序设计和编程的最佳实践应用于该项目. 我写了一系列关于在项目工作中做出的设计决策和取舍的文章,此篇是关于程序设计. 程序的设计遵循清晰架构(Clean Ar ...

  6. MyBatis-Spring整合之方式4

    直接删除Mybatis的配置文件,修改Beans.xml文件的sqlSessionFactory的参数内容,如下: <!--配置sqlSessionFactory--> <bean ...

  7. C:作用域

    作用域 C语言变量的作用域分为: 代码块作用域(代码块是{}之间的一段代码) 函数作用域 文件作用域 局部变量 局部变量也叫auto自动变量(auto可写可不写),一般情况下代码块{}内部定义的变量都 ...

  8. 2、json教程

    JSON(JavaScript)对象表示法是一种轻量级的基于文本的开放标准, 被设计用于可读的数据交换, 约定使用JSON的程序包括 C C++ Java Python Perl     总结 JSO ...

  9. CapsNet资源

    算法源码: https://github.com/xanderchf/pyCapsNet https://github.com/naturomics/CapsNet-Tensorflow 参考文章: ...

  10. ajax请求ashx跨域问题解决办法

    ajax请求ashx跨域问题解决办法 https://blog.csdn.net/windowsliusheng/article/details/51583566 翻译windowsliusheng  ...