Skip to content

Instantly share code, notes, and snippets.

@sangjinhan
sangjinhan / ipmikvm.sh
Last active September 15, 2023 14:04
Shell Script for IPMI remote KVM console
#!/bin/bash
function cleanup {
# Remove JNLP file and SSH process
rm -f $HOST.jviewer.jnlp
kill $!
}
USAGE="Usage: $0 -p <SSH proxy host> <hostname> <username>"