Src port 7932???
Usually are port 68…
It’s a scan of some form…
The wireguard is the only tunnel?
Server???
But run a DHCP Client?!
There can be various types of VPNs,
but in principle there are mainly two: L2 VPN and L3 VPN.
In case of L2 VPN, the interface of the VPN is like a network cable, it connects the two networks transparently when using a bridge.
In case of L3 VPN, the interface only carries IP traffic from one point to another, and must be mapped to routes.
Over L2 VPN normally anything broadcast, such as DHCP, from one network is communicated to the other.
Over L3 VPN there is normally no broadcast traffic, and some services such as DHCP do not work.
If there is no need to see both networks as if they were a large LAN, but it is enough that the IPs can be reached (via local DNS or “by hand”),
the L3 VPNs are more performing because they have to pass less data between the nets, allowing for a higher MTU (and therefore MSS).
The MTU (and MSS) has to be reduced in any case anyway,
because whatever VPN you use adds an overhead that reduces the classic MTU of 1500*** (MSS 1460) to a smaller value
(for example, if I remember correctly, wireguard uses ~80bytes, so the wireguard MTU must be at least 1420 (and the MSS max 1380))
[*** some provider can provide more, but must be considered both sides]
If you use L2TP over wireguard, you have to subtract other 40 bytes,
so for the other devices the L2 MTU usable on that tunnel must be 1500 - 80 - 40 = L2 MTU of 1380 (and for IP, L3 MTU 1366 and max MSS of 1326)
(I wrote from memory, I hope that the counts are right.)