summaryrefslogtreecommitdiff
path: root/README.openssh2
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-04-12 18:45:05 +1000
committerDamien Miller <djm@mindrot.org>2000-04-12 18:45:05 +1000
commitefb4afe0265333ce554f699c2a19ae249dd8d1b5 (patch)
tree8fe5e0bb9791e7fa3d1788084ae669f7a9dcd2e0 /README.openssh2
parent11e37f638d3cc064371521001eaeb2d75bfe4a8d (diff)
- More large OpenBSD CVS updates:
- [auth.c auth.h servconf.c servconf.h serverloop.c session.c] [session.h ssh.h sshd.c README.openssh2] ssh2 server side, see README.openssh2; enable with 'sshd -2' - [channels.c] no adjust after close - [sshd.c compat.c ] interop w/ latest ssh.com windows client.
Diffstat (limited to 'README.openssh2')
-rw-r--r--README.openssh236
1 files changed, 36 insertions, 0 deletions
diff --git a/README.openssh2 b/README.openssh2
new file mode 100644
index 000000000..59f8cf9f6
--- /dev/null
+++ b/README.openssh2
@@ -0,0 +1,36 @@
1$Id: README.openssh2,v 1.2 2000/04/06 21:28:22 markus Exp $
2
3works:
4 secsh-transport: works w/o rekey
5 proposal exchange, i.e. different enc/mac/comp per direction
6 encryption: blowfish-cbc, 3des-cbc, arcfour, cast128-cbc
7 mac: hmac-md5, hmac-sha1, (hmac-ripemd160)
8 compression: zlib, none
9 secsh-userauth: passwd only
10 secsh-connection: pty+shell or command, flow control works (window adjust)
11 tcp-forwarding: -L works
12 dss: verification works,
13 key database in ~/.ssh/known_hosts with bits == 0 hack
14 dss: signature works, keygen w/ openssl:
15 $ umask 077
16 $ openssl dsaparam 1024 -out dsa1024.pem
17 $ openssl gendsa -out /etc/ssh_dsa_key dsa1024.pem -rand /dev/arandom
18 start sshd with '-2' flag
19 client interops w/ sshd2, lshd
20 server interops w/ ssh2, lsh, ssh.com's Windows client, SecureCRT
21 server supports multiple concurrent sessions (e.g. with SSH.com Windows client)
22todo:
23 re-keying
24 secsh-connection features:
25 tcp-forwarding, agent-fwd, x11-fwd
26 auth other than passwd:
27 pubkey, keyboard-interactive
28 config
29 server-auth w/ old host-keys
30 cleanup
31 advanced key storage?
32 keynote
33 sftp
34
35-markus
36$Date: 2000/04/06 21:28:22 $