Brak opisu

dependabot[bot] a9c652048a build(deps): bump alpine from 3.18.3 to 3.18.4 (#68) 7 miesięcy temu
.github 8880273edf build(deps): bump docker/build-push-action from 4.2.0 to 5.0.0 (#66) 8 miesięcy temu
CHANGELOG.md e40e029114 sshd: no longer accept RSA keys < 2048 bits for authentication 1 rok temu
Dockerfile a9c652048a build(deps): bump alpine from 3.18.3 to 3.18.4 (#68) 7 miesięcy temu
Makefile e4c6cd4cd0 added makefile to facilitate building, tagging & pushing container images 2 lat temu
README.md 93febe8d67 readme samples: consistently use port 2222 4 lat temu
docker-compose.yml 86dbe52ebe docker-compose: mount user config including authorized_keys 4 lat temu
entrypoint.sh 245f093c25 replace `passwd -u` to avoid empty passwords 4 lat temu
sshd_config e40e029114 sshd: no longer accept RSA keys < 2048 bits for authentication 1 rok temu

README.md

Docker: OpenSSH-Server Restricted to TCP Forwarding 🐳

Docker Hub: https://hub.docker.com/r/fphammerle/ssh-bastion

Example: Share Web Server

bastion $ docker run --name ssh-bastion -p 2222:22 -e USERS=alice,bob fphammerle/ssh-bastion
bastion $ docker cp alice-keys ssh-bastion:/home/alice/.ssh/authorized_keys
bastion $ docker cp bob-keys ssh-bastion:/home/bob/.ssh/authorized_keys
alice $ ssh -N -R 28080:localhost:8080 -p 2222 bastion
bob $ ssh -N -L 8081:localhost:28080 -p 2222 bastion
bob $ curl http://localhost:8081/hello_bob.html

Example: SSH Jump Host

$ docker run --name ssh-bastion \
    --publish 2222:22 --env USERS=alice,bob \
    --volume bastion-host-keys:/etc/ssh/host_keys \
    --volume alice-ssh-config:/home/alice/.ssh:ro \
    --volume bob-ssh-config:/home/bob/.ssh:ro \
    --init --rm \
    fphammerle/ssh-bastion
$ ssh -N -R 22221:localhost:22 -p 2222 alice@bastion
$ ssh -J bob@bastion:2222 -p 22221 localhost

Docker Compose 🐙

  1. git clone https://github.com/fphammerle/docker-ssh-bastion
  2. Adapt $USERS and volumes in docker-compose.yml
  3. docker-compose up