SSH - RSA: Difference between revisions

From Wiki.IT-Arts.net
(Created page with "Category:Post-It #!/bin/bash ssh -v -oKexAlgorithms=+diffie-hellman-group1-sha1 -oHostKeyAlgorithms=+ssh-rsa -c aes256-cbc,aes256-ctr $1 exit 0 <nowiki>")
 
No edit summary
 
Line 1: Line 1:
[[Category:Post-It]]
[[Category:Post-It]]
<nowiki>
#!/bin/bash
#!/bin/bash


ssh -v -oKexAlgorithms=+diffie-hellman-group1-sha1 -oHostKeyAlgorithms=+ssh-rsa -c aes256-cbc,aes256-ctr $1
ssh -v -oKexAlgorithms=+diffie-hellman-group1-sha1 -oHostKeyAlgorithms=+ssh-rsa -c aes256-cbc,aes256-ctr $1


exit 0
exit 0</nowiki>
<nowiki>

Latest revision as of 14:50, 24 May 2024


#!/bin/bash

ssh -v -oKexAlgorithms=+diffie-hellman-group1-sha1 -oHostKeyAlgorithms=+ssh-rsa -c aes256-cbc,aes256-ctr $1

exit 0