diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-02-07 14:36:33 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-02-07 14:41:27 -0500 |
commit | 1d748948cf4598ae2cd96021114a9b5a361a16a8 (patch) | |
tree | 0a2f66ae15333b666886ac71b02cf1896d8e3813 /.config/ssh/config | |
parent | 865a768e44624c465e9d42c6ca91d0ef29a8e7ad (diff) |
ssh: Make build64-par work both near and far
Diffstat (limited to '.config/ssh/config')
-rw-r--r-- | .config/ssh/config | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/.config/ssh/config b/.config/ssh/config index 7bab06d..00a84b8 100644 --- a/.config/ssh/config +++ b/.config/ssh/config @@ -26,12 +26,15 @@ Host lukeshu.com User lukeshu Host build64-par - Port 22 User luke - ForwardX11 yes - ForwardX11Trusted yes -Host build64-par-far - Port 1864 HostName lukeshu.com - User luke + Port 1864 + ForwardX11 no + ForwardX11Trusted no + + Match host %h.lan. + HostName build64-par + Port 22 + ForwardX11 yes + ForwardX11Trusted yes |