We don't allow this in WireGuard by design. However, you can easily work around this with iptables:
$ wg set wg0 listen-port 11153 $ iptables -t nat -A PREROUTING .... -p udp --dport 53 -j REDIRECT --to-port 11153 Fill in the ... with --destination or --in-interface or whatever you want. Jason _______________________________________________ WireGuard mailing list [email protected] https://lists.zx2c4.com/mailman/listinfo/wireguard
