Hi, Jenkins have a problem trying to connect to the cvs server using a non default port:
cvs checkout -P -r BranchXXX -d workspace workspaceXXX > > ... > ... > ERROR: CVS Authentication failed: Timeout, no response from server. > > I can log in using the command line, I mean I can execute the same command that jenkins is trying to execute, (setting the CVSROOT) with no issues: cvs -d :extssh:USER@SERVER:/export/cvs checkout -P -r BranchXXX -d workspace workspaceXXX > > Because, I've setted the ~/.ssh/config file:(as this guy explains http://www.bartbusschots.ie/blog/?p=527) > Host SERVER Port 123 > If I don't create this config file I'm not able to log in through the terminal, same problem that Jenkins has. I tried setting the config file where jenkins takes the private key, but no luck... How can I set the config file to tell jenkins the port that my server uses? Thanks in advance!