Internet IPs for Windows Virtual Desktop

Copper Contributor

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

@jj78473 

You can find all the "WindowsVirtualDesktop" IP's in the Azure IP Ranges and Service Tags – Public Cloud

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

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