Google 云 Windows VM RDP(tcp) 端口更改不起作用

Google Cloud Windows VM RDP(tcp) port change not working

在Google云平台中,我有windows个虚拟机,我想建立一个远程桌面连接,如果我在创建虚拟机时使用默认端口连接就可以,但是如果我从云控制台或什至从 regedit 将端口更改为其他端口(比如我尝试了 3300、3388)并重新启动实例,RDP 将停止工作。有什么想法吗?

您是否将新端口添加到防火墙规则中?传入端口默认被阻止,如果您想使用新端口,您必须将其添加到 VPC-Networking

下面的规则中

除了 GCP firewall rule, you would have to open the port from the instance (Windows firewall). I assume you can not access the instance anymore. As such, you can use a startup script by editing the instance and add a metadata key 和值。

类似于此Microsoft blog example,您可以将此键“windows-startup-script-ps1”与此Powershell脚本值

一起使用
netsh advfirewall firewall add rule name="Open Port  3300" dir=in action=allow protocol=TCP localport= 3300

然后,重启(重置实例)。