5
5

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.

localhostは省略できた <- 出来ませんでしたm(_ _)m

Last updated at Posted at 2015-05-05

省略例

~/.ssh/config

~/.ssh/config
 Host srv1-8081
-    ProxyCommand ssh -NL 8081:localhost:8080 srv1
+    ProxyCommand ssh -NL 8081::8080 srv1

docker

- docker -H tcp://localhost:2376
+ docker -H tcp://:2376

autossh

  AUTOSSH="autossh -M 0 -f -o Compression=yes -NL"
- $AUTOSSH 2376:localhost:2375 srv1
- $AUTOSSH 8081:localhost:8080 srv1
+ $AUTOSSH 2376::2375 srv1
+ $AUTOSSH 8081::8080 srv1

port fowardingでLISTENしているポート一覧確認

$ netstat -anp | grep "127.0.0.1.*LISTEN.*ssh" | sort
(一部のプロセスが識別されますが, 所有していないプロセスの情報は
表示されません。それら全てを見るにはルートになる必要があります.)
tcp        0      0 127.0.0.1:2376          0.0.0.0:*               LISTEN      19845/ssh      
tcp        0      0 127.0.0.1:8081          0.0.0.0:*               LISTEN      2741/ssh
  • 2376, 8081 ポートでLISTENしていることがわかる。
5
5
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
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?