- M0: libghostty SSH 终端(渲染/输入/连接)+ 白屏修复(OutputGate) + 会话状态机/自动重连 - M1: tsnet 用户态组网 + SSH-over-tsnet(fd 桥),shell 级真机验证;R5(Go+gvisor+C+++Swift 同进程) retire - M1.5: tmux -CC 原生 tab(MVP) - 结构: packages/(TXCore·TXTransport), apps/TerminalX, vendor/(libghostty-spm/libssh2/mbedtls/tsnet-bridge), artifacts/ - 文档: CLAUDE.md + docs/HANDOFF.md(新会话入口) - 环境: 认证代理→依赖 vendor 本地化;Go 在 ~/.local/go;仅模拟器/未签名 - 待续: M2 mosh, tmux 多 pane, M4 安全(host key/SE) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
30 lines
1.2 KiB
PowerShell
Executable File
30 lines
1.2 KiB
PowerShell
Executable File
#!/usr/bin/env pwsh
|
|
# Copyright (C) The libssh2 project and its contributors.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Partially copied from https://github.com/appveyor/ci/blob/master/scripts/enable-rdp.ps1
|
|
|
|
# get current IP
|
|
$ip = (Get-NetIPAddress -AddressFamily IPv4 | Where-Object {$_.InterfaceAlias -like 'ethernet*'}).IPAddress
|
|
$port = 3389
|
|
if($ip.StartsWith('172.24.')) {
|
|
$port = 33800 + ($ip.split('.')[2] - 16) * 256 + $ip.split('.')[3]
|
|
}
|
|
elseif($ip.StartsWith('192.168.') -or $ip.StartsWith('10.240.')) {
|
|
# new environment - behind NAT
|
|
$port = 33800 + ($ip.split('.')[2] - 0) * 256 + $ip.split('.')[3]
|
|
}
|
|
elseif($ip.StartsWith('10.0.')) {
|
|
$port = 33800 + ($ip.split('.')[2] - 0) * 256 + $ip.split('.')[3]
|
|
}
|
|
|
|
# get external IP
|
|
$extip = (New-Object Net.WebClient).DownloadString('https://www.appveyor.com/tools/my-ip.aspx').Trim()
|
|
|
|
# allow inbound traffic
|
|
New-NetFirewallRule -DisplayName 'SSH via RDP port' -Direction Inbound -Action Allow -Protocol TCP -LocalPort 22,3389
|
|
|
|
# launch remote docker daemon with reverse SSH tunnel
|
|
$scriptPath = (split-path -parent $MyInvocation.MyCommand.Definition) -replace '\\', '/'
|
|
& C:\msys64\usr\bin\sh -l -c "$scriptPath/docker-bridge.sh $ip $extip $port"
|