From 46d1180ca079f2b96600d8c2539ce59e8745726d Mon Sep 17 00:00:00 2001 From: pancho horrillo Date: Mon, 19 Feb 2024 07:17:16 +0100 Subject: [PATCH] fix: adjust sample ssh-keyscan call . Drop the , since `ssh-keyscan` doesn't accept it. . Illustrate -t keytype, consistent with the output provided. . Clarify that the target can be specified either with a hostname or with an ip address. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b66df95..2e2053c 100644 --- a/README.md +++ b/README.md @@ -273,7 +273,7 @@ e.g. inside your `flake.nix` file: * your local computer usually in `~/.ssh`, e.g. `~/.ssh/id_ed25519.pub`. * from a running target machine with `ssh-keyscan`: ```ShellSession - $ ssh-keyscan @ + $ ssh-keyscan -t ed25519 ... ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKzxQgondgEYcLpcPdJLrTdNgZ2gznOHCAxMdaceTUT1 ... ```