update hardware

add more ipmitool commands
This commit is contained in:
I-Man Ng 2019-05-10 15:41:09 +08:00 committed by GitHub
parent 2a7525a874
commit 9ad2bfe1d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2082,14 +2082,32 @@ lsblk -io KNAME,TYPE,MODEL,VENDOR,SIZE,ROTA
```bash
lspci | egrep -i --color 'network|ethernet'
```
##### Found out power status of the server
```bash
ipmitool -U your_bmc_username -P your_bmc_userpassword -I lanplus -H your_bmc_ip_address power status
```
##### Found out server sensor temperature
##### Controlling IPMI-enabled devices (e.g. BMC)
```bash
# Remotely finding out power status of the server
ipmitool -U <bmc_username> -P <bmc_password> -I lanplus -H <bmc_ip_address> power status
# Remotely switching on server
ipmitool -U <bmc_username> -P <bmc_password> -I lanplus -H <bmc_ip_address> power on
# Turn on panel identify light (default 15s)
ipmitool chassis identify 255
# Found out server sensor temperature
ipmitool sensors |grep -i Temp
# Reset BMC
ipmitool bmc reset cold
# Prnt BMC network
ipmitool lan print 1
# Setting BMC network
ipmitool -I bmc lan set 1 ipaddr 192.168.0.55
ipmitool -I bmc lan set 1 netmask 255.255.255.0
ipmitool -I bmc lan set 1 defgw ipaddr 192.168.0.1
```
## Networking
[[back to top](#handy-bash-oneliner-commands)]