summaryrefslogtreecommitdiff
path: root/ssh.1
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2000-12-28 16:40:05 +0000
committerBen Lindstrom <mouring@eviladmin.org>2000-12-28 16:40:05 +0000
commit4dccfa5fb73853e6c9281beac2c42a31391acdc7 (patch)
tree2a64c6b1e096010f2b5fd45a08f9878cac5d400e /ssh.1
parent42717bf8fff94146edf43ea266113f1a54456c62 (diff)
- (bal) OpenBSD CVS Update
- markus@cvs.openbsd.org 2000/12/28 14:25:51 [auth.h auth2.c] count authentication failures only - markus@cvs.openbsd.org 2000/12/28 14:25:03 [sshconnect.c] fingerprint for MITM attacks, too. - markus@cvs.openbsd.org 2000/12/28 12:03:57 [sshd.8 sshd.c] document -D - markus@cvs.openbsd.org 2000/12/27 14:19:21 [serverloop.c] less chatty - markus@cvs.openbsd.org 2000/12/27 12:34 [auth1.c sshconnect2.c sshd.c] typo - markus@cvs.openbsd.org 2000/12/27 12:30:19 [readconf.c readconf.h ssh.1 sshconnect.c] new option: HostKeyAlias: allow the user to record the host key under a different name. This is useful for ssh tunneling over forwarded connections or if you run multiple sshd's on different ports on the same machine. - markus@cvs.openbsd.org 2000/12/27 11:51:53 [ssh.1 ssh.c] multiple -t force pty allocation, document ORIGINAL_COMMAND - markus@cvs.openbsd.org 2000/12/27 11:41:31 [sshd.8] update for ssh-2
Diffstat (limited to 'ssh.1')
-rw-r--r--ssh.124
1 files changed, 19 insertions, 5 deletions
diff --git a/ssh.1 b/ssh.1
index fd791200d..40cb6dfa8 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.72 2000/12/12 23:11:48 markus Exp $ 37.\" $OpenBSD: ssh.1,v 1.74 2000/12/27 12:30:20 markus Exp $
38.Dd September 25, 1999 38.Dd September 25, 1999
39.Dt SSH 1 39.Dt SSH 1
40.Os 40.Os
@@ -475,6 +475,11 @@ Force pseudo-tty allocation.
475This can be used to execute arbitrary 475This can be used to execute arbitrary
476screen-based programs on a remote machine, which can be very useful, 476screen-based programs on a remote machine, which can be very useful,
477e.g., when implementing menu services. 477e.g., when implementing menu services.
478Multiple
479.Fl t
480options force tty allocation, even if
481.Nm
482has no local tty.
478.It Fl T 483.It Fl T
479Disable pseudo-tty allocation. 484Disable pseudo-tty allocation.
480.It Fl v 485.It Fl v
@@ -484,10 +489,9 @@ Causes
484to print debugging messages about its progress. 489to print debugging messages about its progress.
485This is helpful in 490This is helpful in
486debugging connection, authentication, and configuration problems. 491debugging connection, authentication, and configuration problems.
487The verbose mode is also used to display 492Multiple
488.Xr skey 1 493.Fl v
489challenges, if the user entered "s/key" as password. 494options increases the verbosity.
490Multiple -v options increases the verbosity.
491Maximum is 3. 495Maximum is 3.
492.It Fl x 496.It Fl x
493Disables X11 forwarding. 497Disables X11 forwarding.
@@ -742,6 +746,12 @@ The default is
742.It Cm GlobalKnownHostsFile 746.It Cm GlobalKnownHostsFile
743Specifies a file to use instead of 747Specifies a file to use instead of
744.Pa /etc/ssh_known_hosts . 748.Pa /etc/ssh_known_hosts .
749.It Cm HostKeyAlias
750Specifies an alias that should be used instead of the
751real host name when looking up or saving the host key
752the kown_hosts files.
753This option is useful for tunneling ssh connection
754or if you have multiple servers running on a single host.
745.It Cm HostName 755.It Cm HostName
746Specifies the real host name to log into. 756Specifies the real host name to log into.
747This can be used to specify nicknames or abbreviations for hosts. 757This can be used to specify nicknames or abbreviations for hosts.
@@ -1023,6 +1033,10 @@ Identifies the client end of the connection.
1023The variable contains 1033The variable contains
1024three space-separated values: client ip-address, client port number, 1034three space-separated values: client ip-address, client port number,
1025and server port number. 1035and server port number.
1036.It Ev SSH_ORIGINAL_COMMAND
1037The variable contains the original command line if a forced command
1038is executed.
1039It can be used to extract the original arguments.
1026.It Ev SSH_TTY 1040.It Ev SSH_TTY
1027This is set to the name of the tty (path to the device) associated 1041This is set to the name of the tty (path to the device) associated
1028with the current shell or command. 1042with the current shell or command.