piyush172
piyush172

Reputation: 100

Hosting a Windows server 2016 on GCP

I have a Static Public IP RDP Windows server I want to host through GCP,so as to get the Security Feature to secure my server from RDP Attack and other...

What to Do ?

Upvotes: 0

Views: 82

Answers (1)

Wojtek_B
Wojtek_B

Reputation: 4443

Since your question is very broad I can only suggest to improve your servers's security:

Go to your firewall settings in GCP console and set check/set up some rules:

  • limit the number of IP's able to connect via RDP (leave just the ones you need)
  • make sure ICMP response is turned off
  • block all TCP/UDP ports and leave only the ones you use (like RDP)

You can check what rules are already in place when you create your VPC (in automatic mode you get some prepoulated rules that allow to ping or rdp to an instances).

Lastly - - install all the latest updates on the server - it will also improve the security of your VM/

You can read more for example here - how to harden your 2016 machine.

These are just simple rules to make your machine much more secure. If you want more detailed solution then update your question and put some more details about your use case.

Upvotes: 1

Related Questions