Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-04-06 | in addition to: | Kevin Steves | |
ListenAddress host|ipv4_addr|ipv6_addr permit: ListenAddress [host|ipv4_addr|ipv6_addr]:port ListenAddress host|ipv4_addr:port sshd.8 updates coming. ok markus@ | |||
2001-04-02 | correct comment; ok markus@ | Kevin Steves | |
2001-03-25 | PrintLastLog option; from chip@valinux.com with some minor | Kevin Steves | |
changes by me. ok markus@ | |||
2001-03-05 | sync error message; ok markus@ | Kevin Steves | |
2001-03-04 | log functions should not be passed strings that end in newline as they | Todd C. Miller | |
get passed on to syslog() and when logging to stderr, do_log() appends its own newline. | |||
2001-03-04 | kill obsolete RandomSeed; ok markus@ deraadt@ | Kevin Steves | |
2001-02-22 | grammar; slade@shore.net | Theo de Raadt | |
2001-02-12 | PermitRootLogin={yes,without-password,forced-commands-only,no} | Markus Friedl | |
(before this change, root could login even if PermitRootLogin==no) | |||
2001-02-11 | 1) clean up the MAC support for SSH-2 | Markus Friedl | |
2) allow you to specify the MAC with 'ssh -m' 3) or the 'MACs' keyword in ssh(d)_config 4) add hmac-{md5,sha1}-96 ok stevesk@, provos@ | |||
2001-02-04 | unexpand and remove end-of-line whitespace; ok markus@ | Kevin Steves | |
2001-02-03 | make ReverseMappingCheck optional in sshd_config; ok djm@,dugsong@ | Markus Friedl | |
2001-01-22 | rename skey -> challenge response. | Markus Friedl | |
auto-enable kbd-interactive for ssh2 if challenge-reponse is enabled. | |||
2001-01-21 | split ssh.h and try to cleanup the #include mess. remove unnecessary #includes. | Markus Friedl | |
rename util.[ch] -> misc.[ch] | |||
2001-01-20 | Check for NULL return from strdelim; ok markus | Damien Miller | |
2001-01-19 | move ssh1 definitions to ssh1.h, pathnames to pathnames.h | Markus Friedl | |
2001-01-19 | only auth-chall.c needs #ifdef SKEY | Markus Friedl | |
2001-01-18 | log() is at pri=LOG_INFO, since LOG_NOTICE goes to /dev/console on many systems | Markus Friedl | |
2001-01-08 | implement option 'Banner /etc/issue.net' for ssh2, move version to | Markus Friedl | |
2.3.1 (needed for bugcompat detection, 2.3.0 would fail if Banner is enabled). | |||
2001-01-07 | rename SYSLOG_LEVEL_INFO->SYSLOG_LEVEL_NOTICE | Markus Friedl | |
syslog priority changes: fatal() LOG_ERR -> LOG_CRIT log() LOG_INFO -> LOG_NOTICE | |||
2000-12-19 | replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned' | Markus Friedl | |
with u_char. | |||
2000-11-12 | add support for RSA to SSH2. please test. | Markus Friedl | |
there are now 3 types of keys: RSA1 is used by ssh-1 only, RSA and DSA are used by SSH2. you can use 'ssh-keygen -t rsa -f ssh2_rsa_file' to generate RSA keys for SSH2 and use the RSA keys for hostkeys or for user keys. SSH2 RSA or DSA keys are added to .ssh/authorised_keys2 as before. IdentityFile2, HostDsaKey and DSAAuthentication are obsolete. you can use multiple IdentityFile and HostKey for all types of keys. the option DSAAuthentication is replaced by PubkeyAuthetication. | |||
2000-10-14 | AllowTcpForwarding; from naddy@ | Markus Friedl | |
2000-10-11 | add support for s/key (kbd-interactive) to ssh2, based on work by ↵ | Markus Friedl | |
mkiernan@avantgo.com and me | |||
2000-09-07 | cleanup copyright notices on all files. I have attempted to be accurate with | Theo de Raadt | |
the details. everything is now under Tatu's licence (which I copied from his readme), and/or the core-sdi bsd-ish thing for deattack, or various openbsd developers under a 2-term bsd licence. We're not changing any rules, just being accurate. | |||
2000-07-22 | random early drop; ok theo, niels | Markus Friedl | |
2000-07-14 | allow leading whitespace. ok niels | Markus Friedl | |
2000-07-13 | allow multiple whitespace but only one '=' between tokens, bug report from | Niels Provos | |
Ralf S. Engelschall <rse@engelschall.com> but different fix. okay deraadt@ | |||
2000-07-10 | strtok() --> strsep(). (niels@ ok) | Hakan Olsson | |
2000-06-26 | MaxStartups: limit number of unauthenticated connections, work by theo and me | Markus Friedl | |
2000-06-20 | OpenBSD tag | Markus Friedl | |
2000-06-18 | include = in WHITESPACE; markus ok | Theo de Raadt | |
2000-06-17 | add support for ssh v2 subsystems. ok markus@. | Jakob Schlyter | |
2000-05-31 | xauth_location support; pr 1234 | Markus Friedl | |
2000-05-22 | check strtok() != NULL; ok niels@ | Markus Friedl | |
2000-05-08 | complain about invalid ciphers in SSH1 (e.g. arcfour is SSH2 only) | Markus Friedl | |
2000-05-06 | add DSAAuthetication option to ssh/sshd, document SSH2 in sshd.8 | Markus Friedl | |
2000-05-03 | GatewayPorts for sshd, ok deraadt@ | Markus Friedl | |
2000-05-03 | s/DsaKey/HostDSAKey/, document option | Markus Friedl | |
2000-05-01 | PidFile, pr 1210 | Markus Friedl | |
2000-04-26 | ssh/sshd default to proto 1 and 2 | Markus Friedl | |
2000-04-14 | whitespace cleanup | Markus Friedl | |
2000-04-12 | add Cipher and Protocol options to ssh/sshd, e.g.: | Markus Friedl | |
ssh -o 'Protocol 1,2' if you prefer proto 1, ssh -o 'Ciphers arcfour,3des-cbc' | |||
2000-04-06 | ssh2 server side, see README.openssh2; enable with 'sshd -2' | Markus Friedl | |
2000-03-07 | typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de | Markus Friedl | |
2000-02-24 | sync with sshd_config | Markus Friedl | |
2000-01-04 | ipv6 support: mostly gethostbyname->getaddrinfo/getnameinfo, new features: | Markus Friedl | |
sshd allows multiple ListenAddress and Port options. note that libwrap is not IPv6-ready. (based on patches from <kick@kyoto.wide.ad.jp> and fujiwara@rcac.tdi.co.jp) | |||
1999-11-24 | strcasecmp instead of tolower | Markus Friedl | |
1999-11-24 | KNF, final part 3 | Markus Friedl | |
1999-11-24 | much more KNF | Theo de Raadt | |
1999-11-23 | KNF part 1 | Markus Friedl | |