From b621a2628b59fbe48341615a19ecec3b4f3ec7fc Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 11 Apr 2026 18:21:22 +0000 Subject: [PATCH] [client] Use port 22338 for RDP sideband auth server https://claude.ai/code/session_01C38bCDyYzLgxYLVwJkcUng --- client/rdp/server/server.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/rdp/server/server.go b/client/rdp/server/server.go index 726bfddfd..1ae988564 100644 --- a/client/rdp/server/server.go +++ b/client/rdp/server/server.go @@ -17,11 +17,11 @@ import ( ) const ( - // InternalRDPAuthPort is the internal port the sideband auth server listens on. - InternalRDPAuthPort = 22023 + // InternalRDPAuthPort is the port the sideband auth server listens on. + InternalRDPAuthPort = 22338 // DefaultRDPAuthPort is the external port on the WireGuard interface (DNAT target). - DefaultRDPAuthPort = 3390 + DefaultRDPAuthPort = 22338 // maxRequestSize is the maximum size of an auth request in bytes. maxRequestSize = 64 * 1024