diff options
author | Damien Miller <djm@mindrot.org> | 2000-09-16 16:25:24 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-09-16 16:25:24 +1100 |
commit | f3b1c54844f9364b25b343d7399dd1ee5740d28d (patch) | |
tree | 96f38a2ed38fadd4ccfb1187d6c103ef2e8e923e /README.openssh2 | |
parent | b70b61f5fecf37d95e031414849745030fa8a420 (diff) |
bye bye
Diffstat (limited to 'README.openssh2')
-rw-r--r-- | README.openssh2 | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/README.openssh2 b/README.openssh2 deleted file mode 100644 index df737c695..000000000 --- a/README.openssh2 +++ /dev/null | |||
@@ -1,41 +0,0 @@ | |||
1 | $Id: README.openssh2,v 1.9 2000/08/31 21:56:03 markus Exp $ | ||
2 | |||
3 | howto: | ||
4 | 1) generate server key: | ||
5 | $ ssh-keygen -d -f /etc/ssh_host_dsa_key -N '' | ||
6 | 2) enable ssh2: | ||
7 | server: add 'Protocol 2,1' to /etc/sshd_config | ||
8 | client: ssh -o 'Protocol 2,1', or add to .ssh/config | ||
9 | 3) DSA authentication similar to RSA (add keys to ~/.ssh/authorized_keys2) | ||
10 | interop w/ ssh.com dsa-keys: | ||
11 | ssh-keygen -f /key/from/ssh.com -X >> ~/.ssh/authorized_keys2 | ||
12 | and vice versa | ||
13 | ssh-keygen -f /privatekey/from/openssh -x > ~/.ssh2/mykey.pub | ||
14 | echo Key mykey.pub >> ~/.ssh2/authorization | ||
15 | |||
16 | works: | ||
17 | secsh-transport: works w/o rekey | ||
18 | secsh-userauth: passwd and pubkey with DSA | ||
19 | secsh-connection: pty+shell or command, flow control works (window adjust) | ||
20 | tcp-forwarding: -L works, -R incomplete | ||
21 | x11-fwd | ||
22 | dss/dsa: host key database in ~/.ssh/known_hosts2 | ||
23 | ssh-agent: supports SSH1-RSA and ssh-dss keys | ||
24 | client interops w/ sshd2, lshd | ||
25 | server interops w/ ssh2, lsh, ssh.com's Windows client, SecureCRT, F-Secure SSH Client 4.0, SecureFX (secure ftp) | ||
26 | server supports multiple concurrent sessions (e.g. with SSH.com Windows client) | ||
27 | server supports SFTP (interops with ssh.com's windows, sftp2, scp2) | ||
28 | todo: | ||
29 | RE-KEYING | ||
30 | secsh-connection features: | ||
31 | complete tcp-forwarding, agent-fwd | ||
32 | auth other than passwd, and DSA-pubkey: | ||
33 | keyboard-interactive, (PGP-pubkey?), kerberos | ||
34 | config | ||
35 | server-auth w/ old host-keys | ||
36 | cleanup | ||
37 | advanced key storage? | ||
38 | keynote | ||
39 | |||
40 | -markus | ||
41 | $Date: 2000/08/31 21:56:03 $ | ||