Giter Site home page Giter Site logo

ssh-forward-unix-socket's Introduction

ssh-forward-unix-socket

Forward a Unix socket over SSH

Examples

In all examples, <host> represents a remote host.

Forward a remote Docker socket

sudo forward_socket \
  --local_user $(id -un) \
  "ssh -i $HOME/.ssh/id_rsa $(id -un)@<host>" \
  /var/run/docker.sock
  • Sudo so that you can create the local /var/run/docker.sock
  • SSH into your host, with your current user's username, and your id_rsa (can't just use , because the sudo will ssh as root@<host> and use root's keys)
  • Listen at /var/run/docker.sock (the same as the remote)
  • Set the listen socket's owner to your current user

Forward a remote Docker socket, with connection pool

sudo forward_socket
  --local_user $(id -un) \
  "ssh -i $HOME/.ssh/id_rsa -o ControlMaster auto -o ControlPersist 600 -o ControlPath docker_ssh.sock $(id -un)@<host>" \
  /var/run/docker.sock

Mostly the same as the forwarding above, except:

  • ControlMaster auto adds connection pooling
  • ControlPersist 600 sets the connection pool timeout to 600
  • ControlPath docker_ssh.sock creates the shared SSH socket docker_ssh.sock

ssh-forward-unix-socket's People

Contributors

rickycook avatar

Stargazers

Jamie Mair avatar Arbal avatar  avatar Jörn Gersdorf avatar  avatar Byungho avatar Jiří Altman avatar Vangie Du avatar Mikal avatar Brian avatar Salad Tea avatar Valdis Adamsons avatar Chris avatar Bob Blanchett avatar Sam avatar

Watchers

James Cloos avatar  avatar

Forkers

mikalv

ssh-forward-unix-socket's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.