I have the situation where sshd should permit sftp only access to a group of users.
This is easily done by adding a match section like
Match Group groupname
ChrootDirectory /srv/ftp
ForceCommand internal-sftp
Now I need to exclude one user that is a member of this group. He should have normal shell access.
Match User username
ChrootDirectory ???
ForceCommand ???
What do I set here? Is it possible to unset configuration directives previuosly set with another matching section?
Don't add an extra
Match User
section. Instead, exclude the user by excluding him from the originalMatch
.All criteria on the
Match
line must be satisfied for the section to be applied.As Nicolas Mommaerts discovered, there's a bug with negative-only patterns, and you may need to first include everyone with
*
: