Forum Discussion

jj78473's avatar
jj78473
Copper Contributor
Jul 29, 2021

Internet IPs for Windows Virtual Desktop

I have a need to lock down Internet based firewalls to specific IP ranges for access from Windows Virtual Desktops.

 

I need to know the IP addresses or ranges that WVD uses on the Internet.

 

Does anyone have a link or list to such information?

 

Thanks!

3 Replies

  • Rather than managing IP addresses, it would be easier to put the AVD service tag on your route table to let that traffic to go direct and force all your other traffic to the firewall (force tunneling):
    Get-AzRouteTable -ResourceGroupName <ResourceGroupName> -Name <RouteTableName> | Add-AzRouteConfig -Name "AVD" -AddressPrefix "WindowsVirtualDesktop" -NextHopType "Internet" | Set-AzRouteTable
  • Grant Dickins's avatar
    Grant Dickins
    Copper Contributor

    jj78473 

    You can find all the "WindowsVirtualDesktop" IP's in the https://www.microsoft.com/en-us/download/details.aspx?id=56519

    Not necessarily up-to-date. We've had to rely on our Paloalto to find some additional IPs to allow.

Resources