improve allow_deny_users_groups
This commit is contained in:
parent
178692f92e
commit
9cdb9aaba0
@ -208,13 +208,14 @@
|
|||||||
# needs to to a DNS lookup
|
# needs to to a DNS lookup
|
||||||
#
|
#
|
||||||
# DenyUsers
|
# DenyUsers
|
||||||
{{ option('DenyUsers', '') }}
|
{{ option_string_or_list('DenyUsers', '', True , sep=' ')}}
|
||||||
# AllowUsers
|
# AllowUsers
|
||||||
{{ option('AllowUsers', '') }}
|
{{ option_string_or_list('AllowUsers', '', True , sep=' ')}}
|
||||||
# DenyGroups
|
# DenyGroups
|
||||||
{{ option('DenyGroups', '') }}
|
{{ option_string_or_list('DenyGroups', '', True , sep=' ')}}
|
||||||
# AllowGroups
|
# AllowGroups
|
||||||
{{ option('AllowGroups', '') }}
|
{{ option_string_or_list('AllowGroups', '', True , sep=' ')}}
|
||||||
|
|
||||||
|
|
||||||
# Specifies the available KEX (Key Exchange) algorithms.
|
# Specifies the available KEX (Key Exchange) algorithms.
|
||||||
{{ option_string_or_list('KexAlgorithms', 'ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1', True) }}
|
{{ option_string_or_list('KexAlgorithms', 'ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1', True) }}
|
||||||
|
@ -44,10 +44,33 @@ sshd_config:
|
|||||||
Subsystem: "sftp /usr/lib/openssh/sftp-server"
|
Subsystem: "sftp /usr/lib/openssh/sftp-server"
|
||||||
UsePAM: 'yes'
|
UsePAM: 'yes'
|
||||||
UseDNS: 'yes'
|
UseDNS: 'yes'
|
||||||
|
# set as string
|
||||||
AllowUsers: 'vader@10.0.0.1 maul@evil.com sidious luke'
|
AllowUsers: 'vader@10.0.0.1 maul@evil.com sidious luke'
|
||||||
|
# or set as list
|
||||||
|
AllowUsers:
|
||||||
|
- vader@10.0.0.1
|
||||||
|
- maul@evil.com
|
||||||
|
- sidious
|
||||||
|
- luke
|
||||||
|
# set as string
|
||||||
DenyUsers: 'yoda chewbaca@112.10.21.1'
|
DenyUsers: 'yoda chewbaca@112.10.21.1'
|
||||||
|
# or set as list
|
||||||
|
DenyUsers:
|
||||||
|
- yoda
|
||||||
|
- chewbaca@112.10.21.1
|
||||||
|
# set as string
|
||||||
AllowGroups: 'wheel staff imperial'
|
AllowGroups: 'wheel staff imperial'
|
||||||
|
# or set as list
|
||||||
|
AllowGroups:
|
||||||
|
- wheel
|
||||||
|
- staff
|
||||||
|
- imperial
|
||||||
|
# set as string
|
||||||
DenyGroups: 'rebel'
|
DenyGroups: 'rebel'
|
||||||
|
# or set as list
|
||||||
|
DenyGroups:
|
||||||
|
- rebel
|
||||||
|
- badcompany
|
||||||
matches:
|
matches:
|
||||||
sftp_chroot:
|
sftp_chroot:
|
||||||
type:
|
type:
|
||||||
|
Loading…
Reference in New Issue
Block a user