diff options
author | Jameson Rollins <jrollins@finestructure.net> | 2010-03-23 02:12:33 -0400 |
---|---|---|
committer | Jameson Rollins <jrollins@finestructure.net> | 2010-03-23 02:12:33 -0400 |
commit | dbeab30f940705e3813746ccf7480619d8261d37 (patch) | |
tree | 099a0b3224b666bfc1289462f1a6d01a24763102 /website/bugs/hostkeyalias-confuses-monkeysphere.mdwn | |
parent | 0f6ef9923f4d70e2a79edd898f6ac46b617480c9 (diff) | |
parent | 2f9fe93b98ed32b662212899db6ba2174c1138d3 (diff) |
Merge remote branch 'mjgoins/master'
Conflicts:
doc/george/changelog
Diffstat (limited to 'website/bugs/hostkeyalias-confuses-monkeysphere.mdwn')
-rw-r--r-- | website/bugs/hostkeyalias-confuses-monkeysphere.mdwn | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/website/bugs/hostkeyalias-confuses-monkeysphere.mdwn b/website/bugs/hostkeyalias-confuses-monkeysphere.mdwn deleted file mode 100644 index 4f7df66..0000000 --- a/website/bugs/hostkeyalias-confuses-monkeysphere.mdwn +++ /dev/null @@ -1,28 +0,0 @@ -Consider the following snippet in `~/.ssh/config`: - - Host foo - HostKeyAlias bar - -for a host which is *not* participating in the monkeysphere. - -For such a host, when using `monkeysphere-ssh-proxy-command`, the -public keyservers will be queried on each attempted ssh connection -(even after a successful connection). - -This appears to be because: - -* `ssh` itself will write a line to `~/.ssh/known_hosts`, but it will - be labeled with `bar` because of the `HostKeyAlias`. - -* `monkeysphere` won't be able to find any mention of it in the - keyring (it's not in the monkeysphere) - -* `monkeysphere-ssh-proxycommand` won't be able to find it in the - `known_hosts` file because it looks for `foo`, which is never - matched. - -excessive keyserver querying is bad behavior, because it causes delays -for the users, and puts excessive load on the public keyserver -infrastructure. - -How can we resolve this? |