免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 5751 | 回复: 7
打印 上一主题 下一主题

paramiko 启用openssh代理程序转发 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-01-15 18:39 |只看该作者 |倒序浏览
本帖最后由 yongsheng_2012 于 2014-01-15 18:58 编辑

麻烦大家帮忙看个问题:
paramiko 有没有“启用openssh代理程序转发”这个功能,如果有的话,该怎么用



openssh代理程序转发也就是在man ssh中的-A选项
-A      Enables forwarding of the authentication agent connection.  This can also be specified on a per-host basis in a configuration file.

             Agent forwarding should be enabled with caution.  Users with the ability to bypass file permissions on the remote host (for the agent’s
             Unix-domain socket) can access the local agent through the forwarded connection.  An attacker cannot obtain key material from the
             agent, however they can perform operations on the keys that enable them to authenticate using the identities loaded into the agent.

谢谢

论坛徽章:
2
狮子座
日期:2014-01-17 09:09:212015年迎新春徽章
日期:2015-03-04 09:58:11
2 [报告]
发表于 2014-01-15 19:49 |只看该作者
这个没有用过

论坛徽章:
0
3 [报告]
发表于 2014-01-16 11:48 |只看该作者
没有人用过吗?

或者是说没有这个选项

论坛徽章:
60
20周年集字徽章-20	
日期:2020-10-28 14:04:3015-16赛季CBA联赛之北京
日期:2016-07-06 15:42:0715-16赛季CBA联赛之同曦
日期:2016-06-12 10:38:0915-16赛季CBA联赛之佛山
日期:2016-05-27 11:54:56黄金圣斗士
日期:2015-12-02 11:44:35白银圣斗士
日期:2015-11-25 14:32:43白银圣斗士
日期:2015-11-23 12:53:352015亚冠之布里斯班狮吼
日期:2015-10-21 16:55:482015亚冠之首尔
日期:2015-09-01 16:46:052015亚冠之德黑兰石油
日期:2015-08-31 11:39:192015亚冠之萨济拖拉机
日期:2015-08-28 21:06:5315-16赛季CBA联赛之广东
日期:2016-07-12 14:58:53
4 [报告]
发表于 2014-01-20 14:51 |只看该作者
你是想做什么呐?

论坛徽章:
0
5 [报告]
发表于 2014-01-21 10:52 |只看该作者

  1. client = paramiko.SSHClient()
  2. client.load_system_host_keys()
  3. client.connect('127.0.0.1', port=22, allow_agent=True)
复制代码
试试?

论坛徽章:
0
6 [报告]
发表于 2014-01-21 11:29 |只看该作者
  1. class MySSH(SSHClient):
  2.     def __init__(self, *args, **kwargs):
  3.         super(self.__class__, self).__init__(*args, **kwargs)
  4.         self.load_system_host_keys()
  5.         self.set_missing_host_key_policy(AutoAddPolicy())

  6.     def connect(self, *args, **kwargs):
  7.         super(self.__class__, self).connect(*args, **kwargs)

  8.     def exec_command_chan(self, command, combine_stderr=True, timeout=None, get_pty=False):
  9.         """执行命令, 并返回 channel"""
  10.         chan = self._transport.open_session()
  11.         if(get_pty):
  12.             chan.get_pty()
  13.         chan.request_forward_agent(agent.AgentClientProxy)
  14.         #chan.set_combine_stderr(combine_stderr)
  15.         chan.settimeout(timeout)
  16.         chan.exec_command(command)
  17.         return chan

  18. if  __name__ == '__main__':
  19.     ssh = MySSH()
  20.     ssh.connect('127.0.0.1')
  21.     chan = ssh.exec_command_chan('ssh -o StrictHostKeyChecking=no 127.0.0.1 \
  22.         ssh -o StrictHostKeyChecking=no 127.0.0.1 "ip addr show ; echo stderr line >&2"')
  23.     stdout = chan.makefile('rb', -1)
  24.     stderr = chan.makefile_stderr('rb', -1)
  25.     print '*** stdout'
  26.     for line in stdout:
  27.         print line,
  28.     print '*** stderr'
  29.     for line in stderr:
  30.         print line,
复制代码
找到之前写过的一断测试代码, 不知楼主是不是要这个功能

论坛徽章:
60
20周年集字徽章-20	
日期:2020-10-28 14:04:3015-16赛季CBA联赛之北京
日期:2016-07-06 15:42:0715-16赛季CBA联赛之同曦
日期:2016-06-12 10:38:0915-16赛季CBA联赛之佛山
日期:2016-05-27 11:54:56黄金圣斗士
日期:2015-12-02 11:44:35白银圣斗士
日期:2015-11-25 14:32:43白银圣斗士
日期:2015-11-23 12:53:352015亚冠之布里斯班狮吼
日期:2015-10-21 16:55:482015亚冠之首尔
日期:2015-09-01 16:46:052015亚冠之德黑兰石油
日期:2015-08-31 11:39:192015亚冠之萨济拖拉机
日期:2015-08-28 21:06:5315-16赛季CBA联赛之广东
日期:2016-07-12 14:58:53
7 [报告]
发表于 2014-01-21 13:00 |只看该作者
回复 6# jxing_ing


    学习,猜测楼主应该是要这个.

论坛徽章:
5
丑牛
日期:2014-01-21 08:26:26卯兔
日期:2014-03-11 06:37:43天秤座
日期:2014-03-25 08:52:52寅虎
日期:2014-04-19 11:39:48午马
日期:2014-08-06 03:56:58
8 [报告]
发表于 2014-01-22 11:19 |只看该作者
没有用过这个?{:2_176:}

您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP