Skip to content

Network

Gustav Bernpaintner edited this page Aug 16, 2023 · 9 revisions

Improving Latency

If you require a lower latency connection to ARI you can try turning off network power management on ARI:

sudo iwconfig wlan0 power off

To check the status of the power management, run

iwconfig wlan0

This change is not persistent on ARI. There might be some daemon that handles it, but it doesn't seem to be NetworkManager.

You can also try doing the same thing on the connecting machine. If you want to make the setting persistent and your machine uses the NetworkManager service, you can edit /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf and change it (requires root) from

[connection]
wifi.powersave = 3

to

[connection]
wifi.powersave = 2

To make the new setting take effect immediately, run

sudo systemctl restart NetworkManager

Clone this wiki locally