1. This will show if power management is on or off...
2. Note that you can also watch the NetworkManager logging in realtime via a terminal window with
Code:
sudo journalctl -fu NetworkManager
When the connection drops you should be able to capture the relevant event in the output. This might help with debugging.
3. I haven't had to do this myself, but it is possible to set the NetworkManager logging verbosity level to debug mode from both command line or via it's configuration file (/etc/NetworkManager/NetworkManager.conf). Refer 'man networkmanager.conf'. For the latter, the following can be added...
Code:
[logging]
level=DEBUG
Note that any changes to this configuration will take effect at next boot or restart of NetworkManager...
Code:
sudo systemctl restart NetworkManager