summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-01-22 23:33:45 +1100
committerDamien Miller <djm@mindrot.org>2002-01-22 23:33:45 +1100
commitdf64a682f17fc12ca0ae80e6331cbb89b77bd35b (patch)
tree7b0fb2c4cb44d743f0f9ced09f34318683ecf18f
parent4a8ed543612c99700788d87fe18081d5df4b37c6 (diff)
- stevesk@cvs.openbsd.org 2002/01/18 20:46:34
[sshd.8] clarify Allow(Groups|Users) and Deny(Groups|Users); suggestion from allard@oceanpark.com; ok markus@
-rw-r--r--ChangeLog6
-rw-r--r--sshd.822
2 files changed, 16 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index 66f53a25a..3689b1d89 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -207,6 +207,10 @@
207 - stevesk@cvs.openbsd.org 2002/01/18 18:14:17 207 - stevesk@cvs.openbsd.org 2002/01/18 18:14:17
208 [authfd.c bufaux.c buffer.c cipher.c packet.c ssh-agent.c ssh-keygen.c] 208 [authfd.c bufaux.c buffer.c cipher.c packet.c ssh-agent.c ssh-keygen.c]
209 unneeded cast cleanup; ok markus@ 209 unneeded cast cleanup; ok markus@
210 - stevesk@cvs.openbsd.org 2002/01/18 20:46:34
211 [sshd.8]
212 clarify Allow(Groups|Users) and Deny(Groups|Users); suggestion from
213 allard@oceanpark.com; ok markus@
210 214
21120020121 21520020121
212 - (djm) Rework ssh-rand-helper: 216 - (djm) Rework ssh-rand-helper:
@@ -7354,4 +7358,4 @@
7354 - Wrote replacements for strlcpy and mkdtemp 7358 - Wrote replacements for strlcpy and mkdtemp
7355 - Released 1.0pre1 7359 - Released 1.0pre1
7356 7360
7357$Id: ChangeLog,v 1.1781 2002/01/22 12:33:31 djm Exp $ 7361$Id: ChangeLog,v 1.1782 2002/01/22 12:33:45 djm Exp $
diff --git a/sshd.8 b/sshd.8
index 61d88c142..256b2aa57 100644
--- a/sshd.8
+++ b/sshd.8
@@ -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: sshd.8,v 1.162 2002/01/18 17:14:16 stevesk Exp $ 37.\" $OpenBSD: sshd.8,v 1.163 2002/01/18 20:46:34 stevesk Exp $
38.Dd September 25, 1999 38.Dd September 25, 1999
39.Dt SSHD 8 39.Dt SSHD 8
40.Os 40.Os
@@ -329,7 +329,7 @@ Specifies whether an AFS token may be forwarded to the server.
329Default is 329Default is
330.Dq yes . 330.Dq yes .
331.It Cm AllowGroups 331.It Cm AllowGroups
332This keyword can be followed by a list of group names, separated 332This keyword can be followed by a list of group name patterns, separated
333by spaces. 333by spaces.
334If specified, login is allowed only for users whose primary 334If specified, login is allowed only for users whose primary
335group or supplementary group list matches one of the patterns. 335group or supplementary group list matches one of the patterns.
@@ -339,7 +339,7 @@ and
339can be used as 339can be used as
340wildcards in the patterns. 340wildcards in the patterns.
341Only group names are valid; a numerical group ID is not recognized. 341Only group names are valid; a numerical group ID is not recognized.
342By default login is allowed regardless of the group list. 342By default, login is allowed for all groups.
343.Pp 343.Pp
344.It Cm AllowTcpForwarding 344.It Cm AllowTcpForwarding
345Specifies whether TCP forwarding is permitted. 345Specifies whether TCP forwarding is permitted.
@@ -350,7 +350,7 @@ users are also denied shell access, as they can always install their
350own forwarders. 350own forwarders.
351.Pp 351.Pp
352.It Cm AllowUsers 352.It Cm AllowUsers
353This keyword can be followed by a list of user names, separated 353This keyword can be followed by a list of user name patterns, separated
354by spaces. 354by spaces.
355If specified, login is allowed only for users names that 355If specified, login is allowed only for users names that
356match one of the patterns. 356match one of the patterns.
@@ -360,7 +360,7 @@ and
360can be used as 360can be used as
361wildcards in the patterns. 361wildcards in the patterns.
362Only user names are valid; a numerical user ID is not recognized. 362Only user names are valid; a numerical user ID is not recognized.
363By default login is allowed regardless of the user name. 363By default, login is allowed for all users.
364If the pattern takes the form USER@HOST then USER and HOST 364If the pattern takes the form USER@HOST then USER and HOST
365are separately checked, restricting logins to particular 365are separately checked, restricting logins to particular
366users from particular hosts. 366users from particular hosts.
@@ -435,20 +435,20 @@ The default value is 3. If
435is left at the default, unresponsive ssh clients 435is left at the default, unresponsive ssh clients
436will be disconnected after approximately 45 seconds. 436will be disconnected after approximately 45 seconds.
437.It Cm DenyGroups 437.It Cm DenyGroups
438This keyword can be followed by a number of group names, separated 438This keyword can be followed by a list of group name patterns, separated
439by spaces. 439by spaces.
440Users whose primary group or supplementary group list matches 440Login is disallowed for users whose primary group or supplementary
441one of the patterns aren't allowed to log in. 441group list matches one of the patterns.
442.Ql \&* 442.Ql \&*
443and 443and
444.Ql ? 444.Ql ?
445can be used as 445can be used as
446wildcards in the patterns. 446wildcards in the patterns.
447Only group names are valid; a numerical group ID is not recognized. 447Only group names are valid; a numerical group ID is not recognized.
448By default login is allowed regardless of the group list. 448By default, login is allowed for all groups.
449.Pp 449.Pp
450.It Cm DenyUsers 450.It Cm DenyUsers
451This keyword can be followed by a number of user names, separated 451This keyword can be followed by a list of user name patterns, separated
452by spaces. 452by spaces.
453Login is disallowed for user names that match one of the patterns. 453Login is disallowed for user names that match one of the patterns.
454.Ql \&* 454.Ql \&*
@@ -456,7 +456,7 @@ and
456.Ql ? 456.Ql ?
457can be used as wildcards in the patterns. 457can be used as wildcards in the patterns.
458Only user names are valid; a numerical user ID is not recognized. 458Only user names are valid; a numerical user ID is not recognized.
459By default login is allowed regardless of the user name. 459By default, login is allowed for all users.
460.It Cm GatewayPorts 460.It Cm GatewayPorts
461Specifies whether remote hosts are allowed to connect to ports 461Specifies whether remote hosts are allowed to connect to ports
462forwarded for the client. 462forwarded for the client.