Good Morning,
I am trying to gain some python knowledge and convert scripts Ive written in expect and bash.
I do not have permission to load modules so Netmiko/paramiko and Pexpect/pxxsh is not available to me.
I will need to find solutions using default modules where possible.
I often need to connect to network devices. The following works but Im not all that sure what is happening.
I found this script online.
My question is .. once I log in .. how do I execute commands on the network device.
Im also reviewing the subprocess module. I dont quite understand whats going on with the ClientSocket assignment. and I also dont understand whats going on with following portion of the ssh execution.
In bash, I can use set -x to see the code execute. Is there a way I can do this in python ?
I am on a Centos 6 V .. old and crusty Python 2.6.4
Thanks for the help in advance.
I am trying to gain some python knowledge and convert scripts Ive written in expect and bash.
I do not have permission to load modules so Netmiko/paramiko and Pexpect/pxxsh is not available to me.
I will need to find solutions using default modules where possible.
I often need to connect to network devices. The following works but Im not all that sure what is happening.
I found this script online.
My question is .. once I log in .. how do I execute commands on the network device.
Im also reviewing the subprocess module. I dont quite understand whats going on with the ClientSocket assignment. and I also dont understand whats going on with following portion of the ssh execution.
1 |
{ 0 }". format (port).split() |
I am on a Centos 6 V .. old and crusty Python 2.6.4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#!/usr/bin/python import socket import subprocess ClientSocket = socket.socket() try : ClientSocket.connect(( "10.10.10.10" , 22 )) port = 22 except socket.error: ClientSocket.connect(( "10.10.10.10" , 23 )) port = 23 finally : command = "sshpass -pMYPASSWORD ssh -t -t MYLOGIN@10.10.10.10 -p {0}" . format (port).split() subprocess.call(command) subprocess.call( "dir" ) ClientSocket.close() |