我Match
在OpenSSH /etc/ssh/sshd_config
(在Debian上)中使用了一个块来限制某些用户使用SFTP:
# my stuff
Match group sftponly
X11Forwarding no
AllowTcpForwarding no
ForceCommand internal-sftp -u 0002
ChrootDirectory %h
如您所见,我#my stuff
在自定义配置文件中使用注释以轻松区分默认配置和我所做的配置(并将这些配置放在配置文件的末尾)。
现在我想将指令附加UseDNS no
到配置中(以加快登录速度),但是OpenSSH说Directive 'UseDNS' is not allowed within a Match block
。
现在我想知道是否有一种语法End Match
来结束那些匹配块?
UseDNS
指令(之前没有用过)。接受它作为新答案。-显然新的OpenSSH版本甚至都不会使用)以空开头Match
:lists.mindrot.org/pipermail/openssh-unix-dev/2014-April/…–