Ben Lindstrom | 9323d96 | 2001-04-04 01:58:48 +0000 | [diff] [blame] | 1 | # $OpenBSD: ssh_config,v 1.10 2001/04/03 21:19:38 todd Exp $ |
Ben Lindstrom | 36579d3 | 2001-01-29 07:39:26 +0000 | [diff] [blame] | 2 | |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 3 | # This is ssh client systemwide configuration file. See ssh(1) for more |
| 4 | # information. This file provides defaults for users, and the values can |
| 5 | # be changed in per-user configuration files or on the command line. |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 6 | |
| 7 | # Configuration data is parsed as follows: |
| 8 | # 1. command line options |
| 9 | # 2. user-specific file |
| 10 | # 3. system-wide file |
| 11 | # Any configuration value is only changed the first time it is set. |
| 12 | # Thus, host-specific definitions should be at the beginning of the |
| 13 | # configuration file, and defaults at the end. |
| 14 | |
| 15 | # Site-wide defaults for various options |
| 16 | |
| 17 | # Host * |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 18 | # ForwardAgent no |
| 19 | # ForwardX11 no |
| 20 | # RhostsAuthentication no |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 21 | # RhostsRSAAuthentication yes |
| 22 | # RSAAuthentication yes |
| 23 | # PasswordAuthentication yes |
Damien Miller | 182ee6e | 2000-07-12 09:45:27 +1000 | [diff] [blame] | 24 | # FallBackToRsh no |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 25 | # UseRsh no |
| 26 | # BatchMode no |
| 27 | # CheckHostIP yes |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 28 | # StrictHostKeyChecking yes |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 29 | # IdentityFile ~/.ssh/identity |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 30 | # IdentityFile ~/.ssh/id_dsa |
Ben Lindstrom | 9323d96 | 2001-04-04 01:58:48 +0000 | [diff] [blame] | 31 | # IdentityFile ~/.ssh/id_rsa |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 32 | # Port 22 |
Ben Lindstrom | 068f3dc | 2001-03-10 17:15:39 +0000 | [diff] [blame] | 33 | # Protocol 2,1 |
Damien Miller | c30d35c | 2000-08-30 09:40:09 +1100 | [diff] [blame] | 34 | # Cipher blowfish |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 35 | # EscapeChar ~ |