summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ssh.125
2 files changed, 28 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 58d21ac55..c27402b5f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -59,6 +59,9 @@
59 servconf.c servconf.h session.c sshconnect1.c sshd.c] 59 servconf.c servconf.h session.c sshconnect1.c sshd.c]
60 Kerberos v5 support for SSH1, mostly from Assar Westerlund 60 Kerberos v5 support for SSH1, mostly from Assar Westerlund
61 <assar@freebsd.org> and Bjorn Gronvall <bg@sics.se>. markus@ ok 61 <assar@freebsd.org> and Bjorn Gronvall <bg@sics.se>. markus@ ok
62 - markus@cvs.openbsd.org 2001/06/26 17:25:34
63 [ssh.1]
64 document SSH_ASKPASS; fubob@MIT.EDU
62 65
6320010629 6620010629
64 - (bal) Removed net_aton() since we don't use it any more 67 - (bal) Removed net_aton() since we don't use it any more
@@ -5886,4 +5889,4 @@
5886 - Wrote replacements for strlcpy and mkdtemp 5889 - Wrote replacements for strlcpy and mkdtemp
5887 - Released 1.0pre1 5890 - Released 1.0pre1
5888 5891
5889$Id: ChangeLog,v 1.1358 2001/07/04 04:21:14 mouring Exp $ 5892$Id: ChangeLog,v 1.1359 2001/07/04 04:31:38 mouring Exp $
diff --git a/ssh.1 b/ssh.1
index f56b330f1..05112812c 100644
--- a/ssh.1
+++ b/ssh.1
@@ -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.1,v 1.117 2001/06/23 17:48:19 itojun Exp $ 37.\" $OpenBSD: ssh.1,v 1.118 2001/06/26 17:25:34 markus Exp $
38.Dd September 25, 1999 38.Dd September 25, 1999
39.Dt SSH 1 39.Dt SSH 1
40.Os 40.Os
@@ -1138,6 +1138,29 @@ Set to the default
1138.Ev PATH , 1138.Ev PATH ,
1139as specified when compiling 1139as specified when compiling
1140.Nm ssh . 1140.Nm ssh .
1141.It Ev SSH_ASKPASS
1142If
1143.Nm
1144needs a passphrase, it will read the passphrase from the current
1145terminal if it was run from a terminal.
1146If
1147.Nm
1148does not have a terminal associated with it but
1149.Ev DISPLAY
1150and
1151.Ev SSH_ASKPASS
1152are set, it will execute the program specified by
1153.Ev SSH_ASKPASS
1154and open an X11 window to read the passphrase.
1155This is particularly useful when calling
1156.Nm
1157from a
1158.Pa .Xsession
1159or related script.
1160(Note that on some machines it
1161may be necessary to redirect the input from
1162.Pa /dev/null
1163to make this work.)
1141.It Ev SSH_AUTH_SOCK 1164.It Ev SSH_AUTH_SOCK
1142indicates the path of a unix-domain socket used to communicate with the 1165indicates the path of a unix-domain socket used to communicate with the
1143agent. 1166agent.