3
OpenSSH:如何结束匹配块
我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来结束那些匹配块?