Forum Discussion
jj78473
Jul 29, 2021Copper Contributor
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
- JasonMasten
Microsoft
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 DickinsCopper Contributor
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.
- jj78473Copper Contributor
Grant Dickins Thanks