本文整理汇总了Python中pxssh.ExceptionPxssh方法的典型用法代码示例。如果您正苦于以下问题:Python pxssh.ExceptionPxssh方法的具体用法?Python pxssh.ExceptionPxssh怎么用?Python pxssh.ExceptionPxssh使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pxssh
的用法示例。
在下文中一共展示了pxssh.ExceptionPxssh方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: OPDemoFunc
# 需要导入模块: import pxssh [as 别名]
# 或者: from pxssh import ExceptionPxssh [as 别名]
def OPDemoFunc(self, op_dictionary):
'''Process a command table
'''
xresults = {}
try:
for xkey, xcommand in sorted(op_dictionary.items()):
xresults[xkey] = list(
[_f for _f in self.my_console.run_command(xcommand) if _f])
for xkey, xvalue in sorted(xresults.items()):
log.debug('\nCommand Run: "{}"\n{}'.format(
op_dictionary[xkey], '\n'.join(xresults[xkey])), extra=xresults)
except pxssh.ExceptionPxssh as op_pxssh:
self.fail(str(op_pxssh))
except CommandFailed as xe:
my_x = {x: xe.output[x] for x in range(len(xe.output))}
log.debug('\n******************************\nCommand Failed: \n{}\n******************************'.format(
'\n'.join(my_x[y] for y, z in list(my_x.items()))), extra=my_x)
log.debug('\nExitcode {}'.format(xe))
except Exception as func_e:
self.fail('OPDemoFunc Exception handler {}'.format(func_e))
示例2: connect
# 需要导入模块: import pxssh [as 别名]
# 或者: from pxssh import ExceptionPxssh [as 别名]
def connect(hostname, username, password):
try:
s = pxssh.pxssh()
if not s.login(hostname, username, password):
print("SSH session failed on login.")
return s
except pxssh.ExceptionPxssh as e:
print('[-] Error Connecting')
print(str(e))
开发者ID:PacktPublishing,项目名称:Mastering-Python-for-Networking-and-Security,代码行数:11,代码来源:pxsshCommand.py