linux – 是否可以在ssh别名中作为变量访问主机以扩展主机名?
作者:互联网
我正在尝试在我的.ssh / config文件中创建一个SSH别名,该文件将匹配任何以.vpn结尾的主机并将主机名扩展为[name] .vpn.domainname.com
我可以通过将主机指定为Host * .vpn来匹配任何.vpn域,但是我在扩展域时遇到了问题.
理想情况下,我想要的东西:
Host *.vpn
HostName $HOST.domainname.com
我看了一下,但我找不到像这样的SSH别名的任何例子.
http://collectiveidea.com/blog/archives/2011/02/04/how-to-ssh-aliases/
http://osxdaily.com/2011/04/05/setup-ssh-config-fie/
这种别名是否可以使用SSH别名?如果是这样,怎么办呢?如果没有,任何其他想法我怎么能达到这个结果?
我真的想要不再输入完整的域名,并且不必为vpn上的每台机器添加50个左右的别名.
解决方法:
从ssh_config(5)手册页:
If the hostname
contains the character sequence ‘%h’, then this will be replaced
with the host name specified on the commandline […].
Host *.vpn
HostName %h.domainname.com
标签:linux,ssh,configuration,configuration-files,config 来源: https://codeday.me/bug/20190826/1726827.html