Displaying 14 results from an estimated 14 matches for "ocompressionlevel".
2001 Oct 11
0
[patch] option to prevent connection timeout
...p 20 02:57:56 2001
+++ openssh-2.9.9p2/readconf.c Thu Oct 11 22:03:09 2001
@@ -109,7 +109,7 @@
oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
- oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts,
+ oCompressionLevel, oKeepAlives, oIdle, oNumberOfPasswordPrompts,
oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHo...
2001 Aug 24
2
[PATCH] SO_KEEPALIVE for port forwards
...Apr 17 11:11:37 2001
+++ openssh-2.9p2/readconf.c Thu Aug 23 15:42:37 2001
@@ -106,7 +106,7 @@
oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
- oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts,
+ oCompressionLevel, oKeepAlives, oKeepAlivesForward, oNumberOfPasswordPrompts,
oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
oKbdInteractiveAuthentication, oKbdInteractiv...
2000 Mar 03
7
[PATCH] Add a Maximum Idle Time (1.2.2)
...lude 0
IdentityFile ~/.ssh/identity
Port 22
EscapeChar ~
@@ -101,8 +102,8 @@
oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
- oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts, oTISAuthentication,
- oUsePrivilegedPort, oLogLevel
+ oCompressionLevel, oKeepAlives, oTransmitInterlude, oNumberOfPasswordPrompts,
+ oTISAuthentication, oUsePrivilegedPort, oLogLevel
} OpCodes;
/* Textual representations of the tokens. */
@@ -148,6 +149,...
2001 Mar 07
1
patch to select pkalg
...ext available host key algorithm?
--
Richard Silverman
slade at shore.net
================================================================================
*** ../../openssh-2.5.1p2/readconf.c Wed Feb 14 22:02:00 2001
--- readconf.c Wed Mar 7 00:59:44 2001
***************
*** 109,115 ****
oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts,
oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
! oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias
} OpCodes;
/* Textual representations of the t...
2001 Mar 11
0
patch to allow client to select rsa/dss
...include "kex.h"
#include "mac.h"
+ #include "key.h"
/* Format of the configuration file:
***************
*** 107,113 ****
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts,
! oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias
} OpCodes;
--- 108,114 ----
oGlobalKnownHostsFil...
2000 Jun 06
0
connection timeout
...@ -102,9 +102,10 @@
oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
- oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
- oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts, oTISAuthentication,
- oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oIdentityFile2,
+ oConnectionTimeout, oBatchMode, oCheckHostIP, oStrictHostKeyChecking,
+ oCompression, oCompressionLevel, oKeepAlives,
+ oNumberOfPasswordPrompts, oTISAuthentication, o...
2000 Nov 14
1
[PATCH] Added option 'RetryDelay'
...oLocalForward,
oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
- oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
+ oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts, oRetryDelay,
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts, oTISAuthentication,
oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oIdentityFile2,
@@ -152,6 +152,7 @@
{ "globalknownhostsfile2", oGlobalKnownHostsFile2 },
{ "userknownhostsfile2", oUserKnownHostsFile2 },
{ "connectionatt...
2003 Nov 04
0
ServerLiesWarning
...,6 +166,7 @@
{ "batchmode", oBatchMode },
{ "checkhostip", oCheckHostIP },
{ "stricthostkeychecking", oStrictHostKeyChecking },
+ { "serverlieswarning", oServerLiesWarning },
{ "compression", oCompression },
{ "compressionlevel", oCompressionLevel },
{ "keepalive", oKeepAlives },
@@ -402,6 +403,10 @@
intptr = &options->verify_host_key_dns;
goto parse_flag;
+ case oServerLiesWarning:
+ intptr = &options->server_lies_warning;
+ goto parse_flag;
+
case oStrictHostKeyChecking:
intptr = &options->st...
2000 Aug 25
1
[patch] configurable ssh_prng_cmds
...00
@@ -20,6 +20,7 @@
#include "cipher.h"
#include "readconf.h"
#include "match.h"
+#include "entropy.h"
#include "xmalloc.h"
#include "compat.h"
@@ -105,7 +106,8 @@
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts, oTISAuthentication,
oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oIdentityFile2,
- oGlobalKnownHostsFile2, oUserKnownHostsFile2, oDSAAuthentication
+ oGlobalKnownHostsFile2, oUserKnownHostsFile2, oDSAAuthentication,
+ oPrngCommandFile
} OpCod...
2001 Sep 26
1
[PATCH] random SSH_MSG_IGNORE packets
...rredAuthentications, oHostbasedAuthentication,
- oHostKeyAlgorithms
+ oHostKeyAlgorithms, oBogusTrafficIntervalMax, oBogusTrafficIntervalMin
} OpCodes;
/* Textual representations of the tokens. */
@@ -172,6 +172,8 @@
{ "compression", oCompression },
{ "compressionlevel", oCompressionLevel },
{ "keepalive", oKeepAlives },
+ { "BogusTrafficIntervalMax", oBogusTrafficIntervalMax },
+ { "BogusTrafficIntervalMin", oBogusTrafficIntervalMin },
{ "numberofpasswordprompts", oNumberOfPasswordPrompts },
{ "loglevel", oLogLevel },
{ &quo...
2002 Jul 17
2
[Patch] SSH through HTTP proxy using CONNECT
...ityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
+ oProxyServer, oProxyPort,
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts,
@@ -158,6 +159,8 @@
{ "hostname", oHostName },
{ "hostkeyalias", oHostKeyAlias },
{ "proxycommand", oProxyCommand },
+ { "proxyserver", oProxyServer },
+ { "proxyport", oProxyPort },
{ "port"...
2004 Aug 26
2
OpenSSH PATCH: OpenCommand and CloseCommand
...r, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
+ oUser, oHost, oEscapeChar, oRhostsRSAAuthentication,
+ oOpenCommand, oCloseCommand, oProxyCommand,
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
oCompressionLevel, oTCPKeepAlive, oNumberOfPasswordPrompts,
@@ -149,6 +150,8 @@
{ "identityfile2", oIdentityFile }, /* alias */
{ "hostname", oHostName },
{ "hostkeyalias", oHostKeyAlias },
+ { "opencommand", oOpenCommand },
+ { "closecommand", oCloseCommand...
2006 Feb 04
2
[PATCH] allow user to update changed key in known_hosts
...5,7 @@
{ "batchmode", oBatchMode },
{ "checkhostip", oCheckHostIP },
{ "stricthostkeychecking", oStrictHostKeyChecking },
+ { "offendingkeyoverride", oOffendingKeyOverride },
{ "compression", oCompression },
{ "compressionlevel", oCompressionLevel },
{ "tcpkeepalive", oTCPKeepAlive },
@@ -434,6 +435,7 @@
case oStrictHostKeyChecking:
intptr = &options->strict_host_key_checking;
+
parse_yesnoask:
arg = strdelim(&s);
if (!arg || *arg == '\0')
@@ -452,6 +454,10 @@
*intptr = value;
break;
+...
2006 Nov 15
11
OpenSSH Certkey (PKI)
...=========================
RCS file: /cvs/src/usr.bin/ssh/readconf.c,v
retrieving revision 1.159
diff -u -r1.159 readconf.c
--- readconf.c 3 Aug 2006 03:34:42 -0000 1.159
+++ readconf.c 15 Nov 2006 14:14:36 -0000
@@ -117,7 +117,8 @@
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
oCompressionLevel, oTCPKeepAlive, oNumberOfPasswordPrompts,
oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
- oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
+ oGlobalKnownHostsFile2, oUserKnownHostsFile2, oCertkeyAuthentication,
+ oCAKeyFile, oPubkeyAuthentication,
oKbdInteractiv...