diff options
author | David Thompson <davet@gnu.org> | 2015-06-09 20:33:40 -0400 |
---|---|---|
committer | David Thompson <davet@gnu.org> | 2015-06-09 20:33:40 -0400 |
commit | 97529de2f54a0aaa7eb2ecb4a23dd94b43d9639d (patch) | |
tree | 8e0e578c2168ea71680c14188d154be66e460ec1 | |
parent | d914cc2483dedf78f678bb1874a2643dc5354a93 (diff) |
ssh: Add new hosts.
-rw-r--r-- | dotfiles/.ssh/config | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/dotfiles/.ssh/config b/dotfiles/.ssh/config index 24635c7..87f8922 100644 --- a/dotfiles/.ssh/config +++ b/dotfiles/.ssh/config @@ -1,8 +1,17 @@ Host dthompson - Hostname dthompson.us + HostName dthompson.us + User dave + +Host aigis + HostName 192.168.1.222 User dave Host vhl - Hostname hydra.vistahl.com + HostName hydra.vistahl.com User dthompson ForwardAgent yes + +Host chef + HostName 192.168.1.172 + User root + ForwardAgent yes |