-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyssh.py
82 lines (57 loc) · 2.3 KB
/
pyssh.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Utility function for ssh connection driver
# Based on Udemy Python Networking exercises
# Open SSHv2 connection to devices
import datetime
def open_ssh_conn(ip):
# Change exception message
try:
# Define SSH parameters
selected_user_file = open(user_file, 'r')
# Starting from the beginning of the file
selected_user_file.seek(0)
username = selected_user_file.readlines()[0].split(',')[0]
# Starting from the beginning of the file
selected_user_file.seek(0)
password = selected_user_file.readlines()[0].split(',')[1]
# Logging into device
session = paramiko.SSHClient()
session.set_missing_host_key_policy(
paramiko.AutoAddPolicy())
session.connect(ip, username=username, password=password)
connection = session.invoke_shell()
# Setting terminal length for entire output - no pagination
connection.send("terminal length 0\n")
time.sleep(1)
# Entering global config mode
connection.send("\n")
connection.send("configure terminal\n")
time.sleep(1)
# Open user selected file for reading
selected_cmd_file = open(cmd_file, 'r')
# Starting from the beginning of the file
selected_cmd_file.seek(0)
# Writing each line in the file to the device
for each_line in selected_cmd_file.readlines():
connection.send(each_line + '\n')
time.sleep(2)
# Closing the user file
selected_user_file.close()
# Closing the command file
selected_cmd_file.close()
# Checking command output for IOS syntax errors
output = connection.recv(65535)
if re.search(r"% Invalid input detected at", output):
print("* There was at least one IOS syntax error on device %s" % ip)
else:
print("\nDONE for device %s" % ip)
# Test for reading command output
# print output + "\n"
# Closing the connection
session.close()
except paramiko.AuthenticationException:
print(
"* Invalid username or password. \n* Please check the username/password file or the device configuration!")
print("* Closing program...\n")
# Calling the SSH function
ip = "10.0.2.11"
open_ssh_conn(ip)