2006-08-05 04:39:39 +02:00
|
|
|
/* $OpenBSD: ssh.h,v 1.78 2006/08/03 03:34:42 deraadt Exp $ */
|
2002-03-05 02:53:02 +01:00
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
/*
|
1999-11-24 14:26:21 +01:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
2000-04-16 03:18:38 +02:00
|
|
|
*
|
2000-09-16 04:29:08 +02:00
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
1999-11-24 14:26:21 +01:00
|
|
|
*/
|
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
/* Cipher used for encrypting authentication files. */
|
|
|
|
#define SSH_AUTHFILE_CIPHER SSH_CIPHER_3DES
|
|
|
|
|
|
|
|
/* Default port number. */
|
|
|
|
#define SSH_DEFAULT_PORT 22
|
|
|
|
|
|
|
|
/* Maximum number of TCP/IP ports forwarded per direction. */
|
|
|
|
#define SSH_MAX_FORWARDS_PER_DIRECTION 100
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Maximum number of RSA authentication identity files that can be specified
|
|
|
|
* in configuration files or on the command line.
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
#define SSH_MAX_IDENTITY_FILES 100
|
|
|
|
|
2004-12-06 12:47:41 +01:00
|
|
|
/*
|
|
|
|
* Maximum length of lines in authorized_keys file.
|
|
|
|
* Current value permits 16kbit RSA and RSA1 keys and 8kbit DSA keys, with
|
|
|
|
* some room for options and comments.
|
|
|
|
*/
|
|
|
|
#define SSH_MAX_PUBKEY_BYTES 8192
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
2002-06-06 22:56:07 +02:00
|
|
|
* Major protocol version. Different version indicates major incompatibility
|
1999-11-25 01:54:57 +01:00
|
|
|
* that prevents communication.
|
2000-04-12 12:17:38 +02:00
|
|
|
*
|
1999-11-25 01:54:57 +01:00
|
|
|
* Minor protocol version. Different version indicates minor incompatibility
|
|
|
|
* that does not prevent interoperation.
|
|
|
|
*/
|
2000-04-12 12:17:38 +02:00
|
|
|
#define PROTOCOL_MAJOR_1 1
|
|
|
|
#define PROTOCOL_MINOR_1 5
|
|
|
|
|
|
|
|
/* We support both SSH1 and SSH2 */
|
|
|
|
#define PROTOCOL_MAJOR_2 2
|
|
|
|
#define PROTOCOL_MINOR_2 0
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Name for the service. The port named by this service overrides the
|
|
|
|
* default port if present.
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
#define SSH_SERVICE_NAME "ssh"
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
2002-06-23 02:30:30 +02:00
|
|
|
* Name of the environment variable containing the process ID of the
|
|
|
|
* authentication agent.
|
1999-11-25 01:54:57 +01:00
|
|
|
*/
|
2001-02-05 16:43:59 +01:00
|
|
|
#define SSH_AGENTPID_ENV_NAME "SSH_AGENT_PID"
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Name of the environment variable containing the pathname of the
|
|
|
|
* authentication socket.
|
|
|
|
*/
|
2001-01-22 06:34:40 +01:00
|
|
|
#define SSH_AUTHSOCKET_ENV_NAME "SSH_AUTH_SOCK"
|
1999-10-29 02:21:15 +02:00
|
|
|
|
1999-12-06 01:47:28 +01:00
|
|
|
/*
|
2001-01-22 06:34:40 +01:00
|
|
|
* Environment variable for overwriting the default location of askpass
|
1999-12-06 01:47:28 +01:00
|
|
|
*/
|
|
|
|
#define SSH_ASKPASS_ENV "SSH_ASKPASS"
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Force host key length and server key length to differ by at least this
|
|
|
|
* many bits. This is to make double encryption with rsaref work.
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
#define SSH_KEY_BITS_RESERVED 128
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Length of the session key in bytes. (Specified as 256 bits in the
|
|
|
|
* protocol.)
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
#define SSH_SESSION_KEY_LENGTH 32
|
|
|
|
|
2001-06-05 22:32:21 +02:00
|
|
|
/* Used to identify ``EscapeChar none'' */
|
|
|
|
#define SSH_ESCAPECHAR_NONE -2
|
|
|
|
|
2002-03-22 04:11:49 +01:00
|
|
|
/*
|
|
|
|
* unprivileged user when UsePrivilegeSeparation=yes;
|
2002-05-15 18:09:57 +02:00
|
|
|
* sshd will change its privileges to this user and its
|
2002-03-22 04:11:49 +01:00
|
|
|
* primary group.
|
|
|
|
*/
|
2002-04-07 21:22:54 +02:00
|
|
|
#ifndef SSH_PRIVSEP_USER
|
2002-05-15 18:08:48 +02:00
|
|
|
#define SSH_PRIVSEP_USER "sshd"
|
2002-04-07 21:22:54 +02:00
|
|
|
#endif
|
2002-03-22 04:11:49 +01:00
|
|
|
|
2002-04-02 22:43:11 +02:00
|
|
|
/* Minimum modulus size (n) for RSA keys. */
|
|
|
|
#define SSH_RSA_MINIMUM_MODULUS_SIZE 768
|
|
|
|
|
2003-12-09 09:15:11 +01:00
|
|
|
/* Listen backlog for sshd, ssh-agent and forwarding sockets */
|
|
|
|
#define SSH_LISTEN_BACKLOG 128
|