gpt4 book ai didi

linux - 如何将此 ssh 命令转换为 ssh_config 文件?

转载 作者:太空宇宙 更新时间:2023-11-04 09:31:00 26 4
gpt4 key购买 nike

我正在尝试将此 ssh 命令转换为我的 ssh_config。 ssh_config 中 -L 的等效项是什么?我以为是 localForward,但从结果来看,我发现它看起来不是那样的。

SSH 命令

sudo ssh -i ~/.ssh/mySSHkey -L 81:<IP1>:81 -L 9200:<IP1>:9200  user@myhost.domain.com

ssh_config 条目

Host logstash
Hostname <IP1>
Port 81
# ForwardX11 yes
LocalForward 81 <IP1>:81
LocalForward 9200 <IP1>:9200
User username
IdentityFile ~/.ssh/mySSHkey
ServerAliveInterval 30
ServerAliveCountMax 120
# LogLevel DEBUG3

最佳答案

Host tunnel
HostName database.example.com
IdentityFile ~/.ssh/john.example.key
LocalForward 9906 127.0.0.1:3306
User john

相当于:

ssh -f -N -L 9906:127.0.0.1:3306 john@database.example.com

有了新的配置,你可以运行:

ssh -f -N tunnel

来源:http://nerderati.com/2011/03/17/simplify-your-life-with-an-ssh-config-file/

关于linux - 如何将此 ssh 命令转换为 ssh_config 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31412006/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com