summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/readconf.c
AgeCommit message (Expand)Author
2017-05-30Add RemoteCommand option to specify a command in the ssh configAlexander Bluhm
2017-05-20there's no reason to artificially limit the key path here, just checkDamien Miller
2017-04-30remove SSHv1 configuration options and man pages bitsDamien Miller
2017-04-30remove SSHv1 ciphers; ok markus@Damien Miller
2017-04-30remove options.protocol and client Protocol configuration knobDamien Miller
2017-04-30unifdef WITH_SSH1Damien Miller
2017-04-28Add SyslogFacility option to ssh(1) matching the equivalent option inDarren Tucker
2017-03-10better match sshd config parser behaviour: fatal() if line is overlong,Damien Miller
2017-03-10Plug mem leak on GLOB_NOMATCH case. From jjelen at redhat.com viaDarren Tucker
2017-02-03support =- for removing methods from algorithms lists, e.g.Damien Miller
2017-02-03allow form-feed characters at EOL; bz#2431 ok dtucker@Damien Miller
2017-01-30small cleanup post SSHv1 removal:Damien Miller
2017-01-30some explicit NULL tests when dumping configured forwardings;Damien Miller
2017-01-06fix previousDamien Miller
2017-01-06show a useful error message when included config files can't beDamien Miller
2016-10-25Fix logic in add_local_forward() that inverted a test when code wasJonathan Gray
2016-10-23Factor out "can bind to low ports" check into its own function. This will makeDarren Tucker
2016-08-25remove superfluous NOTREACHED commentDamien Miller
2016-07-22reverse the order in which -J/JumpHost proxies are visited to beDamien Miller
2016-07-20Do not clobber the global jump_host variables when parsing an inactiveChristian Weisgerber
2016-07-15Add a ProxyJump ssh_config(5) option and corresponding -J ssh(1)Damien Miller
2016-06-03Allow ExitOnForwardFailure and ClearAllForwardings to be overridden whenDarren Tucker
2016-06-03Move the host and port used by ssh -W into the Options struct.Darren Tucker
2016-05-04allow setting IdentityAgent to SSH_AUTH_SOCK; ok djm@Markus Friedl
2016-05-04IdentityAgent for specifying specific agent sockets; ok djm@Markus Friedl
2016-04-15Include directive for ssh_config(5); feedback & ok markus@Damien Miller
2016-04-06don't record duplicate LocalForward and RemoteForward entries;Damien Miller
2016-02-08don't attempt to percent_expand() already-canonicalised addresses,Damien Miller
2016-01-29Allow RekeyLimits in excess of 4G up to 2**63 bits (limited by the returnDarren Tucker
2016-01-14remove roaming support; ok djm@Markus Friedl
2016-01-14Disable experimental client-side roaming support. Server side wasTheo de Raadt
2015-11-15Add an AddKeysToAgent client option which can be set to 'yes', 'no',Joshua Stein
2015-10-27fix execv arguments in a way less likely to cause grief for -portable;Damien Miller
2015-10-27avoid de-const warning & shrink; ok dtucker@Damien Miller
2015-10-25Do not prepend "exec" to the shell command run by "Match exec" in a configDarren Tucker
2015-10-07include PubkeyAcceptedKeyTypes in ssh -G config dumpDamien Miller
2015-09-24add ssh_config CertificateFile option to explicitly listDamien Miller
2015-08-21Fix printing (ssh -G ...) of HostKeyAlgorithms=+...Damien Miller
2015-07-30Allow ssh_config and sshd_config kex parameters options be prefixedDamien Miller
2015-07-10Turn off DSA by default; add HostKeyAlgorithms to the server andMarkus Friedl
2015-06-26Fix \-escaping bug that caused forward path parsing to skip twoDamien Miller
2015-05-22Reorder EscapeChar option parsing to avoid a single-byte out-Damien Miller
2015-05-04Remove pattern length argument from match_pattern_list(),Damien Miller
2015-04-24rename xrealloc() to xreallocarray() since it follows that form.Theo de Raadt
2015-03-30fix uninitialised memory read when parsing a config file consistingDamien Miller
2015-02-16Revise hostkeys@openssh.com hostkey learning extension.Damien Miller
2015-02-02turn UpdateHostkeys off by default until I figure out mlarkin@'sDamien Miller
2015-01-30Add a ssh_config HostbasedKeyType option to control whichDamien Miller
2015-01-26Host key rotation support.Damien Miller
2015-01-16Replace <sys/param.h> with <limits.h> and other less dirty headers whereTheo de Raadt