首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏kevin-blog

    ipmitool简介

    power on ## 強制断电关机 – Power Off # ipmitool -I lan -U root -E -H 192.168.111.123 chassis power off ## 通过操作系统正常关机 – Graceful Shutdown # ipmitool -I lan -U root -E -H 192.168.111.123 chassis power soft ## 重新热启动 – Reset System (warm boot) # ipmitool -I lan -U root -E -H 192.168.111.123 chassis power reset ## 冷启动 – Power Cycle System (cold boot) # ipmitool -I lan -U root -E -H 192.168.111.123 chassis power list 查看网络配置信息 ipmitool -H 192.168.30.101 -U root -P sjj123@ lan print 1 控制风扇 ipmitool -H 192.168.30.101

    2.5K20发布于 2020-01-21
  • 来自专栏frytea

    ipmitool 基本使用

    ipmitool 基本使用# # account ipmitool user list ipmitool user set password 2 password@123 # network # show network ipmitool lan print # set to static and show network ipmitool lan set 1 ipsrc static && ipmitool lan set 1 ipaddr 192.168.24.6 && ipmitool lan set 1 netmask 255.255.252.0 && ipmitool lan set 1 defgw ipaddr 192.168.27.254 && ipmitool lan print 注:本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。

    36130编辑于 2023-10-21
  • 来自专栏何以解忧 唯有暴富

    ipmitool 常用命令

    查看开关机状态: ipmitool –H (BMC的管理IP地址) –I lanplus –U (BMC登录用户名) –P (BMC 登录用户名的密码) power status 2. 开机: ipmitool –H (BMC的管理IP地址) –I lanplus –U (BMC登录用户名) –P (BMC 登录用户名的密码) power on 3. 关机: ipmitool –H (BMC的管理IP地址) –I lanplus –U (BMC登录用户名) –P (BMC 登录用户名的密码) power off 4. 打开SOL功能: ipmitool –H (BMC的管理IP地址) –I lanplus –U (BMC登录用户名) –P (BMC 登录用户名的密码) sol activate 3. 查看SDR Sensor信息: ipmitool –H (BMC的管理IP地址) –I lanplus –U (BMC登录用户名) –P (BMC 登录用户名的密码) sdr 2.

    2.4K21编辑于 2023-02-24
  • 来自专栏LINUX开源玩家

    使用ipmitool修改华为服务器iBMC密码

    在华为官网搜到可以用ipmitool修改iBMC密码,试之,果然,记下。 查找ipmitool工具 # apt search ipmitool Sorting... Done Full Text Search... 安装ipmitool # apt install ipmitool -y Reading package lists... 安装完成后查看使用帮助 # ipmitool user Not enough parameters given. 测试密码 # ipmitool user test 2 16 Huawei12#$ Success 7.

    6K30编辑于 2022-05-20
  • 来自专栏运维技术迷

    ipmitool工具安装以及常见使用方法


    ### 系统日志类 [root@remote-jump ~]# Ipmitool sel elist   显示所有系统事件日志 [root@remote-jump ~]# Ipmitool Ipmitool sel time get  显示当前BMC的时间 [root@remote-jump ~]# Ipmitool sel time set XXX 设置当前BMC的时间
    ## # 启动设置类 [root@remote-jump ~]# Ipmitool chassis bootdev bios 重启后停在BIOS 菜单 [root@remote-jump ~]# Ipmitool [root@remote-jump ~]# Ipmitool lan print 1 显示channel1的网络配置信息 [root@remote-jump ~]# Ipmitool lan set ~]# Ipmitool disable   禁止掉某用户 [root@remote-jump ~]# ipmitool enable   使能某用户 [root@remote-jump ~]# ipmitool

    4.2K20编辑于 2023-10-20
  • 来自专栏何以解忧 唯有暴富

    ipmitool - 重启BMC系统和密码及参数重置

    #yum install ipmitool –y 登录该服务器linux系统后执行: ipmitool raw 0x32 0x66 #恢复默认值 ipmitool lan set 1 ipsrc static (设置ipmi ip非DHCP) ipmitool lan set 1 ipaddr 192.168.0.1(设置IPMI 地址) ipmitool lan set 1 netmask 255.255.255.0 (设置ipmi 子网掩码) ipmitool lan set 1 defgw ipaddr 192.168.0.1 (设置ipmi 网关) ipmitool user list (列出ipmi 用户) ipmitool user enable/disable <user id> (启用/禁用用户) ipmitool user set password 1 abcdefg 修改后默认密码abcdefg ipmitool lan print (查看现在ipmi地址) ipmitool mc reset cold (重启本地

    11.4K20编辑于 2023-02-24
  • 来自专栏小网管的运维之路

    Linux系统中对ipmi 配置管理(远程管理卡工具)

    ipmitool ipmitool lan print 1 #检查网络配置结果 进行IPMI的基本网络配置: 网上很多教程都有-I open参数,其实这个参数是默认的。 ipmitool lan set 1 ipaddr 10.10.20.170 ipmitool lan set 1 netmask 255.255.255.0 ipmitool lan set 1 defgw ipaddr 10.10.20.254 ipmitool lan set 1 access on 开启默认用户、设置默认密码: ipmitool lan set 1 user ipmitool lan 所以要设置一下root用户的密码,按照提示输入两次密码: ipmitool user list 1 ipmitool user set password 2 #重置用户密码 测试 在多台服务器上配置好IPMI 开关机 ipmitool -H 10.10.20.170 -U root power on #开机 ipmitool -H 10.10.20.170 -U root power off #关机

    6K50发布于 2019-06-20
  • 来自专栏若梦博客.

    IPMI 常用命令

    开关机、重启 查看开关机状态 ipmitool -H (BMC的管理IP地址) -I lanplus -U (BMC登录用户名) -P (BMC 登录用户名的密码) power status 开机 ipmitool -H (BMC的管理IP地址) -I lanplus -U (BMC登录用户名) -P (BMC 登录用户名的密码) power on 关机 ipmitool -H (BMC的管理IP 地址) -I lanplus -U (BMC登录用户名) -P (BMC 登录用户名的密码) power off 重启 ipmitool -H (BMC的管理IP地址) -I lanplus -U ( 查看用户信息 ipmitool -H (BMC的管理IP地址) -I lanplus -U (BMC登录用户名) -P (BMC 登录用户名的密码) user list [ChannelNo] 增加用户 id> <privilege level> [ChannelNo] 启用/禁用用户 ipmitool -H (BMC的管理IP地址) -I lanplus -U (BMC登录用户名) -P (BMC

    2.3K41编辑于 2023-02-01
  • 来自专栏RokasYang

    深入理解ipmitool:揭秘BMC与IPMI的智能服务器管理(带外管理)

    IPMI的管理工具有很多,比如IPMITool、IPMICFG、OpenIPMI、FreeIPMI,本文将讲述目前最为主流的IPMITOOL。 vib get -n ipmitool4)创建软链接二进制文件默认安装在/opt/ipmitool/路径,把它软链接到PATH路径下:ln -sf /opt/ipmitool/ipmitool /sbin /ipmitool-h参数查看帮助:ipmitool -h5)卸载如需卸载,执行以下命令:esxcli software vib remove -n ipmitool三、IPMI用法指南0.写在前面以下命令都是在非 ipmitool理解为一个客户端工具就行,不要误解为ipmitool装上后就能控制任意服务器,BMC才是大前提。 比如不支持BMC的主板,使用IPMITool的报错:1.读取传感器监测值(sensor list)ipmitool发送信号给BMC芯片,读取主板上的硬件传感器当前值:ipmitool -H <bmc远程服务地址

    52.9K2924编辑于 2025-07-01
  • 来自专栏今天有没有多懂一点工业安全

    工业服务器IPMI协议渗透

    可以实现对此漏洞的利用,如下所示,允许列出和修改用户密码: apt-get install ipmitool ipmitool -I lanplus -C 0 -H x.x.x.x -U root -P 可以利用这种配置使用ipmitool来重置具名用户账户的密码: ipmitool -I lanplus -H x.x.x.x -U '' -P '' user list ipmitool -I lanplus 如果主机的物理或串行控制台保持登录状态,可以通过BMC的KVM或串行-通过-LAN(sol)功能轻松接管它,使用ipmitool。 此攻击需要在受损主机上存在**ipmitool**并激活BMC驱动程序支持。以下命令说明了如何使用主机的本地接口将新用户帐户注入BMC,绕过身份验证的需求。 user set name 4 backdoor ipmitool user set password 4 backdoor ipmitool user priv 4 4 ipmitool user

    1.3K10编辑于 2024-02-26
  • 来自专栏运维相关文档

    DELL服务器如何调整风扇转速

    linux ipmitool download link : For redhat 5.x http://linux.dell.com/repo/hardware/OMSA_6.5/platform_independent /rh60_64/ipmitool/ 1. 先用命令ipmitool raw 0x30 0x30 0x01 0x00 设置成手动模式。 2. 然后调整转速到60%, ipmitool raw 0x30 0x30 0x02 0xff 0x3c 3. 调整后转速在11000左右,应该可以大幅改善机箱温度,功耗0.7A。 建议贵司稳妥起见先试着调一个机柜中一台机器到50%, 既IPMITOOL raw 0x30 0x30 0x02 0xff 0x32 测试。 同时观察安培表 5.

    7.2K30发布于 2021-05-24
  • 来自专栏杨建荣的学习笔记

    服务器搬迁需要注意的几个地方

    ipmitool lan set 1 ipsrc static ipmitool lan set 1 ipaddr 10.129.117.100 ipmitool lan set 1 netmask 255.255.252.0 ipmitool lan set 1 defgw ipaddr 10.129.119.254 而一般ILO的密码会很复杂,我们可以尽可能修改的简便一些,出问题的时候方便调试 修改ILO 密码 # /usr/bin/ipmitool user list 1|grep root 2 root true true true ADMINISTRATOR # /usr/bin/ipmitool

    2.5K60发布于 2018-03-21
  • 来自专栏运维民工

    如何在Linux下重置bios setting

    因为bios是被写在ROM上,无法直接设置,但是大多数服务器主板自带bcm,通过ipmitool说不定就可以了,因此去搜索一些相关文档说不定可以设置,发现了下列的一些信息,粘贴出来参考一下。 To clear CMOS settings, use the following IPMItool commands (in this example, the default username, root , and the default password, changeme, are used): ipmitool -U root -P changeme -H SP-IP chassis power off ipmitool -U root -P changeme -H SP-IP chassis bootdev disk clear-cmos=yes 后续,或者可以尝试如下方法(具有一定风险性)

    3.6K30编辑于 2022-06-29
  • 来自专栏Laikee Tech Space

    Ironic 裸金属管理服务的底层技术支撑

    底层技术支撑 DHCP NBP TFTP IPMI ipmitool 操作示例: 改变服务器引导方式 服务器电源管理 PXE & iPXE Cloud Init Linux 操作系统启动引导过程 底层技术支撑 操作示例: 改变服务器引导方式 ipmitool -I lan -H <server_ip> -U root -P passwd chassis bootdev pxe ipmitool -I lan chassis bootdev cdrom 服务器电源管理 # 硬关机,直接切断电源 ipmitool -I lan -H <server_ip> -U root -P passwd chassis power off # 软关机,即如同轻按一下开机扭 ipmitool -I lan -H <server_ip> -U root -P passwd chassis power soft # 硬开机 ipmitool -I lan -H <server_ip> -U root -P passwd chassis power on # 硬重启 ipmitool -I lan -H <server_ip

    3K20编辑于 2022-09-19
  • 来自专栏Linux运维学习之路

    来一波Linux中查看cpu、磁盘、内存、网络的命令

    如果想远程管理服务器就有远程管理卡,比如Dell idRAC,HP ILO,IBM IMM 查看硬件的温度/风扇转速,电脑有撸大师,服务器就有ipmitool。 使用ipmitool实现对服务器的命令行远程管理 yum -y install OpenIPMI ipmitool #->IPMI在物理机可以成功,虚拟机不行 [root@KVM ~]# ipmitool

    3.8K81发布于 2018-01-24
  • 来自专栏运维技术迷

    Dell R720xd手动设置风扇转速

    设备参数 型号:dell r720xd 3.5 12盘位 cpu:e5-2650 * 2 memory:64GB disk:3TB HDD (RAID5) iDRAC:version 7 实施过程 1.下载ipmitool ipmitool -I lanplus -H iDRAC地址 -U iDRAC用户名 -P iDRAC用户密码 raw 0x30 0x30 0x01 0x00 关闭自动调速之后,我们就可以按照我们自己的意愿来调整转速了 ipmitool -I lanplus -H iDRAC地址 -U iDRAC用户名 -P iDRAC用户密码 raw 0x30 0x30 0x02 0xff 0x0a 最后的0x0a表示转速的百分比的十六进制

    21K41发布于 2020-02-25
  • 来自专栏kevin-blog

    使用python-SMTP功能实现用短信接受服务器告警

    xxxxxx520' # 收件人邮箱账号 my_user='xxxxxxxx@qq.com' def monitoring(): cheild = subprocess.check_output('ipmitool qw = b[0] if int(qw) > 40: dangerous(qw) subprocess.check_output('ipmitool

    1.2K30发布于 2020-01-21
  • 来自专栏大话IT架构

    运维天地-服务器08-X86-PCServer IP信息获取

    product_ip def get_ipmi_ip(self): status, output = commands.getstatusoutput("/usr/bin/ipmitool 业务IP信息是通过ip a命令来获取的 带外IP信息是通ipmitool lan print命令来获取的 接下来就是字符串的处理(过滤、分割、拼接)

    51220发布于 2020-04-15
  • 来自专栏kevin-blog

    简单的python脚本监控服务器温度

    但是我又怕以后服务运转的过多,cpu温度会过高出问题,所以就写了一个简单的温度控制脚本 代码 import subprocess import re cheild = subprocess.check_output('ipmitool re.findall(r'\d+',str(a)) print('服务器温度:',b) qw = b[0] if int(qw) > 40: subprocess.check_output('ipmitool

    1.8K20发布于 2020-01-21
  • 来自专栏IT运维技术圈

    一款集内外网巡检、应急响应、SRC挖掘图形化渗透工具

    requirements.txt#请使用 Python3.8 安装运行本程序 Ubuntu 用户安装依赖工具: apt install masscan nmap hydra medusa nfs-common ipmitool rsync -y CentOS 用户安装依赖工具: yum install masscan nmap nfs-utils ipmitool rsync -y安装 hydra: https://github.com

    45120编辑于 2023-02-02
领券