有谁知道使用 localhost 参数创建 ssh 别名的最佳方法是什么?我搜索的所有内容仅包括主机、主机名等。例如:
Host example2
Hostname example.com
User exampleuser
IdentityFile ~/.ssh/another_ssh.identity
我想在 ~/.ssh/config 文件中创建一个快捷方式,其别名为
ssh -L 9999:localhost:8888 [email protected]
答案1
您正在寻找LocalForward
,就您的情况而言
Host example2
Hostname myserver.com
User user
LocalForward 9999 localhost:8888