blob: 36d3de6efd9f3da9d19d573cffeef97da05d59fd [file] [log] [blame]
Damien Millerbd483e72000-04-30 10:00:53 +10001$Id: README.openssh2,v 1.4 2000/04/29 13:57:09 damien Exp $
Damien Miller78928792000-04-12 20:17:38 +10002
3howto:
4 1) generate server key:
Damien Millereba71ba2000-04-29 23:57:08 +10005 $ ssh-keygen -d -f /etc/ssh_host_dsa_key -N ''
Damien Miller78928792000-04-12 20:17:38 +10006 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
Damien Millerbd483e72000-04-30 10:00:53 +10009 3) DSA authentication similar to RSA (add keys to ~/.ssh/authorized_keys2)
10 interop w/ ssh.com dsa-keys:
Damien Millereba71ba2000-04-29 23:57:08 +100011 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
Damien Millerefb4afe2000-04-12 18:45:05 +100015
16works:
17 secsh-transport: works w/o rekey
18 proposal exchange, i.e. different enc/mac/comp per direction
19 encryption: blowfish-cbc, 3des-cbc, arcfour, cast128-cbc
20 mac: hmac-md5, hmac-sha1, (hmac-ripemd160)
21 compression: zlib, none
Damien Millerbd483e72000-04-30 10:00:53 +100022 secsh-userauth: passwd and pubkey with DSA
Damien Millerefb4afe2000-04-12 18:45:05 +100023 secsh-connection: pty+shell or command, flow control works (window adjust)
Damien Millerbd483e72000-04-30 10:00:53 +100024 tcp-forwarding: -L works, -R incomplete
25 x11-fwd
26 dss/dsa: host key database in ~/.ssh/known_hosts2
Damien Millerefb4afe2000-04-12 18:45:05 +100027 client interops w/ sshd2, lshd
Damien Millereba71ba2000-04-29 23:57:08 +100028 server interops w/ ssh2, lsh, ssh.com's Windows client, SecureCRT, F-Secure SSH Client 4.0
Damien Millerefb4afe2000-04-12 18:45:05 +100029 server supports multiple concurrent sessions (e.g. with SSH.com Windows client)
30todo:
31 re-keying
32 secsh-connection features:
Damien Millerbd483e72000-04-30 10:00:53 +100033 tcp-forwarding, agent-fwd
34 auth other than passwd, and DSA-pubkey:
35 keyboard-interactive, (PGP-pubkey?)
Damien Millerefb4afe2000-04-12 18:45:05 +100036 config
37 server-auth w/ old host-keys
38 cleanup
39 advanced key storage?
40 keynote
41 sftp
42
43-markus
Damien Millerbd483e72000-04-30 10:00:53 +100044$Date: 2000/04/29 13:57:09 $