Hp Insight Control Software for Linux Bedienungsanleitung Seite 28

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 288
  • Inhaltsverzeichnis
  • FEHLERBEHEBUNG
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 27
An alternate method is to automate this procedure by using a script to extract the iLO's certificate
and add it to the HP SIM trusted certificate list. The following is an example of a script that
accepts a series of iLO certificates and adds them to the HP SIM trust store.
#!/bin/sh
#
# Get certificate for each iLO passed in as an argument
# and add it to the HP SIM trust store.
#
for i in $@
do
echo |\
openssl s_client -connect ${i}:443 2>&1 | \
sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | mxcert -t -
if [ $? -ne 0 ]; then
echo "Unable to retrieve certificate for $i"
exit 1
else
echo "Added certificate for $i"
fi
done
28 Security
Seitenansicht 27
1 2 ... 23 24 25 26 27 28 29 30 31 32 33 ... 287 288

Kommentare zu diesen Handbüchern

Keine Kommentare