CygwinからProxy経由でリモートサーバーにsshログインする
メモ。
参考
環境
- 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
- 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/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で設定すればリモートサーバーにログインできたのでお好みで。
Author And Source
この問題について(CygwinからProxy経由でリモートサーバーにsshログインする), 我々は、より多くの情報をここで見つけました https://qiita.com/toshihirock/items/04dec282e324a59fce77著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .