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