How to force DAgents to refresh their connections with the GSS server.
GSS 3.x
When the DAgent drops its connection, go to Start > Control Panel > Altiris Deployment Server > Options > General. Check the option Reset Inactive client connections and set the schedule by clicking on Schedule. If you have a Router or Switch that Drops the connection based on Time-to-live (TTL) from the DAgent, then it is best to set this 1 hour prior to the time set on the Routers or Switches.
If you have changed all the DAgent Refresh connection to zero using the Remote agent installer and you have WOL proxy DAgent . Run the query below to find the DAgent with this setting before you disable all your WOL.
The following query will return the Names and IP addresses of WOL Proxies.
-- SQL Query BeginSELECT c.computer_name, d.ip_addressFROM aclient_prop a INNER JOINcomputer c ON a.computer_id = c.computer_id INNER JOINcomputer_display d ON a.computer_id = d.computer_idWHERE a.wol_proxy = 1-- SQL Query End
To verify the DAgent have Refresh connection enable.
-- SQL Query Begin SELECT computer_nameFROM aclient_prop a, computer cWHERE a.use_hard_timeout = 1 AND a.computer_id = c.computer_id-- SQL Query End