首页 > 代码库 > IPmitool操作KVM的常用命令

IPmitool操作KVM的常用命令

远程KVM开关机:
ipmitool -H IP地址 -I lan -U KVM用户 -P KVM密码 power off        #关机
ipmitool -H IP地址 -I lan -U KVM用户 -P KVM密码 power on        #开机
ipmitool -H IP地址 -I lan -U KVM用户 -P KVM密码 power reset   #重启
ipmitool -H IP地址 -I lan -U KVM用户 -P KVM密码 mc reset        #重启BMC

创建ipmi账号并添加权限:
ipmitool -H IP地址 -U KVM用户 -P KVM密码 user set name 4 Johnny    #创建/修改用户ID 3 ,用户名为Johnny
ipmitool -H IP地址 -U KVM用户 -P KVM密码 user set password 4 123456    #修改用户ID 3 , 密码为123456
ipmitool -H IP地址 -U KVM用户 -P KVM密码 user priv 4 4 1      #设置ID 3 ,通道1 , 为administrator权限
ipmitool -H IP地址 -U KVM用户 -P KVM密码 channel setaccess 1 4 callin=on link=on ipmi=on privilege=4        #设置用户ID 3 , 为administrator权限 并且 打开callin ,link , ipmi 权限。
ipmitool -H IP地址 -U KVM用户 -P KVM密码 user enable 4    #启用用户ID 3  
ipmitool -H IP地址 -U KVM用户 -P KVM密码 channel        #查看用户权限level,一般4为administrator权限
ipmitool -H IP地址 -U KVM用户 -P KVM密码 user list 1         #查看通道1的用户
ipmitool -H IP地址 -U KVM用户 -P KVM密码 user disable 3       #关闭用户ID3

IPmitool操作KVM的常用命令