1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-24 08:52:31 +02:00
dockerfiles/hans
2016-10-28 22:53:12 +08:00
..
systemd add hans systemd unit 2016-10-28 22:53:12 +08:00
docker-compose.yml add hans 2016-10-28 22:24:03 +08:00
Dockerfile add hans 2016-10-28 22:24:03 +08:00
README.md add hans 2016-10-28 22:24:03 +08:00

hans

Hans makes it possible to tunnel IPv4 through ICMP echo packets, so you could call it a ping tunnel.

docker-compose.yml

hans:
  image: vimagick/hans
  environment:
    - NETWORK=10.1.2.0
    - PASSWORD=password
  net: host
  privileged: yes
  restart: always

Server Setup

$ docker-compose up -d

Client Setup

# Run Client Program
$ hans -f -c 1.2.3.4 -p password

# Access Server Directly
$ ip route add 1.2.3.4 via 192.168.1.1

# Change Default Route (Method A)
$ ip route change default via 10.1.2.1

# Change Default Route (Method B)
$ ip route add 0.0.0.0/1 dev tun0
$ ip route add 128.0.0.0/1 dev tun0