summaryrefslogtreecommitdiff
path: root/ssh_config.5
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-31 23:13:21 +1100
committerDamien Miller <djm@mindrot.org>2006-03-31 23:13:21 +1100
commit6b1d53c2b090130440c3459876c0033c4e5a466a (patch)
tree941e967011a9fd8bb22d796e4c91f515ab416bac /ssh_config.5
parent3f9418893e1254bda3b87e7d3af7029d11b0a6c7 (diff)
- djm@cvs.openbsd.org 2006/03/30 10:41:25
[ssh.c ssh_config.5] add percent escape chars to the IdentityFile option, bz #1159 based on a patch by imaging AT math.ualberta.ca; feedback and ok dtucker@
Diffstat (limited to 'ssh_config.5')
-rw-r--r--ssh_config.517
1 files changed, 15 insertions, 2 deletions
diff --git a/ssh_config.5 b/ssh_config.5
index 5b02ef821..9c621336e 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.89 2006/03/14 16:32:48 markus Exp $ 37.\" $OpenBSD: ssh_config.5,v 1.90 2006/03/30 10:41:25 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
@@ -548,8 +548,21 @@ and
548for protocol version 2. 548for protocol version 2.
549Additionally, any identities represented by the authentication agent 549Additionally, any identities represented by the authentication agent
550will be used for authentication. 550will be used for authentication.
551.Pp
551The file name may use the tilde 552The file name may use the tilde
552syntax to refer to a user's home directory. 553syntax to refer to a user's home directory or one of the following
554escape characters:
555.Ql %d
556(local user's home directory),
557.Ql %u
558(local user name),
559.Ql %l
560(local host name),
561.Ql %h
562(remote host name) or
563.Ql %h
564(remote user name).
565.Pp
553It is possible to have 566It is possible to have
554multiple identity files specified in configuration files; all these 567multiple identity files specified in configuration files; all these
555identities will be tried in sequence. 568identities will be tried in sequence.