• Martin Husemann [2024-01-18 10:46]: > On Thu, Jan 18, 2024 at 10:23:11AM +0100, Kirill Miazine wrote: > > Does your custom kernel provide some wg devices initially? > > No, but "ifconfig -C" lists wg as a clonable device, so /etc/ifconfig.wg0 > is loaded.
Ah, of course! I overlooked that one. So the problem was that if_wg wasn't loaded when system booted, but it was added when ifconfig wgN create was getting called. So I added if_wg to modules.conf, and now it works as I thought it should. Thanks for the pointers! > Martin