-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_telnet.py
49 lines (38 loc) · 1.23 KB
/
test_telnet.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
#!/usr/bin/env python
import telnetlib
import sys
import socket
import time
TELNET_PORT = 23
TELNET_TIMEOUT = 6
def send_comand(remote_conn, cmd):
cmd = cmd.rstrip() #strip off any newlines
remote_conn.write(cmd + '\n')
time.sleep(1)
return remote_conn.read_very_eager()
def login(remote_conn, username, password):
output = remote_conn.read_until("sername:", TELNET_TIMEOUT)
remote_conn.write(username + '\n')
output += remote_conn.read_until("assword:", TELNET_TIMEOUT)
remote_conn.write(password + '\n')
return output
def telnet_connect(ip_addr):
try:
return telnetlib.Telnet(ip_addr, TELNET_PORT, TELNET_TIMEOUT)
except socket.timeout:
sys.exit("\nConnection Failed\n")
def main():
ip_addr = '184.105.247.70'
username = 'pyclass'
password = '88newclass'
remote_conn = telnet_connect(ip_addr)
output = login(remote_conn, username, password)
time.sleep(1) # wait for the command to process
output = remote_conn.read_very_eager()
# Disable paging and show version
output = send_comand(remote_conn, 'terminal length 0')
output = send_comand(remote_conn, 'show version')
print output
remote_conn.close()
if __name__ == '__main__':
main()