Displaying 3 results from an estimated 3 matches for "_path_ssh_system_hostfile".
2001 Oct 24
3
Inconsistent server/client configuration
...OST_KEY_FILE, _PATH_HOST_DSA_KEY_FILE,
_PATH_HOST_RSA_KEY_FILE are used (in this order), whereas on the server,
the paths can be specified by up to three HostKey options as arbitrary names
in arbitrary sequence.
Similarly, option GlobalKnownHostsFile is configurable for the client only
but fixed as _PATH_SSH_SYSTEM_HOSTFILE for the server. (Well, here the meaning
is slightly different, thus this may be o.k.)
2014 Nov 05
17
[Bug 2305] New: sshd does not accept @cert-authority when doing host based authentication.
https://bugzilla.mindrot.org/show_bug.cgi?id=2305
Bug ID: 2305
Summary: sshd does not accept @cert-authority when doing host
based authentication.
Product: Portable OpenSSH
Version: 6.5p1
Hardware: amd64
OS: Linux
Status: NEW
Severity: normal
Priority: P5
Component:
2001 Oct 16
6
program-prefix does not work
...ed Jun 27 17:13:48 2001
--- openssh-2.9.9p2/pathnames.h Tue Oct 16 13:30:09 2001
***************
*** 20,42 ****
#define _PATH_SSH_PIDDIR "/var/run"
#endif
/*
* System-wide file containing host keys of known hosts. This file
should be
* world-readable.
*/
! #define _PATH_SSH_SYSTEM_HOSTFILE ETCDIR "/ssh_known_hosts"
/* backward compat for protocol 2 */
! #define _PATH_SSH_SYSTEM_HOSTFILE2 ETCDIR "/ssh_known_hosts2"
/*
* Of these, ssh_host_key must be readable only by root, whereas
ssh_config
* should be world-readable.
*/
! #define _PATH_SERVER_...