python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Python Paramiko with Palo Alto firewall - not getting any info
Im using python3 with Paramiko 2.10.3 on a palo alto version 9.1.10
I created this python script:
def connect_SSH():
ssh_client = paramiko.SSHClient()
ip='10.x.x.x'
port=22
username='s...
gsr
Votes: 0
Answers: 1
Paramiko authentication to server with no password fails
I am connecting to a host which runs dropbear and has a blank root password. I can connect to it via ssh (I have replaced the actual IPv6 address and host name here):
$ ssh root@[2001:db8:1234::567]
r...
fleetingbytes
Votes: 0
Answers: 2
Cannot Print output for Fortigate Command with Python
I am having an issue with getting my python script to return or print any output for the following command run on my fortigate firewall
'diagnose sniffer packet any "host X.X.X.X and port 53"...
Dunner1991
Votes: 0
Answers: 3
Paramiko authentication with certificate and oprivate key
I have a linux device which supports authentication with a certificate and a private key.
I have tried to connect with:
k = paramiko.RSAKey.from_private_key_fil("path to privte key")
client....
Gradinariu Alexandru
Votes: 0
Answers: 1