Tengo un servidor de implementación A, mi máquina local B y el servidor al que accedo C. Cuando ejecuto un script de prueba desde B -> C, es exitoso. Cuando ejecuto el mismo script desde A -> C falla, puedo hacer ping pero no ejecutar nada más.
Guión de prueba:
$credential2 = New-Object System.Management.Automation.PsCredential(("Test\ci"), (ConvertTo-SecureString "Password" -AsPlainText -Force))
Test-Connection -ComputerName C
invoke-command -computername C { get-UICulture } -Credential $credential2
El mensaje de error:
[C] Connecting to remote server failed with the following error message : WinRM cannot process the request. The
following error occured while using Kerberos authentication: There are currently no logon servers available to service
the logon request.
Possible causes are:
-The user name or password specified are invalid.
-Kerberos is used when no authentication method and no user name are specified.
-Kerberos accepts domain user names, but not local user names.
-The Service Principal Name (SPN) for the remote computer name and port does not exist.
-The client and remote computers are in different domains and there is no trust between the two domains.
After checking for the above issues, try the following:
-Check the Event Viewer for events related to authentication.
-Change the authentication method; add the destination computer to the WinRM TrustedHosts configuration setting or us
e HTTPS transport.
Note that computers in the TrustedHosts list might not be authenticated.
-For more information about WinRM configuration, run the following command: winrm help config. For more information,
see the about_Remote_Troubleshooting Help topic.
+ CategoryInfo : OpenError: (:) [], PSRemotingTransportException
+ FullyQualifiedErrorId : PSSessionStateBroken
Notas finales: - A, B están en el mismo dominio, C es un grupo de trabajo - Enable-PSRemoting (hecho) - Modificar política de grupo (hecho) - Set-ExecutionPolicy (hecho) - Firewall abierto (hecho)
Me estoy quedando sin ideas, ¿alguna conjetura o algo que deba seguir? Gracias por la ayuda por adelantado.
Respuesta1
Parece que la parte importante fue verificar la configuración de mi política. El servidor C (grupo de trabajo) se configuró para permitir que se conecten servidores como A, B en el dominio. En algún momento configuré el servidor A con la misma configuración. Como C está en un grupo de trabajo, A no confiaba en él.
La solución fue eliminar/actualizar la configuración de A para adaptarse a este escenario.