本文整理匯總了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