From aa6a2e806dbac9651bfaf8c749f2d47e9ef0d26d Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Sun, 5 Apr 2020 23:17:35 -0700 Subject: [PATCH] Add ssh alias for non-checking ssh. --- dotfiles/aliases | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dotfiles/aliases b/dotfiles/aliases index 39b6cd7..b46e473 100755 --- a/dotfiles/aliases +++ b/dotfiles/aliases @@ -41,3 +41,6 @@ alias gettemp='printf "%02.2f\n" "$(cat /sys/class/thermal/thermal_zone0/temp)e- # get git working directory alias gitroot="git rev-parse --show-toplevel" + +# SSH without host key checking +alias sshanon="ssh -oUserKnownHostsFile=/dev/null -oStrictHostKeyChecking=no"