2
3

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 5 years have passed since last update.

CygwinからProxy経由でリモートサーバーにsshログインする

Posted at

メモ。

参考

環境

  • Windowsにcygwinをインストールしており、そこからProxy(HTTP)経由でリモートサーバーにアクセスしたい
  • Proxyのホストはproxy.abc.def.jp、ポートは18080とする
  • リモートログインしたいサーバーホスト名はremote-host、ユーザー名はec2-user、認証は公開鍵認証で~/.ssh/Hogefuga.pemとする

やってみる

  • Cygwinでconnect-proxyコマンドをインストールする。apt-cygからでもsetup.exeを開いてGUIでやるでもOK
  • ~/.ssh/configに以下のように設定
~/.ssh/config
Host *
  ProxyCommand connect-proxy -H proxy.abc.def.jp:18080 %h %p

Host localhost 127.0.0.1
  ProxyCommand none

あとは以下のようにすればsshログイン可能。

$ssh ec2-user@remote-host -i ~/.ssh/HogeFuga.pem

TeraTermでもGUIで設定すればリモートサーバーにログインできたのでお好みで。

2
3
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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?