Answers for "How to Ignore/disable SSH Host Key Verification"

0

How to Ignore/disable SSH Host Key Verification

# SSH
ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no  [email protected]

# SCP
scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no somefile.txt [email protected]:/var/tmp/
Posted by: Guest on March-30-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language