Powershell sem servidores de logon disponíveis

0

Eu tenho um servidor de implantação A, minha máquina local B e o servidor que estou acessando C. Quando estou executando um script de teste de B - > C é bem sucedido. Quando estou executando o mesmo script de A - > C ele falha, eu posso pingar, mas não executar qualquer outra coisa.

Script de teste:

$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 

A mensagem de erro:

[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 finais: - A, B estão no mesmo domínio, C é um grupo de trabalho - Ativar-PSRemoting (concluído) - Modificar política de grupo (concluído) - Set-ExecutionPolicy (feito) - Firewall aberto (pronto)

Estou ficando sem idéias, quaisquer palpites ou coisas que eu deveria seguir? Obrigado pela ajuda antecipadamente.

    
por Matthew Rhoden 12.03.2015 / 21:07

1 resposta

0

Parece que a parte importante foi a verificação das configurações da minha política. O servidor C (grupo de trabalho) foi configurado para permitir que servidores como A, B no domínio se conectassem. Em algum momento eu configurei o servidor A com as mesmas configurações. Como C está em um grupo de trabalho, A não confiava nele.

A correção foi remover / atualizar as configurações de A para acomodar esse cenário.

    
por 13.03.2015 / 16:20