summaryrefslogtreecommitdiff
path: root/misc/dotfiles/ssh/config.j2
blob: f86927e5065a2d3f7299bb68353407b01492e30f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Host *
{% if ansible_facts['os_family'] == "Darwin" %}
    # macOS specific settings.
    UseKeychain yes
    AddKeysToAgent yes
{% endif %}

Host gate
    Hostname gate.ilvokhin.com
    ForwardAgent yes

Host sun mail
    Hostname %h.ilvokhin.com

# Moscow machines behind NAT.
Host flame
    ProxyJump gate
    Hostname 10.0.0.2
    ForwardAgent yes

Host water
    ProxyJump gate
    Hostname 10.0.0.3
    ForwardAgent yes