Welcome to Headwind MDM Q&A, where you can ask questions and receive answers from other members of the community.

Please do not post bug reports, missing feature requests, or demo inquiries. If you have such an inquiry, submit a contact form.

0 votes

I would like to know if we can tweak the setting to make the network remote better for Headwind Remote. 

Actually network is ok but it always say like this, if we have somewhere to tweak this. 

by

1 Answer

0 votes
Yes, you can tweak this.
Please find a file web-admin/js/session-monitoring.js, and find the following line (line 18, but the line number may be different in your code):
                    if (self.lastPongReceivedFrom + self.pingIntervalDelayMillis*2 < currentTimestamp) {
                        ui.showWarning(`Network problems`, 'Device management', null, null, self.pingIntervalDelayMillis);
                    }
Replace 2 to whatever you like better, for example, 5. This will increase tolerance to slow delivery of UDP packets.
After updating the code, run the command:
ansible-playbook deploy/pre_webadmin.yaml
This command should compile the new JavaScript code and restart the service to apply changes.
If this command won't work as appropriate, use the common restart command:
./install.sh
by (34.3k points)
...