为特定用户或 ip 禁用 ssh 横幅

Jis*_*iot 4 ssh sshd

我已经通过设置它启用了出现在密码提示之前的横幅sshd_config。然而,某些用户(尤其是我)真的不需要看到横幅(它也搞砸了很多脚本)。我希望能够为某些用户甚至某些 IP 地址禁用它。我该怎么做呢?

需要说明的是,这是通常在 中的旗帜,而/etc/issue.net不是可以用 沉默的旗帜.hushlogin

slm*_*slm 7

这是一个例子。有关Match工作原理的详细信息在sshd_config手册页中。

摘抄

Match   Introduces a conditional block.  If all of the criteria on the Match 
        line are satisfied, the keywords on the following lines override those 
        set in the global section of the config file, until either another Match 
        line or the end of the file.

        The arguments to Match are one or more criteria-pattern pairs.  The 
        available criteria are User, Group, Host, and Address.  The match 
        patterns may consist of single entries or comma-separated lists and may 
        use the wildcard and negation operators described in the PATTERNS 
        section of ssh_config(5).
Run Code Online (Sandbox Code Playgroud)

有关允许的模式的详细信息ssh_config在“模式”下的手册页中。

摘抄

PATTERNS
        A pattern consists of zero or more non-whitespace characters, ‘*’ 
        (a wildcard that matches zero or more characters), or ‘?’ (a wildcard 
        that matches exactly one character).  For example, to specify a set of 
        declarations for any host in the “.co.uk” set of domains, the following 
        pattern could be used:

           Host *.co.uk

       The following pattern would match any host in the 192.168.0.[0-9] network 
       range:

           Host 192.168.0.?

       A pattern-list is a comma-separated list of patterns.  Patterns within 
       pattern-lists may be negated by preceding them with an exclamation mark 
       (‘!’).  For example, to allow a key to be used from anywhere within an 
       organisation except from the “dialup” pool, the following entry (in 
       authorized_keys) could be used:

          from="!*.dialup.example.com,*.example.com"
Run Code Online (Sandbox Code Playgroud)

例子

Match User user1,user2
  Banner "none"
Run Code Online (Sandbox Code Playgroud)