Compare commits

...

4 Commits

Author SHA1 Message Date
Igor Chubin aca8ca5f54
Merge pull request #180 from abbbi/ipmi
add ipmitool
2 years ago
Igor Chubin 89550d7466
Merge pull request #181 from TGotwig/initialize-spring
Initialize Spring
2 years ago
Thomas Gotwig 8dc59e822f
Initialize Spring
#174
2 years ago
ma 562dadea9e add ipmitool 2 years ago

@ -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

@ -0,0 +1,4 @@
# Create a basic Spring Boot project and run it 🚀
spring init --dependencies=web sample-app.zip
unzip sample-app.zip -d sample-app && rm sample-app.zip
cd sample-app && mvn spring-boot:run
Loading…
Cancel
Save