Raspberry Pi에서 WireGuard와 함께 외부 VPN 서비스를 사용하고 있습니다. Raspberry Pi와 로컬 네트워크 간의 액세스를 활성화하려면 어떻게 해야 합니까?

Raspberry Pi에서 WireGuard와 함께 외부 VPN 서비스를 사용하고 있습니다. Raspberry Pi와 로컬 네트워크 간의 액세스를 활성화하려면 어떻게 해야 합니까?

host.local모든 컴퓨터는 Avahi 또는 IP 주소를 통해 서로 연결할 수 있습니다 . 하지만 라즈베리에서 wireguard 서비스/구성을 시작하자마자 내부 네트워크에서 분리됩니다.

내 네트워크는 꽤 표준적이며 192.168.1.*범위 내에 IP가 있습니다.

어떻게 해야 하나요?

내 구성:

[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

관련 정보