On Tue, Jul 28, 2020 at 05:33:43PM -0400, Rich Brown wrote: > AllowedIPs is the set of addresses that your WireGuard peer will send across > the tunnel to its peer.
The definition is close, but not precise. Assuming things haven't changed much: AllowedIPs specifies the set of addresses that your WireGuard host will send across the tunnel to its peer, and accept from the peer. AllowedIPs is not a set of addresses, but of networks, wherein the peer with most specific match wins - as in a routing table. Also, beware negations might not do what you expect. Routing should work like so: When a linux system is sending a packet, it first consults the system routing table to choose the appropriate device. Then, if the outgoing device is a wireguard tunnel, it consults the routing table of the WG device to choose a peer. WG device's routing table is constructed from peers' AllowedIPs. When a peer is selected, the packet is encapsulated and sent to the peer's latest enpoint. Then the system routing table is again consulted, and hopefully a different outgoing device is selected. Note that the routing table is in fact a tree where the most specific match wins - both the system one and wireguard's. Also note that overlapping networks are allowed (e.g. 0.0.0.0/0, and 10.0.0.0/8), but identical networks in a single WG device are not allowed as neither would be more specific. The system routing table would throw an error on such attempts, but wireguard silently discards the old route keeping only the last one, so you need to be careful here. Such is basic routing. In more complicated scenarios: - routing rules select the routing table - iptables/nftables can change addresses, select devices, even clone packets - namespaces can nearly create an isolated network host/partition and you can also have xfrm encapsulation, maybe vdevs do something.. All of this is either before the packet enters wireguard device (where wireguard routing is done), and/or after the packet is encapsulated/decapsulated (encrypted/decrypted) and processed again. When a packet is received, the system may also check the routing table for the source/peer address, and if the source device doesn't match the routing table entry, the packet would be discarded - so called reverse path filtering. Initial lookup of the encapsulated packet source in the system routing table is governed by the rp_filter setting. When a packet is processed by wireguard, the inner, decapsulated source is unconditionally checked for in the device routing table and packet discarded if peer doesn't match - i.e. the peer's allowed IPs must match, and also be the single most specific match. After wireguard decapsulation, the inner packet is again processes by the system, possibly checking the ips. Regards, Ivan
