summaryrefslogtreecommitdiff
path: root/ssh_config.5
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2011-05-15 08:45:50 +1000
committerDamien Miller <djm@mindrot.org>2011-05-15 08:45:50 +1000
commit21771e22d3e23a10cb01983b2df83d47362eadda (patch)
treef9b85caefb4f1549c847d34a7c7b3adead764c6b /ssh_config.5
parentfe92421772243702ecb18b862dbeb51a9bdbbc6e (diff)
- djm@cvs.openbsd.org 2011/05/06 21:34:32
[clientloop.c mux.c readconf.c readconf.h ssh.c ssh_config.5] Add a RequestTTY ssh_config option to allow configuration-based control over tty allocation (like -t/-T); ok markus@
Diffstat (limited to 'ssh_config.5')
-rw-r--r--ssh_config.519
1 files changed, 18 insertions, 1 deletions
diff --git a/ssh_config.5 b/ssh_config.5
index 5bdc7fec1..83baa82b1 100644
--- a/ssh_config.5
+++ b/ssh_config.5
@@ -33,7 +33,7 @@
33.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 33.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 34.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35.\" 35.\"
36.\" $OpenBSD: ssh_config.5,v 1.148 2011/05/06 21:31:38 djm Exp $ 36.\" $OpenBSD: ssh_config.5,v 1.149 2011/05/06 21:34:32 djm Exp $
37.Dd $Mdocdate: May 6 2011 $ 37.Dd $Mdocdate: May 6 2011 $
38.Dt SSH_CONFIG 5 38.Dt SSH_CONFIG 5
39.Os 39.Os
@@ -959,6 +959,23 @@ will only succeed if the server's
959.Cm GatewayPorts 959.Cm GatewayPorts
960option is enabled (see 960option is enabled (see
961.Xr sshd_config 5 ) . 961.Xr sshd_config 5 ) .
962.It Cm RequestTTY
963Specifies whether to request a pseudo-tty for the session.
964The argument may be one of:
965.Dq no
966(never request a TTY),
967.Dq yes
968(always request a TTY when standard input is a TTY),
969.Dq force
970(always request a TTY) or
971.Dq auto
972(request a TTY when opening a login session).
973This option mirrors the
974.Fl t
975and
976.Fl T
977flags for
978.Xr ssh 1 .
962.It Cm RhostsRSAAuthentication 979.It Cm RhostsRSAAuthentication
963Specifies whether to try rhosts based authentication with RSA host 980Specifies whether to try rhosts based authentication with RSA host
964authentication. 981authentication.