- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
12-04-2016 01:27 PM
Hi There,
I am very new to Python scripting and have started to learn through my lab PaloAlto Firewall.
I wrote a basic script to just return me the output of an operational command. This script works on my lab SRX but hangs on the PaloAlto.
The code snippet : (indentation is correct)
root# vi PAoutTest.py
#!/usr/bin/python
import paramiko
import time
import inspect
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
timeout = 30
endtime = time.time() + timeout
iin = paramiko.sys.stdin
out = paramiko.sys.stdout
err = paramiko.sys.stderr
ssh.connect("x.x.x.x",username="xxxxx",password="xxxx")
iin, out, err = ssh.exec_command("show clock")
print out
#print out.read()
while not out.channel.eof_received:
time.sleep(1)
if time.time() > endtime:
out.channel.close()
break
print out.read()
I have included a while loop because without it the script would just hang forever and I have to manually kill the process.
So after the while loop the script times out without providing any output.
Is this not possible with PaloAlto or only way to automate is via API?
Please help.
12-06-2016 06:36 AM
I use this instead of using exec, I believe exec is only able to run one command.
channel = ssh.invoke_shell()
output = channel.recv(10000)
print output
print "connected to device"
channel.send('show interface all\n')
output3 = channel.recv(1000000)
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!