I'm setting up my first RDS farm consisting of 4 Windows Server 2019 VMs
Everything is up and running internally, I can hit the gateway/webserver, log in, download the RDP shortcut and connect into one of the hosts just fine.
https://pasteboard.co/kjjcHGKe79Pr.png
Externally is where I'm running into an issue.. I can hit the gateway/webserver just fine using the FQDN. It shows secured using my SSL cert purchased from Network Solutions. However, when I download the RDP shortcut and attempt to log in, I'm presented with the following error:
https://pasteboard.co/z9aIq6JeVpWk.png
Notice the certificate that I am seeing when I click to view it -- it's not showing my Network Solutions certificate for the FQDN of the gateway, https://rds.domain.com/.
Here are my RDS deployment settings, where I've applied my https://rds.domain.com/ Network Solutions certficate for all roles:
https://pasteboard.co/GiwRPYdpciIU.png
And here is my Network Solutions SSL cert that is applied to the RDS Gateway:
https://pasteboard.co/RIWcePgiDQkv.png
Where am I going wrong here? I'm totally stumped.. appreciate any help or guidance here :)
Import-Module RemoteDesktop
Set-RDSessionCollectionConfiguration -CollectionName "Your collection" -CustomRdpProperty "alternate full address:s:rds.domain.com"
"The remote resource can't be reached. Check your connection and try again or ask your network administrator for help."
Any idea why? This works perfectly fine from inside the LAN, so to me, it has to be firewall-related somehow. I am currently forwarding TCP/443 and UDP/3391 to the Static NAT rule that I've defined which points the public IP to the private IP of the RDS gateway server.
When I attempt to connect via RDS externally, I don't even see the traffic ever hit the firewall in the logs..
For what it's worth, I've also defined the DefaultTSGateway field to the FQDN of my RDS Gateway within IIS, which from my research is typically overlooked and required:
Â
I feel like this is something small that I'm not noticing..Any help would be greatly appreciated!