日々精進

新しく学んだことを書き留めていきます

2014-09-24から1日間の記事一覧

SSHを通さないProxy環境にあるMacからEC2などの外部サーバにSSHでログインする

Mac

EC2に443ポート経由でログインする場合は以下のようにする。 ・Macで以下を行う ・corkscrewをインストール brew install corkscrew ・~/.ssh/configに以下のようにHostを追加 Host hostname User ec2-user Port 443 Hostname <hostaddress> IdentityFile ~/.ssh/private_</hostaddress>…