DiscoPingHelperSchema.cfg configuration file
The DiscoPingHelperSchema.cfg configuration file defines how devices are to be pinged.
Database table used
The DiscoPingHelperSchema.cfg configuration file can be used to configure inserts into the pingHelper.configuration database table.
In this example configuration of the DiscoPingHelperSchema.cfg configuration file, the parameters specify to:
- Use 20 threads of process execution.
- Wait a maximum of 250 ms for a reply from a device.
- Retry unresponsive devices a maximum of five times.
- Wait 50 ms between pinging devices in a subnet.
- Not use broadcast or multicast pinging.
insert into pingHelper.configuration
(
m_NumThreads,
m_TimeOut,
m_NumRetries,
m_InterPingTime,
m_Broadcast,
m_Multicast
)
values
(
20, 250, 5, 50, 0, 0
);