Autor: Michel Lüscher | Datum: Freitag, 4. Januar 2008 | Kategorie:
Troubleshooting,
VMware |
Keine Kommentare »
Seit VMware ESX 3.5 kann mit Veeam FastSCP nicht mehr direkt nach der Installation auf einen ESX Server zugegriffen werden. Folgender Fehler erscheint im ”Veeam Output Window”:
Trying to log in. Login name – root, password *********
Access denied
Für den Zugriff muss nun die neue ESX Firewall mit den von FastSCP benötigten Ports angepasst werden. Dazu kann das Konfig-File FastSCP.xml beim Hersteller heruntergeladen werden. Zum Download… Das XML-File sieht wie folgt aus:
<!-- Firewall configuration information for Veeam FastSCP -->
<ConfigRoot>
<service>
<id>FastSCP</id>
<rule id='0000'>
<direction>outbound</direction>
<protocol>tcp</protocol>
<port type='dst'>
<begin>2500</begin>
<end>5000</end>
</port>
<flags>-m state --state NEW</flags>
</rule>
<rule id='0001'>
<direction>inbound</direction>
<protocol>tcp</protocol>
<port type='dst'>
<begin>2500</begin>
<end>5000</end>
</port>
<flags>-m state --state NEW</flags>
</rule>
</service>
</ConfigRoot>
Dieses muss dann in das Verzeichnis ”/etc/vmware/firewall” kopiert werden. Auf der VMware ESX 3.5 Service Console den Befehl “esxcfg-firewall -e FastSCP” und “service mgmt-vmware restart” ausführen. Danach klappt der Login mit FastSCP wieder wie am Schnürchen:
Trying to log in. Login name – root, password *********
Login name and password correct. Connection established