Ignorera host key med SSH

From Linuxwiki
Revision as of 10:57, 20 April 2023 by Linuxwiki>Wikiadmin (Skapade sidan med '== Logga in med ssh och ignorera host keys == Källa: https://linux.livejournal.com/1884229.html Exempel: '''[jackal@brads-mac]# ssh -o LogLevel=quiet -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no www.somehost.com date Thu Jun 6 15:32:55 UTC 2013''' Gör det permanent: Skapa eller lägg till först i filen '''~/.ssh/config''': '''Host *.somehost.com''' '''StrictHostKeyChecking no''' '''UserKnownHostsFile=/dev/null''' '''LogLevel=quiet''' ...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Logga in med ssh och ignorera host keys

Källa: https://linux.livejournal.com/1884229.html

Exempel:

[jackal@brads-mac]# ssh -o LogLevel=quiet -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no www.somehost.com date Thu Jun 6 15:32:55 UTC 2013


Gör det permanent:

Skapa eller lägg till först i filen ~/.ssh/config:

Host *.somehost.com
  StrictHostKeyChecking no
  UserKnownHostsFile=/dev/null
  LogLevel=quiet


Kategori:SSH