0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

PuTTYでProxyJumpする

Last updated at Posted at 2023-01-08

はじめに

踏み台経由してsshする際にはOpenSSHのProxyJumpを使うと便利です。

で、WindowsのGUI sshクライアントであるPuTTYでもやりたいので調べたらできたのでまとめておく。

やりかた

PuTTY 0.77以降を使い、プロキシ設定で「SSH to proxy and use port forwarding」を選ぶ。
image.png
ranvisさんの日本語化バージョンだと「プロキシにSSH接続してポート転送」。
image.png

ドキュメントだと以下のようにに書かれてる。

‘SSH to proxy and use port forwarding’ causes PuTTY to use the secondary SSH connection to open a port-forwarding channel to the final destination host (similar to OpenSSH's -J option).

4.16.1 Setting the proxy type

プロキシホスト名についてもOpenSSHのProxyJumpと同様に、PuTTYの保存済みセッション名を参照できます。

The ‘Proxy hostname’ field will be interpreted as the name of a PuTTY saved session if one exists, or a hostname if not.

4.16.1 Setting the proxy type

Jump先(踏み台ホスト)でlocalhostに繋ぐ場合

大抵の場合は踏み台hostから別のホストへ接続しますが、踏み台ホストでlistenされてるポートへ接続する場合もあります1。このとき、「Consider proxying local host connections(ローカルホストからもプロキシ接続を行う)」をCheckしないとプロキシ設定を使わず直接繋ぎに行こうとします。

Connections to the local host (the host name localhost, and any loopback IP address) are never proxied, even if the proxy exclude list does not explicitly contain them. It is very unlikely that this behaviour would ever cause problems, but if it does you can change it by enabling ‘Consider proxying local host connections’.

4.16.2 Excluding parts of the network from proxying

踏み台先で接続するホスト名がプロキシ設定に関係するんかいな、と思ってソースを見ると割りと処理の頭でlocalhostかどうかを見てる実装になってた。

Reference

Appendix: OpenSSHのProxyJumpについて

  1. NAPT配下ネットワークにいるRasPiからインターネット上に存在するVPSへssh reverse tunnel掘ると、VPS上のlocalhostでRasPiに繋がるトンネル入り口がlistenすることになります。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?