Skip to Content
Linux Security Cookbook
book

Linux Security Cookbook

by Daniel J. Barrett, Richard E. Silverman, Robert G. Byrnes
June 2003
Intermediate to advanced
336 pages
8h 54m
English
O'Reilly Media, Inc.
Content preview from Linux Security Cookbook

6.13. Changing SSH Client Defaults

Problem

You want to change the default behavior of ssh.

Solution

Create a host alias named “*” in ~/.ssh/config:

Host *
        keyword value
                       keyword value
                       ...

If this is the first entry in the file, these values will override all others. If the last entry in the file, they are fallback values, i.e., defaults if nobody else has set them. You can make Host * both the first and last entry to achieve both behaviors.

Discussion

We are just taking advantage of a few facts about host aliases in the configuration file:

  • Earlier values take precedence

  • The aliases may be patterns, and “*” matches anything

  • All matching aliases apply, not just the first one to match your ssh command

So if this is your ~/.ssh/config file:

Host *
        User smith
Host server.example.com
        User jones
        PasswordAuthentication yes
Host *
        PasswordAuthentication no

then your remote username will always be smith (even for server.example.com!), and password authentication will be disabled by default (except for server.example.com).

You can still override host aliases using command-line options:

$ ssh -l jane server.example.com         The -l option overrides the User keyword

See Also

ssh_config(5) documents the client configuration keywords.

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Practical Linux Security Cookbook - Second Edition

Practical Linux Security Cookbook - Second Edition

Tajinder Kalsi
Mastering Linux Command Line

Mastering Linux Command Line

Coding Gears | Train Your Brain

Publisher Resources

ISBN: 0596003919Errata Page