如何使用结构转发代理?

发布于 2024-12-09 10:11:08 字数 128 浏览 0 评论 0原文

我成功地使用我的私钥对在远程服务器上运行命令。

但是,我想使用我的本地密钥(或使用我所在的本地 ssh 代理)在远程服务器上执行 git clone ssh://private/repo 。

如何用布料来做呢?

I am successfully run()ning commands on remote server with my private key pair.

However, I'd like to do git clone ssh://private/repo on remote server using my local key (or using local ssh agent I'm in).

How to do it using fabric?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

栖迟 2024-12-16 10:11:08

从版本 1.4 开始,fabric 具有 启用代理转发的环境选项

env.forward_agent = True

UPD:此功能在 fabric< 之前有问题 /代码> 1.4.2

Since version 1.4 fabric has environment option that enables agent forwarding.

env.forward_agent = True

UPD: This feature was buggy before fabric 1.4.2

公布 2024-12-16 10:11:08

简而言之,fabric 使用 paramiko 的分叉版本,并且 paramiko 不支持 ssh 代理转发。

长答案是 fabricparamiko。即使在结构问题中有一个评论,其中包含指向以下分支的链接Fabric 和分叉的 paramiko 版本都支持 ssh 转发。因此,如果您想使用该功能,您需要从那里获取最新版本或等待一段时间直到正式发布。

The short answer is that fabric uses a forked version of paramiko and that paramiko doesn't support ssh agent forwarding.

The long answer is that there are issues for this both for fabric and paramiko. Even there's a comment in the fabric issue that contains links to a fork of both fabric and the forked paramiko version with ssh forwarding support. Hence, if you want to make use of that feature you'll need to get the latest version from there or wait for a while until it's officially released.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文