diff options
author | nik <nik@FreeBSD.org> | 2001-02-02 03:29:09 +0000 |
---|---|---|
committer | nik <nik@FreeBSD.org> | 2001-02-02 03:29:09 +0000 |
commit | 0121023c6df88cec7434e6937d419a885fe189b2 (patch) | |
tree | 01ddd5c4e9f46d840aef55528606df3dcf53dac5 /libexec/rshd | |
parent | e47091ebfd691b90753c35ab8052e1430955b60f (diff) | |
download | FreeBSD-src-0121023c6df88cec7434e6937d419a885fe189b2.zip FreeBSD-src-0121023c6df88cec7434e6937d419a885fe189b2.tar.gz |
Structure the options listing to be more standard.
The PR also included documentation for other options, but upon
inspection of the source these options aren't used.
PR: docs/24149
Submitted by: Jesse Monroy, Jr. <opentrax@email.com>
Diffstat (limited to 'libexec/rshd')
-rw-r--r-- | libexec/rshd/rshd.8 | 37 |
1 files changed, 21 insertions, 16 deletions
diff --git a/libexec/rshd/rshd.8 b/libexec/rshd/rshd.8 index 14328b6..bf18b20 100644 --- a/libexec/rshd/rshd.8 +++ b/libexec/rshd/rshd.8 @@ -40,7 +40,7 @@ .Nd remote shell server .Sh SYNOPSIS .Nm -.Op Fl alnDL +.Op Fl \&?DLaln .Sh DESCRIPTION The .Nm @@ -151,25 +151,30 @@ by .Nm . .El .Pp -Transport-level keepalive messages are enabled unless the -.Fl n -option is present. -The use of keepalive messages allows sessions to be timed out -if the client crashes or becomes unreachable. -.Pp -The -.Fl D -option sets the TCP_NODELAY socket option which improves -performance of small back-to-back -writes at the expense of additional network traffic. -.Pp -The -.Fl L -option causes all successful accesses to be logged to +The options are as follows: +.Bl -tag -width indent +.It Fl \&? +Display the usage message, and exit. +.It Fl D +Sets the TCP_NODELAY socket option, which improves the performance +of small back-to-back writes at the expense of additional network +traffic. +.It Fl L +Causes all successful accesses to be logged to .Xr syslogd 8 as .Li auth.info messages. +.It Fl a +This flag is ignored, and is present for compatability purposes. +.It Fl l +Do not use the user's +.Pa .rhosts +file for authentication, unless the user is the superuser. +.It Fl n +Turn off transport level keepalive messages. This will prevent sessions +from timing out if the client crashes or becomes unreachable. +.El .Sh DIAGNOSTICS Except for the last one listed below, all diagnostic messages |