def connect(self):
self.con = pexpect.spawn('/usr/bin/env bash')
for hop in self.hops:
self.con.sendline('ssh -tt {host}'.format(host = hop))
self.hostname = hop
if self.target_host:
self.con.sendline('ssh -tt {host}'.format(host = self.target_host))
self.hostname = self.target_host
self.con.sendline(self.ps1_export_cmd)
self.con.expect(self.ps1_re)
#all_sessions.append(self)
return self
评论列表
文章目录