diff options
author | Damien Miller <djm@mindrot.org> | 2005-05-26 12:04:02 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2005-05-26 12:04:02 +1000 |
commit | 167ea5d0268243991ad3c55cb20fa2b53f577b37 (patch) | |
tree | 8b73e38d56fa0ff77c11e745adf28acb22d1a52e /ssh_config.5 | |
parent | a31c929f3601561d6d147a2940d7a81a2a40e377 (diff) |
- djm@cvs.openbsd.org 2005/04/21 06:17:50
[ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 ssh_config.5 sshd.8]
[sshd_config.5] OpenSSH doesn't ever look at the $HOME environment
variable, so don't say that we do (bz #623); ok deraadt@
Diffstat (limited to 'ssh_config.5')
-rw-r--r-- | ssh_config.5 | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ssh_config.5 b/ssh_config.5 index b35753307..7e48fa65b 100644 --- a/ssh_config.5 +++ b/ssh_config.5 | |||
@@ -34,7 +34,7 @@ | |||
34 | .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 34 | .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
35 | .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 35 | .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
36 | .\" | 36 | .\" |
37 | .\" $OpenBSD: ssh_config.5,v 1.49 2005/03/16 11:10:38 jmc Exp $ | 37 | .\" $OpenBSD: ssh_config.5,v 1.50 2005/04/21 06:17:50 djm Exp $ |
38 | .Dd September 25, 1999 | 38 | .Dd September 25, 1999 |
39 | .Dt SSH_CONFIG 5 | 39 | .Dt SSH_CONFIG 5 |
40 | .Os | 40 | .Os |
@@ -43,7 +43,7 @@ | |||
43 | .Nd OpenSSH SSH client configuration files | 43 | .Nd OpenSSH SSH client configuration files |
44 | .Sh SYNOPSIS | 44 | .Sh SYNOPSIS |
45 | .Bl -tag -width Ds -compact | 45 | .Bl -tag -width Ds -compact |
46 | .It Pa $HOME/.ssh/config | 46 | .It Pa ~/.ssh/config |
47 | .It Pa /etc/ssh/ssh_config | 47 | .It Pa /etc/ssh/ssh_config |
48 | .El | 48 | .El |
49 | .Sh DESCRIPTION | 49 | .Sh DESCRIPTION |
@@ -55,7 +55,7 @@ the following order: | |||
55 | command-line options | 55 | command-line options |
56 | .It | 56 | .It |
57 | user's configuration file | 57 | user's configuration file |
58 | .Pq Pa $HOME/.ssh/config | 58 | .Pq Pa ~/.ssh/config |
59 | .It | 59 | .It |
60 | system-wide configuration file | 60 | system-wide configuration file |
61 | .Pq Pa /etc/ssh/ssh_config | 61 | .Pq Pa /etc/ssh/ssh_config |
@@ -411,7 +411,7 @@ Note that this option applies to protocol version 2 only. | |||
411 | Indicates that | 411 | Indicates that |
412 | .Nm ssh | 412 | .Nm ssh |
413 | should hash host names and addresses when they are added to | 413 | should hash host names and addresses when they are added to |
414 | .Pa $HOME/.ssh/known_hosts . | 414 | .Pa ~/.ssh/known_hosts . |
415 | These hashed names may be used normally by | 415 | These hashed names may be used normally by |
416 | .Nm ssh | 416 | .Nm ssh |
417 | and | 417 | and |
@@ -457,11 +457,11 @@ specifications). | |||
457 | Specifies a file from which the user's RSA or DSA authentication identity | 457 | Specifies a file from which the user's RSA or DSA authentication identity |
458 | is read. | 458 | is read. |
459 | The default is | 459 | The default is |
460 | .Pa $HOME/.ssh/identity | 460 | .Pa ~/.ssh/identity |
461 | for protocol version 1, and | 461 | for protocol version 1, and |
462 | .Pa $HOME/.ssh/id_rsa | 462 | .Pa ~/.ssh/id_rsa |
463 | and | 463 | and |
464 | .Pa $HOME/.ssh/id_dsa | 464 | .Pa ~/.ssh/id_dsa |
465 | for protocol version 2. | 465 | for protocol version 2. |
466 | Additionally, any identities represented by the authentication agent | 466 | Additionally, any identities represented by the authentication agent |
467 | will be used for authentication. | 467 | will be used for authentication. |
@@ -751,7 +751,7 @@ If this flag is set to | |||
751 | .Dq yes , | 751 | .Dq yes , |
752 | .Nm ssh | 752 | .Nm ssh |
753 | will never automatically add host keys to the | 753 | will never automatically add host keys to the |
754 | .Pa $HOME/.ssh/known_hosts | 754 | .Pa ~/.ssh/known_hosts |
755 | file, and refuses to connect to hosts whose host key has changed. | 755 | file, and refuses to connect to hosts whose host key has changed. |
756 | This provides maximum protection against trojan horse attacks, | 756 | This provides maximum protection against trojan horse attacks, |
757 | however, can be annoying when the | 757 | however, can be annoying when the |
@@ -823,7 +823,7 @@ having to remember to give the user name on the command line. | |||
823 | .It Cm UserKnownHostsFile | 823 | .It Cm UserKnownHostsFile |
824 | Specifies a file to use for the user | 824 | Specifies a file to use for the user |
825 | host key database instead of | 825 | host key database instead of |
826 | .Pa $HOME/.ssh/known_hosts . | 826 | .Pa ~/.ssh/known_hosts . |
827 | .It Cm VerifyHostKeyDNS | 827 | .It Cm VerifyHostKeyDNS |
828 | Specifies whether to verify the remote key using DNS and SSHFP resource | 828 | Specifies whether to verify the remote key using DNS and SSHFP resource |
829 | records. | 829 | records. |
@@ -856,7 +856,7 @@ The default is | |||
856 | .El | 856 | .El |
857 | .Sh FILES | 857 | .Sh FILES |
858 | .Bl -tag -width Ds | 858 | .Bl -tag -width Ds |
859 | .It Pa $HOME/.ssh/config | 859 | .It Pa ~/.ssh/config |
860 | This is the per-user configuration file. | 860 | This is the per-user configuration file. |
861 | The format of this file is described above. | 861 | The format of this file is described above. |
862 | This file is used by the | 862 | This file is used by the |