2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-12 19:10:26 +00:00

Merge pull request #180 from abbbi/ipmi

add ipmitool
This commit is contained in:
Igor Chubin 2022-09-05 12:07:13 +02:00 committed by GitHub
commit aca8ca5f54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

26
sheets/ipmitool Normal file
View File

@ -0,0 +1,26 @@
# ipmitool
# ipmi configuration and remote client
#
# Connect IPMI/BMC board via lan
ipmitool -I lanplus -U USER -a -H ADDR
# Check power status
ipmitool -I lanplus -U USER -a -H ADDR chassis power status
# Power on system
ipmitool -I lanplus -U USER -a -H ADDR chassis power on
# Configure local IPMI board with static IP Address
ipmitool lan set 1 ipsrc static
ipmitool lan set 1 ipaddr ADDR
ipmitool lan set 1 netmask 255.255.255.0
ipmitool lan set 1 defgw ipaddr GATEWAYW_ADDR
# Show configuration for first configured LAN interface
ipmitool lan print 1
# Configure access to channel with admin rights
ipmitool user set name 2 admin
ipmitool user set password 2
ipmitool channel setaccess 1 2 link=on ipmi=on callin=on privilege=4
ipmitool user enable 2