# Configuring networking settings

> Executing a workflow implies robot operations such as downloading the automation package, checking licenses, or verifying certificates. To do that, the robot needs to connect to several services. For a successful execution, make sure to grant your robot access to the listed services:

Executing a workflow implies robot operations such as downloading the automation package, checking licenses, or verifying certificates. To do that, the robot needs to connect to several services. For a successful execution, make sure to grant your robot access to the listed services:

## Outbound connections

 <colgroup>
  <col/>
  <col/>
  <col/>
  <col/>
  <col/>
 </colgroup>
 
  
     Hostname  
     Protocol  
     Port  
     Application  
     Usage  
  
 
 
  
    <code>cloud.uipath.com</code> 
     TCP  
     443  
     https  
     To access Automation Cloud Orchestrator.  
  
  
    <code>download.uipath.com</code> 
     TCP  
     443  
     https  
    To download Studio or Robot MSI installers during automatic updates. 
  
  
    <code>pkgs.dev.azure.com</code><code>uipathpackages.myget.org</code> 
     TCP  
     443  
     https  
     To download the required activity packages.  
  
  
    <code>*.vo.msecnd.net</code> 
     TCP  
     443  
     https  
     To access Azure CDN, which is used by Myget to distribute files.  
  
  
    <code>activate.uipath.com</code> 
     TCP  
     443  
     https  
     To access the licensing server, for checking the license status and verifing data in the license folder.  
  
  
    <code>jptk0*.proinity.net</code> 
     TCP  
     443  
     https  
     To validate the root certification authority for the code signing certificate, unless it is already stored in the Windows Certificate Store.  
  
  
    <code>*.nuget.org</code> 
     TCP  
     443  
     https  
     To download the required activity dependencies.  
  
  
    <code>a23-*-*-*.deploy.static.akamaitechnologies.com</code> 
     TCP  
     80  
     http  
     To verify if the code signing certificate has been revoked.  
  
  
    <code>x1.i.lencr.org</code> 
     TCP  
     80  
     http  
     To verify whether the Let's Encrypt certificate authority has revoked the code signing certificate.  
  
  
    <code>*.service.signalr.net</code> 
     TCP  
     443  
     https, wss  
     To connect to the SignalR channels provided by Orchestrator.  
  
  
    <code>*.ingest.sentry.io</code> 
     TCP  
     443  
     https  
     Required by Assistant, to send application errors to Sentry. This helps tracking and solving the most common problems.  
  
  
    <code>dev.azure.com</code><code>pkgs.dev.azure.com</code><code>*.blob.core.windows.net</code> 
     TCP  
     443  
     https  
     To enable UiPath Robots to store and retrieve data using Azure storage services.  
  
  
    &nbsp; 
    &nbsp; 
    &nbsp; 
    &nbsp; 
    &nbsp; 
  
  
    <code>gallery.uipath.com</code><code>marketplace.uipath.com</code><code>*.pkgs.visualstudio.com</code>Note: <code>gallery.uipath.com/api/v2</code> redirects to <code>uipath.pkgs.visualstudio.com</code>
     TCP  
     443  
     https  
     To access the Marketplace NuGet feed.  
  
  
    <code>dc.applicationinsights.azure.com</code><code>dc.applicationinsights.microsoft.com</code><code>dc.services.visualstudio.com</code><code>*.in.applicationinsights.azure.com</code> 
     TCP  
     443  
     https  
     To send telemetry data.  
  
  
    <code>asstoffalp.z6.web.core.windows.net</code> 
    TCP 
    443 
    https 
     Required by Assistant, to load components for the Excel add-in.  
  
  
    <code>*.uipath.com</code> 
     TCP  
     443  
     https, wss  
    Required by the  Live streaming  feature, to connect the robot and the browser. 
  
 

## Outbound connections in JSON format

Copy the data in the JSON format and paste it in your network configuration file:

```
[
    "cloud.uipath.com",
    "download.uipath.com",
    "pkgs.dev.azure.com",
    "uipathpackages.myget.org",
    "*.vo.msecnd.net",
    "activate.uipath.com",
    "jptk0*.proinity.net",
    "*.nuget.org",
    "a23-*-*-*.deploy.static.akamaitechnologies.com",
    "x1.i.lencr.org",
    "*.service.signalr.net",
    "*.ingest.sentry.io",
    "dev.azure.com",
    "pkgs.dev.azure.com",
    "*.blob.core.windows.net",
    "gallery.uipath.com",
    "marketplace.uipath.com",
    "*.pkgs.visualstudio.com",
    "dc.applicationinsights.azure.com",
    "dc.applicationinsights.microsoft.com",
    "dc.services.visualstudio.com",
    "*.in.applicationinsights.azure.com",
    "asstoff1bp.z6.web.core.windows.net",
    "*.uipath.com"
  ]
```
