On Wed, Jan 14, 2004 at 08:04:00PM +1300, Matthew Gregan wrote:
> > I'm not talking about the tcp keepalive option. I greped through the
> > whole source of an approx May 03 vanilla release, and it did not find
> > those new(!) keepalive options anywhere (those options which make ssh
> > or sshd shove some null bytes over the encrypted channel).
The OpenSSH release included with OpenBSD 2.9 even includes these
options:
$ sshd -v
sshd version OpenSSH_2.9
$ ident /usr/sbin/sshd | grep servconf.c
$OpenBSD: servconf.c,v 1.78 2001/04/15 21:28:35 stevesk Exp $
$ grep 'RCSID' servconf.c
RCSID("$OpenBSD: servconf.c,v 1.78 2001/04/15 21:28:35 stevesk Exp $");
$ grep -B1 -C1 -n 'ClientAliveInterval' servconf.c
233- sBanner, sReverseMappingCheck, sHostbasedAuthentication,
234: sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
235- sClientAliveCountMax
--
298- { "reversemappingcheck", sReverseMappingCheck },
299: { "clientaliveinterval", sClientAliveInterval },
300- { "clientalivecountmax", sClientAliveCountMax },
--
790- goto parse_filename;
791: case sClientAliveInterval:
792- intptr = &options->client_alive_interval;
Cheers,
-mjg
--
Matthew Gregan |/
/| [EMAIL PROTECTED]