Hi,

On Thu, Aug 22, 2024 at 6:30 PM Lucie Scarlet <lucie@scarlet.moe> wrote:
[...]
> 4) What about journal - anything logged about networking problems?
Yes, I do see a bunch of deauthentication events:
"Received Deauthentication event, reason: 6, from_ap: true
event: disconnect-info, reason: 6"
[...]

Though I have an Intel card with iwlwifi, it appears to be the same problem as when I got my new laptop.
I fixed it by turning off the power saving as the arch wiki suggests.[1]

This is are my udev rules:

```
$ cat /etc/udev/rules.d/70-wifi-powersave.rules
ACTION=="add", SUBSYSTEM=="net", KERNEL=="wlan*" RUN+="/usr/bin/iw dev %k set power_save off"
$
```

You could try to set this up and see it it works

```
{
cat << __EOF__
ACTION=="add", SUBSYSTEM=="net", KERNEL=="wlan*" RUN+="/usr/bin/iw dev %k set power_save off"
__EOF__
} | sudo tee /etc/udev/rules.d/70-wifi-powersave.rules

$ sudo udevadm trigger
$ sudo systemctl restart iwd.service
```

[1] https://wiki.archlinux.org/title/Power_management#Network_interfaces


Best,
Matteo