blob: dc4f5fedc89d7c7781cc3f5c259c9f2dd8ec43c8 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
 | # vim: set filetype=sshconfig :
# This is a useful option when the OS(host) changes temporarily.
    # UserKnownHostsFile /dev/null
Host pavilion1local
    HostName 192.168.8.114
    User farzat
    RemoteForward ${HOME}/.clipper.sock ${HOME}/.clipper.sock
    ForwardAgent yes
    IdentitiesOnly yes
    IdentityFile ${XDG_DATA_HOME}/ssh_pub_keys/farzat-pavilion1.pub
Host matebook1local
    HostName 192.168.8.172
    User farzat
    RemoteForward /home/farzat/.clipper.sock ${HOME}/.clipper.sock
    ForwardAgent yes
    IdentitiesOnly yes
    IdentityFile ~/.dotfiles/ssh/pub_keys/farzat-matebook1.pub
Host spectre1local
    HostName 192.168.8.181
    User farzat
    RemoteForward /home/farzat/.clipper.sock ${HOME}/.clipper.sock
    ForwardAgent yes
    IdentitiesOnly yes
    IdentityFile ~/.dotfiles/ssh/pub_keys/farzat-spectre1.pub
Host iiyama1local
    HostName 192.168.8.111
    User farzat
    RemoteForward /home/farzat/.clipper.sock ${HOME}/.clipper.sock
    ForwardAgent yes
    IdentitiesOnly yes
    IdentityFile ~/.dotfiles/ssh/pub_keys/farzat-iiyama1.pub
Host asus1local
    HostName 192.168.8.112
    User farzat
    RemoteForward /home/farzat/.clipper.sock ${HOME}/.clipper.sock
    ForwardAgent yes
    IdentitiesOnly yes
    IdentityFile ~/.dotfiles/ssh/pub_keys/farzat-asus1.pub
 |