diff options
author | elijah <elijah@riseup.net> | 2013-06-11 12:26:24 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-06-11 12:26:24 -0700 |
commit | ffcaa2169d768747c32093ffa00becd7951df640 (patch) | |
tree | c2d134faa556826d2d9deddeb88cf75c70c84e22 | |
parent | f0c9d0a1fe8b19edf53f775dffb66057c0c9be12 (diff) | |
download | leap_cli-ffcaa2169d768747c32093ffa00becd7951df640.tar.gz leap_cli-ffcaa2169d768747c32093ffa00becd7951df640.tar.bz2 |
grab ecdsa ssh host keys, not rsa.
-rw-r--r-- | lib/leap_cli/commands/node.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/leap_cli/commands/node.rb b/lib/leap_cli/commands/node.rb index 1f94fe6..32e9d3f 100644 --- a/lib/leap_cli/commands/node.rb +++ b/lib/leap_cli/commands/node.rb @@ -187,7 +187,7 @@ module LeapCli; module Commands def get_public_key_for_ip(address, port=22) assert_bin!('ssh-keyscan') - output = assert_run! "ssh-keyscan -p #{port} -t rsa #{address}", "Could not get the public host key from #{address}:#{port}. Maybe sshd is not running?" + output = assert_run! "ssh-keyscan -p #{port} -t ecdsa #{address}", "Could not get the public host key from #{address}:#{port}. Maybe sshd is not running?" line = output.split("\n").grep(/^[^#]/).first assert! line, "Got zero host keys back!" ip, key_type, public_key = line.split(' ') |