diff --git a/clear_ida_cache.sh b/clear_ida_cache.sh
index 6c3e2ce5ca18f09524a5348238005d5a49d68dc8..ad47c89081d134ffaea76a183de2d2b87fc63cf0 100755
--- a/clear_ida_cache.sh
+++ b/clear_ida_cache.sh
@@ -2,10 +2,10 @@
 
 if [ ! -z "$IDA_PRO_SERVER_HOST" ]; then
 	echo "Clear IDA cache on $IDA_PRO_SERVER_HOST"
-	ssh -o ConnectTimeout=10 -o BatchMode=yes $IDA_PRO_SERVER_HOST rm -fr /tmp/remote-analyze/*
+	ssh -o ConnectTimeout=10 -o BatchMode=yes -o StrictHostKeyChecking=no $IDA_PRO_SERVER_HOST rm -fr /tmp/remote-analyze/*
 fi
 
 if [ ! -z "$IDA_PRO_SERVER_HOST2" ]; then
 	echo "Clear IDA cache on $IDA_PRO_SERVER_HOST2"
-	ssh -o ConnectTimeout=10 -o BatchMode=yes $IDA_PRO_SERVER_HOST2 rm -fr /tmp/remote-analyze/*
+	ssh -o ConnectTimeout=10 -o BatchMode=yes -o StrictHostKeyChecking=no $IDA_PRO_SERVER_HOST2 rm -fr /tmp/remote-analyze/*
 fi