惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
博客园_首页
博客园 - 【当耐特】
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
GbyAI
GbyAI
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Help Net Security
T
Tailwind CSS Blog
B
Blog RSS Feed
Martin Fowler
Martin Fowler
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
博客园 - 叶小钗
雷峰网
雷峰网
量子位

kkocdko's blog

Tasker 永久试用修改思路 - kkocdko's blog 极限压缩文档扫描件 - kkocdko's blog Bypass the Blank Chars Detection crknob - Chrome portable patch 我如何将博客首页体积降至 3 KB - kkocdko's blog 如何极限优化压缩文件体积 - kkocdko's blog EmEditor 精简版 - kkocdko's blog Backup Data from VSCode Web 优雅地游玩 Minecraft - kkocdko's blog 让程序以管理员权限运行的 PE 清单 - kkocdko's blog 注销 ZEIT 账号之后遇到的坑 - kkocdko's blog 本博客的协议已更改为 CC0 - kkocdko's blog mobp - 使 MSOffice 后台常驻 在安装 VS 生成工具时规避 .NET 安装错误 各种格式的占位空文件 - kkocdko's blog 优雅地游玩 Flash 游戏 - kkocdko's blog WPS 2016 极限精简版 - kkocdko's blog Convert Const to Let by Terser 规避 Visual Studio 许可证过期的 Bug 方便地使用 iPod - kkocdko's blog 用 UserJS 注入 UserCSS - kkocdko's blog 注册表修改文件关联(默认程序) - kkocdko's blog 周期精准的太阳系模型 - kkocdko's blog 关闭屏幕的 WinAPI - kkocdko's blog 重置 Windows 图标缓存 - kkocdko's blog AIDA64 极限精简单文件版 - kkocdko's blog 几何画板单文件精简版 - kkocdko's blog 世界之窗浏览器单文件版 - kkocdko's blog 在 MBR + Legacy 下用 Bootmgr 引导 Ubuntu 简洁的 Markdown 预览工具 - kkocdko's blog
Cons of IronRDP today, compare to FreeRDP
2026-04-11 · via kkocdko's blog

In October 2025.

Usage

First, my min method to run IronRDP. Require a Windows machine running with RDP enabled.

Download https://github.com/Devolutions/devolutions-gateway .

{
  "Id": "xxx-xxx-xxx",
  "ProvisionerPublicKeyFile": "provisioner.pem",
  "ProvisionerPrivateKeyFile": "provisioner.key",
  "TlsVerifyStrict": true,
  "Listeners": [
    {
      "InternalUrl": "tcp://*:8181",
      "ExternalUrl": "tcp://*:8181"
    },
    {
      "InternalUrl": "http://*:7171",
      "ExternalUrl": "https://*:7171"
    }
  ],
  "WebApp": {
    "Enabled": true,
    "Authentication": "None",
    "StaticRootPath": "webapp"
  },
  "__debug__": {
    "disable_token_validation": true
  }
}
kkocdko@klp1:/media/kkocdko/KK_TMP_1/ironrdp$ tree
.
├── boot.stacktrace
├── devolutions-gateway
├── gateway.json
├── job_queue.db
├── provisioner.key
├── provisioner.pem
└── webapp
    ├── client
    │   ├── 3rdpartylicenses.txt
    │   ├── assets
    │   └── ...
    └── player
        ├── assets
        ├── index.html
        ├── locales
        └── ...

20 directories, 130 files
kkocdko@klp1:/media/kkocdko/KK_TMP_1/ironrdp$ 

Cons

  • Clipboard unusable.

  • Poor performance in browser WebGL renderer.

  • Due to the lake of implement, it use much more bandwidth compare to FreeRDP.

Reference