Mware Health and Security Toolkit (HST)

This commit is contained in:
Timur 2025-10-24 10:33:37 +00:00
commit aa52acb863

43
VMware_HST_Summary.md Normal file
View file

@ -0,0 +1,43 @@
# VMware Health and Security Toolkit (HST) Kurzüberblick
Das **HST** von Broadcom analysiert **Gesundheit und Sicherheit** von VMware-Umgebungen (vSphere, vSAN, NSX, SDDC).
Es kann **als JAR-App (Java)** oder **als OVA-Appliance** betrieben werden.
## Zentrale Funktionen
- Automatische **Health- und Security-Checks**
- Reports für **vCenter, NSX, vSAN und SDDC**
- **Import/Export** von Projekten und **automatisierte Auswertungen**
- **TAM/Partner** und **Offline-Modus** mit Key möglich
## Voraussetzungen
- **Java 21** installiert und im PATH (z. B. Adoptium JDK 21)
- **PowerShell 7.4+** mit Modulen `VMware.PowerCLI` und `VMware.vSphere.SsoAdmin`
- Portzugriffe auf **8443** (Web), **22** (SSH), **443** (vCenter)
- Speicherbedarf: ca. **40 MB RAM pro MB Projektdaten**
---
## 💡 Hinweise für Installation
### Java installieren
- Download: [https://adoptium.net/de/temurin/releases/?version=21](https://adoptium.net/de/temurin/releases/?version=21)
- Nach Installation prüfen:
```bash
java -version
```
- Wenn mehrere Java-Versionen vorhanden sind, PATH gezielt für HST setzen.
### PowerShell installieren (Windows/macOS/Linux)
- Anleitung: [Microsoft PowerShell Installation](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-windows?view=powershell-7.4)
- Nach Installation prüfen:
```bash
pwsh
$PSVersionTable
```
- Module installieren:
```powershell
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
Install-Module -Name VMware.PowerCLI -RequiredVersion 13.3.0.24145081
Install-Module -Name VMware.vSphere.SsoAdmin -RequiredVersion 1.4.0
```