Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
tutorial:adm:configuration_-_winrm [2019/06/12 13:46]
kucerar https
tutorial:adm:configuration_-_winrm [2019/10/08 12:18]
fiserp [Debug]
Line 51: Line 51:
 <code>winrm set winrm/config/service/auth '@{Kerberos="true"}'</code> <code>winrm set winrm/config/service/auth '@{Kerberos="true"}'</code>
   * CredSSP   * CredSSP
-<code>winrm set winrm/config/service/auth '@{CredSSP="true"}'</code>+<code>winrm set winrm/config/service/auth '@{CredSSP="true"}' 
 +winrm set winrm/config/client/auth '@{CredSSP="true"}' 
 +Enable-WSManCredSSP -Role Server 
 +</code>
  
 ==== Permission configuration ==== ==== Permission configuration ====
Line 103: Line 106:
 For connecting via HTTPS use this lane. The difference is in URL where we need to use https and port 5986. Then we are using one more argument where we specify path to trust store For connecting via HTTPS use this lane. The difference is in URL where we need to use https and port 5986. Then we are using one more argument where we specify path to trust store
 <code> <code>
->>> s = winrm.Session('https://HOST:5986/wsman', auth=(HOST, PASS), transport='ntlm', ca_trust_path='/etc/ssl/certs')+>>> s = winrm.Session('https://HOST:5986/wsman', auth=(HOST, PASS), transport='ntlm', ca_trust_path='/etc/ssl/certs/CRT.pem')
 </code> </code>
 After executing "r" you should see this: After executing "r" you should see this:
Line 112: Line 115:
  
 === Commons errors === === Commons errors ===
-the specified credentials were rejected by the server - this error can be caused by:+**Specified credentials were rejected by the server** - this error can be caused by:
   * wrong username or password   * wrong username or password
-  * user is not in group+  * user is not in correct group
 {{:tutorial:adm:winrm_rejected.png?nolink&600|}} {{:tutorial:adm:winrm_rejected.png?nolink&600|}}
  
-Access denied 500  - this error can be caused by:+**Access denied 500** - this error can be caused by:
   * wrong username or password   * wrong username or password
   * WinRM SDDL is not configured   * WinRM SDDL is not configured
 {{:tutorial:adm:winrm_500.png?nolink|}} {{:tutorial:adm:winrm_500.png?nolink|}}
 +
 +
 +**CredSSP handshake error** 
 +If you get this error when you trying to use CredSSP over HTTPS connection, the problem can be that there is configured certificate thumbprint directly in ''config/service''.
 +<code>class 'requests_credssp.exceptions.AuthenticationException'>("Server did not response with a CredSSP token after step Step 1. TLS Handshake - actual ''",)</code>
 +Execute this command to delete ''CertificateThumbprint'' value from the ''config/service''.
 +<code>winrm set winrm/config/service '@{CertificateThumbprint=""}'</code>
 +
  
 ==== HTTPS support ==== ==== HTTPS support ====
  • by erbenr