bmc-debug-tools/ssh.inc

31 lines
930 B
Bash

#!/usr/bin/env bash
#
# KGPE-D16 firmware boot process debugging tools via BMC
#
# Desc: log management
#
# Copyright (C) 2024 Adrien 'neox' Bourmault <neox@gnu.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
ssh_bmc()
{
sshpass -p '0penBmc' ssh root@ppalsoc08-bmc ${@}
}
ssh_hst()
{
sshpass -p 'password' ssh neox@ppalsoc08 ${@}
}