From df3a55d6a0352df4661cc04251d8fbd17e280499 Mon Sep 17 00:00:00 2001 From: Tobias Waldekranz Date: Thu, 16 Jan 2025 13:05:17 +0100 Subject: [PATCH] ixll: Disable key checking for admin:admin sessions This is a shorthand for the common case when we're attaching to a random Infix device during testing, so don't bother with key checking. --- utils/ixll | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/ixll b/utils/ixll index f4121709..f7cdffa7 100755 --- a/utils/ixll +++ b/utils/ixll @@ -57,6 +57,8 @@ while getopts "A" opt; do A) LLSSH_USER=admin LLSSH_PASS=admin + LLSSH_OPTS="$LLSSH_OPTS -oStrictHostKeyChecking=no" + LLSSH_OPTS="$LLSSH_OPTS -oUserKnownHostsFile=/dev/null" ;; esac done