Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What ports are used for VSTS/TFS Build/Release Agent?

Can someone tell me what ports are used for the new TFS 2015 build agent for communication with TFS on-prem and Azure DevOps (aka VSTS)?

like image 206
Kevin Kraus Avatar asked Dec 03 '15 15:12

Kevin Kraus


2 Answers

The TFS 2015 Build Agent i.e. Azure DevOps agent (formerly VSTS Agent) doesn't listen on any of the ports so no port has to be opened on the target machine.

It tries to connect to VSTS on HTTPS i.e port 443.

If you have a on prem installation, the port would be the one on which TFS is hosted which is generally 8080.

So you will need to allow outgoing connections to 443 or 8080 (default).

like image 87
Harshil Lodhi Avatar answered Oct 23 '22 15:10

Harshil Lodhi


TFS 2017 ~ VSTS: 443
TFS 2015: 8080

Ref: https://docs.microsoft.com/en-us/vsts/pipelines/agents/agents?view=vsts

like image 35
Jinsoo Kim Avatar answered Oct 23 '22 15:10

Jinsoo Kim