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

Turning the power management off will improve your ping ms, but if it actually improves performance for general tasks is not yet determined at the time of writing.

You can also try doing the same thing on the connecting machine. To make the setting persistent and if your machine uses systemctl and NetworkManager, 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