Since you don’t have a static public IP, you can use Dynamic DNS (DDNS) with Cloudflare to update your public IP automatically. Here’s a step-by-step guide to setting up RDP via port forwarding with Cloudflare DDNS.
Step 1: Set Up Port Forwarding for RDP (3389)
- Log in to your router (usually
192.168.1.1
or192.168.0.1
). - Find Port Forwarding / NAT settings.
- Create a new rule:
- Protocol: TCP
- External Port:
3389
- Internal IP:
192.168.x.x
(your shop computer’s local IP) - Internal Port:
3389
- Save the settings and restart the router.
Step 2: Get a Cloudflare Domain & API Key
- If you don’t have a domain, get one and add it to Cloudflare.
- In Cloudflare Dashboard:
- Go to My Profile → API Tokens.
- Click Create Token → Use Edit DNS Zone Template.
- Select your domain and Create API Token.
- Copy the API Token (you will need this in the script).
Step 3: Install a Cloudflare DDNS Updater on Your Shop PC
You need a script that updates Cloudflare A Record with your dynamic public IP.
Option 1: PowerShell Script (Windows)
- Open PowerShell as Administrator.
- Create a new script file:
$domain = "yourdomain.com" $subdomain = "rdp" # Change to what you want (e.g., rdp.yourdomain.com) $email = "your-cloudflare-email" $apiKey = "your-cloudflare-api-key" $zoneId = "your-cloudflare-zone-id" $recordId = (Invoke-RestMethod -Uri "https://api.cloudflare.com/client/v4/zones/$zoneId/dns_records?type=A&name=$subdomain.$domain" -Method GET -Headers @{ "X-Auth-Email" = $email "X-Auth-Key" = $apiKey "Content-Type" = "application/json" }).result.id $publicIP = (Invoke-WebRequest -Uri "https://api64.ipify.org").Content $update = @{ type = "A" name = "$subdomain" content = "$publicIP" ttl = 120 proxied = $false } | ConvertTo-Json -Depth 1 Invoke-RestMethod -Uri "https://api.cloudflare.com/client/v4/zones/$zoneId/dns_records/$recordId" -Method PUT -Headers @{ "X-Auth-Email" = $email "X-Auth-Key" = $apiKey "Content-Type" = "application/json" } -Body $update
- Save it as
update-cloudflare.ps1
. - Schedule it to run every 5 minutes:
- Open Task Scheduler → Create a new task.
- Set Trigger: Every 5 minutes.
- Set Action: Run
powershell -ExecutionPolicy Bypass -File C:\path\to\update-cloudflare.ps1
.
Step 4: Connect from the Remote PC
- On the remote PC, open Remote Desktop Connection (
mstsc.exe
). - Type:
rdp.yourdomain.com:3389
- Enter the username & password of the shop PC.
- Connect! 🎉
Security Enhancements
- Change the default RDP port to something like
3390
(Edit registry:HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp\PortNumber
). - Enable Network Level Authentication (NLA) for extra security.
- Use a strong password for the RDP user.
- Consider using VPN in the future for better security.