使用 wireguard 客户端作为另一个(docker 中的服务器)的默认网关

使用 wireguard 客户端作为另一个(docker 中的服务器)的默认网关

和这篇文章几乎一样 Wireguard 使用一个客户端作为另一个客户端的网关 但是我在 docker 中有 wireguard,所以我不知道如何解决我的路由问题

peer1 --- wireguard_server(在 docker 中) --- peer2 --- internet

peer1:10.14.1.2 wireguard_server:10.14.1.1 peer2:10.14.1.3

我的 docker-compose.yml

---
version: "2.1"
services:
  wireguard:
    image: lscr.io/linuxserver/wireguard:latest
    container_name: wireguard
    cap_add:
      - NET_ADMIN
      - SYS_MODULE
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Nicosia
      - SERVERURL=auto #optional
      - SERVERPORT=51820 #optional
      - PEERS=2 #optional
      - PEERDNS=auto #optional
      - INTERNAL_SUBNET=10.14.1.0 #optional
      - ALLOWEDIPS=0.0.0.0/0 #optional
      - PERSISTENTKEEPALIVE_PEERS=all #optional
      - LOG_CONFS=true #optional
    volumes:
      - /root/wireguard/config:/config
      - /lib/modules:/lib/modules #optional
    ports:
      - 51820:51820/udp
    sysctls:
      - net.ipv4.conf.all.src_valid_mark=1
    restart: unless-stopped

我在 wireguard_server 上执行的操作

docker exec -it wireguard bash
ip rule add from 10.14.1.2 lookup 200
ip route add default dev wg0 table 200
sysctl -w net.ipv4.ip_forward=1 - execute on host, not in docker

之后我将 wg0.conf 更改为 peer2

AllowedIPs = 0.0.0.0/5,8.0.0.0/7,10.14.1.3/32,11.0.0.0/8,12.0.0.0/6,16.0.0.0/4,32.0.0.0/3,64.0.0.0/2,128.0.0.0/1

我没有看到对等点 2 上有任何来自对等点 1 的流量

相关内容