Skip to content

Commit a0d231c

Browse files
committed
update code and file name
1 parent 15c59ac commit a0d231c

13 files changed

+343
-160
lines changed

pexpect/01_telnet_show_version.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import pexpect
2+
3+
# Start a telnet session to the Cisco device
4+
child = pexpect.spawn("telnet 172.16.141.11")
5+
child.expect("Username: ")
6+
child.sendline("admin")
7+
child.expect("Password: ")
8+
child.sendline("cisco")
9+
child.expect("#") # Wait for the device prompt
10+
11+
# Send the command to show the version
12+
child.sendline("show version | i V")
13+
child.expect("#") # Wait for the prompt after the command
14+
15+
# Convert the output to a string and print it
16+
show_output = child.before.decode("utf-8")
17+
print(show_output)
18+
19+
# Exit the session
20+
child.sendline("exit")

pexpect/02_ssh_show_version.py

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import pexpect
2+
3+
# Start an SSH session to the Cisco device
4+
child = pexpect.spawn("ssh [email protected]")
5+
child.expect("Password: ")
6+
child.sendline("cisco")
7+
child.expect("SW1>") # Expect the user mode prompt
8+
9+
# Enter privileged mode
10+
child.sendline("enable")
11+
child.expect("Password: ")
12+
child.sendline("cisco")
13+
child.expect("S1#") # Expect the privileged mode prompt
14+
15+
# Send command to show version
16+
child.sendline("show version | i V")
17+
child.expect("S1#") # Wait for the prompt after the command
18+
19+
# Convert the output to a string and print it
20+
show_output = child.before.decode("utf-8")
21+
print(show_output)
22+
23+
# Exit the session
24+
child.sendline("exit")
+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Telnet to Device
2+
import pexpect
3+
4+
# Define devices with their prompts and IP addresses
5+
devices = {
6+
"CoreSW": {"ip": "192.168.100.20"},
7+
"SW1": {"ip": "192.168.100.21"},
8+
}
9+
10+
# Credentials for login
11+
username = "admin"
12+
password = "cisco"
13+
14+
# Loop through each device in the devices dictionary
15+
for device in devices.keys():
16+
ip_address = devices[device]["ip"]
17+
18+
# Start a telnet session to the device
19+
child = pexpect.spawn("telnet " + ip_address)
20+
21+
# Login process
22+
child.expect("Username: ")
23+
child.sendline(username)
24+
child.expect("Password: ")
25+
child.sendline(password)
26+
27+
# Expect the user EXEC prompt
28+
child.expect(">")
29+
30+
# Enter privileged mode
31+
child.sendline("enable")
32+
child.expect("Password: ")
33+
child.sendline(password) # Optional if the user has privilege level 15
34+
child.expect("#") # Expect the privileged EXEC prompt
35+
36+
# Send command to show version
37+
child.sendline("show version | i V")
38+
child.expect("#") # Wait for the prompt after the command
39+
40+
# Retrieve and print the output
41+
show_output = child.before.decode("utf-8")
42+
print(f"Output from {device}:\n{show_output}")
43+
44+
# Exit the session
45+
child.sendline("exit")

pexpect/04_ssh_multidevice_script.py

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# SSH to Devices
2+
import pexpect
3+
4+
# Define devices with their IP addresses
5+
devices = {
6+
"CoreSW": {"ip": "192.168.100.20"},
7+
"SW1": {"ip": "192.168.100.21"},
8+
}
9+
10+
username = "admin"
11+
password = "cisco"
12+
13+
# Loop through each device
14+
for device in devices.keys():
15+
ip_address = devices[device]["ip"]
16+
17+
# Start an SSH session to the device
18+
child = pexpect.spawn("ssh " + username + "@" + ip_address)
19+
20+
# Login process
21+
child.expect("Password: ")
22+
child.sendline(password)
23+
24+
# Expect the user EXEC prompt
25+
child.expect(">") # User mode prompt
26+
27+
# Enter privileged mode
28+
child.sendline("enable")
29+
child.expect("Password: ")
30+
child.sendline(password) # Optional if the user has privilege level 15
31+
child.expect("#") # Privileged mode prompt
32+
33+
# Send command to show version
34+
child.sendline("show version | i V")
35+
child.expect("#") # Wait for the prompt after the command
36+
37+
# Retrieve and print the output
38+
show_output = child.before.decode("utf-8")
39+
print(f"Output from {device}:\n{show_output}")
40+
41+
# Exit the session
42+
child.sendline("exit")

pexpect/05_device_config_backup.py

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
#!/usr/bin/env python
2+
# For SSH create user with privilege level 15
3+
import getpass
4+
from pexpect import pxssh
5+
6+
# Define devices and their details
7+
devices = {
8+
"S1": {"ip": "172.16.141.11"},
9+
"R1": {"ip": "172.16.141.12"},
10+
}
11+
12+
# Commands to execute on each device
13+
commands = ["term length 0", "show run"]
14+
15+
# Get credentials from the user
16+
username = input("Username: ")
17+
password = getpass.getpass("Password: ")
18+
19+
# Loop through devices and backup configurations
20+
for device in devices.keys():
21+
outputFileName = device + "_output.cfg"
22+
device_ip = devices[device]["ip"]
23+
24+
# Initialize the SSH session
25+
child = pxssh.pxssh()
26+
# Manually specify the prompt to expect from the device (e.g., "#")
27+
child.PROMPT = r"[#>]"
28+
29+
# Attempt to login with the specified prompt pattern
30+
child.login(
31+
device_ip,
32+
username.strip(),
33+
password.strip(),
34+
auto_prompt_reset=False, # Do not attempt to auto-set the prompt
35+
)
36+
print(f"Backing up configuration for device: {device}")
37+
38+
# Open the output file for writing
39+
with open(outputFileName, "wb") as f:
40+
# Loop through each command and write the output
41+
for command in commands:
42+
child.sendline(command)
43+
# Wait for the specified prompt to appear again
44+
child.expect(child.PROMPT)
45+
f.write(child.before) # Write the command output to the file
46+
47+
# Logout from the device
48+
child.logout()
49+
50+
print("Backup process complete.")

pexpect/06_telnet_version_logging.py

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import sys
2+
import pexpect
3+
4+
# Start Telnet session to the device
5+
child = pexpect.spawn("telnet 192.168.100.20")
6+
7+
# Login process
8+
child.expect("Username: ") # Wait for the username prompt
9+
child.sendline("admin") # Send the username
10+
child.expect("Password: ") # Wait for the password prompt
11+
child.sendline("cisco") # Send the password
12+
13+
# Expect the device prompt after login
14+
child.expect("CoreSW#")
15+
16+
# Open log file to write the output
17+
with open("debug", "wb") as log_file:
18+
# Function to log output to both console and file
19+
def log_output(data):
20+
log_file.write(data) # Write output to log file
21+
sys.stdout.buffer.write(data) # Write output to console
22+
23+
# Command to execute on the device
24+
command = "show version | i V"
25+
child.sendline(command) # Send the command to the device
26+
27+
# Expect the prompt after the command execution
28+
child.expect("CoreSW#")
29+
30+
# Get command output
31+
output = child.before # Store the output received before the prompt
32+
log_output(output) # Log output to file and console
33+
34+
# Exit the Telnet session
35+
child.sendline("exit") # Send exit command to close the session

pexpect/exe1.py

-34
This file was deleted.

pexpect/exe2.py

-19
This file was deleted.

pexpect/exe3.py

-30
This file was deleted.

pexpect/exe4.py

-27
This file was deleted.

pexpect/exe5.py

-32
This file was deleted.

pexpect/exe6.py

-18
This file was deleted.

0 commit comments

Comments
 (0)