1#!/usr/bin/env python3
2
3
4from telnet_utility import TelnetRemoteclient
5
6import os
7import sys
8
9# ---------Set sys.path for pluqin execution---------------------------------------
10# Absolute path to this plugin
11abs_path = os.path.abspath(os.path.dirname(sys.argv[0]))
12# full_path to plugins parent directory
13full_path = abs_path.split('plugins')[0]
14sys.path.append(full_path)
15# Walk path and append to sys.path
16for root, dirs, files in os.walk(full_path):
17    for found_dir in dirs:
18        sys.path.append(os.path.join(root, found_dir))
19
20
21def telnet_execute_cmd(hostname,
22                       username,
23                       password,
24                       command,
25                       timeout=60):
26    r"""
27        Description of argument(s):
28
29        hostname        Name/IP of the remote (targeting) host
30        username        User on the remote host with access to FFCD files
31        password        Password for user on remote host
32        command         Command to run on remote host
33        timeout         Time, in second, to wait for command completion
34    """
35    telnet_remoteclient = TelnetRemoteclient(hostname,
36                                             username,
37                                             password)
38    result = ''
39    if telnet_remoteclient.tn_remoteclient_login():
40        # result: stdout from remote host
41        result = \
42            telnet_remoteclient.execute_command(command, timeout)
43
44    # Close telnet session
45    if telnet_remoteclient:
46        telnet_remoteclient.tn_remoteclient_disconnect()
47
48    return result
49