Estoy usando un servicio VPN externo con WireGuard en una Raspberry Pi. ¿Cómo puedo habilitar el acceso entre Raspberry Pi y mi red local?

Estoy usando un servicio VPN externo con WireGuard en una Raspberry Pi. ¿Cómo puedo habilitar el acceso entre Raspberry Pi y mi red local?

Todas las computadoras pueden conectarse entre sí a través de Avahi host.localo dirección IP. Pero tan pronto como inicio el servicio/configuración de Wireguard en Raspberry, se separa de mi red interna.

Mi red es bastante estándar, con IP dentro del 192.168.1.*rango.

¿Que tengo que hacer?

Mi configuración:

[Interface]
PrivateKey = xxxxx
Address = 10.xxxxx/32,fc00:xxxxxx/128
DNS = 193.xxxxxxx
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT

[Peer]
PublicKey = xxxxx
AllowedIPs = 0.0.0.0/0,::0/0
Endpoint = xxxxx:51820

información relacionada