Skip to content
Snippets Groups Projects
Commit a8aa360d authored by Christian Ringger's avatar Christian Ringger
Browse files

add rdp restriction in secure your device

parent 45bc6b5f
No related branches found
No related tags found
No related merge requests found
...@@ -40,6 +40,23 @@ This will enable more restricive firewall settings. ...@@ -40,6 +40,23 @@ This will enable more restricive firewall settings.
Go to **Settings** > **Update & Security** > **Windows Security** > **Open Windows Security**, Go to **Settings** > **Update & Security** > **Windows Security** > **Open Windows Security**,
check that all is green. check that all is green.
### Remote Desktop
When you enable Remote Desktop will this be per default world wide open.
You can restrict it with a powershell in admin mode.
```powershell
# Allow just current subnet.
Set-NetFirewallRule -DisplayGroup "Remote Desktop" `
-RemoteAddress "LocalSubnet"
# Allow just current subnet and eth vpn networks
Set-NetFirewallRule -DisplayGroup "Remote Desktop" `
-RemoteAddress "LocalSubnet", 10.5.0.0/16, 10.6.0.0/16
```
Linux Linux
----- -----
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment