# Список ip адресов, котрые не проверять (коллективные подключения с паролем)
list_ip_ignore = ['172.21.17.1',]
check_list = [x for x in ip_all if x not in detect_ip + list_ip_ignore]
threads = []
for i in split_list(check_list, 8):
threads.append(Thread(target=check_term, args=(i[:10],)))
for i in threads:
i.start()
for i in threads:
i.join()
print(soft_term, sep='\n')