diff options
author | John Ankarström <john@ankarstrom.se> | 2021-07-16 08:40:37 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-07-16 08:40:37 +0200 |
commit | 499381b465bd7c3e0f767f34f2bfe0873d01a56b (patch) | |
tree | 5c8bb903961ac41bbb9498d2e11c7ff1c6c151ea | |
parent | bd3126b89b0b9ba0ca540ed11ceb19e1e3058791 (diff) | |
download | lbsd-499381b465bd7c3e0f767f34f2bfe0873d01a56b.tar.gz |
~john/.ssh/config: Use IP addresses instead of domain names
-rw-r--r-- | home/john/.ssh/config | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/home/john/.ssh/config b/home/john/.ssh/config index 75482ed..98f5f30 100644 --- a/home/john/.ssh/config +++ b/home/john/.ssh/config @@ -1,9 +1,13 @@ AddKeysToAgent yes Host r -HostName ankarstrom.se +HostName 172.105.86.7 User root Host j -HostName ankarstrom.se +HostName 172.105.86.7 User john + +Host p +HostName 71.19.150.220 +User root |