The DevOps approach is about delivering changes and infrastructure to production environments as quickly and automatically as possible. Within the Azure DevOps pipeline, it is often necessary to automate the deployment of virtual machines, install complex applications on them, and perform configuration remotely using PowerShell scripts.
The goal of this automation is to significantly accelerate infrastructure deployment, reduce errors by eliminating manual operations, and improve the overall stability and predictability of the process.
Problem DefinitionWhen you try to implement the above automation, you can often run into an issue known as a Second hop error. What does this mean in practice?
The second jump problem refers to the following situation:
- You have logged on to ServerA.
- Then from ServerA, you establish a remote connection via PowerShell to ServerB.
- When you run a cmdlet on ServerB through this remote session, it attempts to access a resource located on ServerC.
- However, ServerC rejects the request because the credentials passed to connect from ServerA to ServerB are not passed on from ServerB to ServerC.
This problem occurs in Azure DevOps pipelines, the agent on which the pipelines are executed is remotely connected to the virtual machine via PowerShell Remote. Thus, the agent is ServerB and the virtual machine is ServerC. This is because the standard Kerberos authentication mechanism does not allow credentials to be transferred beyond one step.
This problem is especially critical in DevOps because it breaks the concept of automation and process continuity. It often results in the need for temporary “manual workarounds,” which negatively impacts productivity and increases the likelihood of errors.
What are the ways to solve this problem?The second hop problem can be solved in several ways:
- Using CredSSP (Credential Security Support Provider).
- Using Kerberos Constrained Delegation.
- Pre-copying all required resources locally to the virtual machine before running the deployment.
Within DevOps, the use of CredSSP technology has become most popular because it is the most affordable solution despite some security risks.
Solving this problem with CredSSPTo solve the problem of second wadding in Azure DevOps pipeline we need to follow two steps.
The first one is Enabling CredSSP on the Azure DevOps agent.