diff --git a/Jenkinsfile b/Jenkinsfile index 7403e4c..37e82a4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,8 +11,11 @@ pipeline { steps { sshagent(['backend-server-digitaltwin']) { // Use the credential ID you created sh ''' - # Extract public key from agent - ssh-add -L + # Print SSH key info + ssh-add -l + + # Try verbose SSH connection + ssh -v -o StrictHostKeyChecking=no aimo@192.168.1.82 'echo test' ''' } }