我正在运行 PuTTY 的 pageant v0.78,它支持 Windows 上的命名管道,https://www.chiark.greenend.org.uk/~sgtatham/putty/wishlist/pageant-named-pipe.html。
我的问题是......我如何找出选美比赛使用的管道的名称?
答案1
使用选项启动 Pageant --openssh-config pageant.conf
。它将把与 OpenSSH 兼容的配置文件写入指定路径,您稍后可以Include
从主 OpenSSH 配置文件中读取该文件,也可以从其他工具中读取该文件:
{~\.ssh} > cat .\pageant.conf
IdentityAgent \\.\pipe\pageant.User.ba27892<...>825bc78
{~\.ssh} > cat .\config
Include ~/.ssh/pageant.conf
(遗憾的是,生成的配置不能与 Windows OpenSSH 完全兼容,因为 Windows OpenSSH 需要以某种方式引用反斜杠。)