Can you have more than one ~/.ssh/config file?

53,755

Solution 1

The ~/.ssh/config file don't have a directive for including other files, possibly related to SSH's check for file permissions.

Suggestions around this can include a script to cat several changes together either on the system or via checkin hooks on a repository. One might also look into tools such as Puppet or Augeas.

However you approach it, though, you'll have to concatenate individual files to be a single file from outside of the file.

$ cat ~/.ssh/config_* >> ~/.ssh/config

note: overwrite: > v.s. append: >>

Update December 2017:

From 7.3p1 and up, there is the Include option. Which allows you to include configuration files.

Include
    Include the specified configuration file(s).  Mul‐
    tiple pathnames may be specified and each pathname
    may contain glob(3) wildcards and, for user config‐
    urations, shell-like “~” references to user home
    directories.  Files without absolute paths are
    assumed to be in ~/.ssh if included in a user con‐
    figuration file or /etc/ssh if included from the
    system configuration file.  Include directive may
    appear inside a Match or Host block to perform con‐
    ditional inclusion.

Solution 2

You can specify current config file to use in ssh option like this:

ssh -F /path/to/configfile

Seems it's the only way.

Also there is noway to include one config into another.

Solution 3

Starting with ssh 7.3 (released on August 1st, 2016), an Include directive is available.

Include: Include the specified configuration file(s). Multiple path names may be specified and each pathname may contain glob wildcards and shell-like "~" references to user home directories. Files without absolute paths are assumed to be in ~/.ssh. An Include directive may appear inside a Match or Host block to perform conditional inclusion.

(Here is the link to the resolved bug report, that also includes the patch: https://bugzilla.mindrot.org/show_bug.cgi?id=1585#c24)

Solution 4

I personally use those commands to compile the ssh config:

alias compile-ssh-config='echo -n > ~/.ssh/config && cat ~/.ssh/*.config > ~/.ssh/config'
alias ssh='compile-ssh-config && ssh'
# (This will get used by other programs depending on the ~/.ssh/config)
# (If you need you can run the compile-ssh-config command via cron etc.)

or:

alias compile-ssh-config='echo -n > ~/.ssh/config-compilation && cat ~/.ssh/*.config > ~/.ssh/config-compilation'
alias ssh='compile-ssh-config && ssh -F ~/.ssh/config-compilation'
# (This is saver and won't over write an existing ~/.ssh/config file)

because:

alias ssh='ssh -F <(cat .ssh/*.config)'

does not work for me, returning:

ssh: Can't open user config file /dev/fd/63: Bad file descriptor

Hope this will be of any help.

Solution 5

I also would use cat config_* > config to generate the whole config. But I wouldn't use puppet/cfengine etc for this, if they aren't in place yet (BTW: why not use a config management system???).

I would generate a package (deb, rpm) and put it in a local repository. And in the postinst script the cat generates your config. Perhaps you also include a local folder... The advantage is, that ssh/config updates activates on a daily base while cron-apt &Co run.

Share:
53,755

Related videos on Youtube

wrangler
Author by

wrangler

Updated on September 18, 2022

Comments

  • wrangler
    wrangler over 1 year

    We have a bastion server that we use to connect to multiple hosts, and our .ssh/config has grown to over a thousand lines (we have hundreds of hosts that we connect to). This is beginning to get a little unwieldy and I'd like to know if there is a way to break the .ssh/config file up into multiple files. Ideally, we'd specify somewhere that other files would be treated as an .ssh/config file, possibly like:

    ~/.ssh/config
      ~/.ssh/config_1
      ~/.ssh/config_2
      ~/.ssh/config_3
      ...
    

    I have read the documentation on ssh/config, and I don't see that this is possible. But maybe someone else has had a similar issue and has found a solution.

    • YwH
      YwH over 11 years
      Have each user login to the bastion host with their own username. Also, what are you putting into the config file that requires an entry for each host? Can't you set some defaults that are common?
    • azmeuk
      azmeuk over 7 years
      Soon, in OpenSSH 7.3 that should be possible. bugzilla.mindrot.org/show_bug.cgi?id=1585#c25
  • wrangler
    wrangler about 12 years
    Thanks Jeff, this is a good idea. I don't know too much about Puppet or Augeas, so for the sake of keeping things as simple as possible, your solution seems best. I could break up the config into multiple configs, and create a simple script to recreate the .ssh/config file whenever one of the files is modified. I don't know how clean of a solution this is, but it does seem to do the trick and works for my purposes.
  • wrangler
    wrangler almost 8 years
    That's too cool. Look forward to this. It should finally solve this problem the right way :)
  • Camden Narzt
    Camden Narzt over 7 years
    ssh checks file permissions, I think this kind of redirect doesn't support that check.
  • Jimmy Koerting
    Jimmy Koerting over 7 years
    A nice to have option when using Perl's Net::OpenSSH Module (e.g. for multiple private key files.), where the module doesn't give all possibilities.
  • pylover
    pylover over 5 years
    Just add the Include directive at the top of the config file. I cannot figure out why it's not working at the bottom.