2007-06-05 Sancho Lerena <slerena@gmail.com>
* pandora_network.pm: Small bug that causes some hosts to do not reply at ICMP request with a small payload (1 byte). Now uses by default 32 bytes per reply. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@486 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
0c6bda173f
commit
026ffbece4
|
@ -1,3 +1,9 @@
|
|||
2007-06-05 Sancho Lerena <slerena@gmail.com>
|
||||
|
||||
* pandora_network.pm: Small bug that causes some hosts to do not reply
|
||||
at ICMP request with a small payload (1 byte). Now uses by default
|
||||
32 bytes per reply.
|
||||
|
||||
2007-06-04 Raúl Mateos <rmateos@netscape.net>
|
||||
|
||||
* pandora_server, pandora_network, pandora_snmpconsole: Added FMS text.
|
||||
|
|
|
@ -333,8 +333,8 @@ sub pandora_ping_icmp {
|
|||
if (!defined($dest)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
$p = Net::Ping->new("icmp",$l_timeout);
|
||||
// Some hosts don't accept ICMP with too small payload. Use 32Bytes
|
||||
$p = Net::Ping->new("icmp",$l_timeout,32);
|
||||
$result = $p->ping($dest);
|
||||
|
||||
# Check for valid result
|
||||
|
|
|
@ -80,7 +80,7 @@ reconserver 1
|
|||
|
||||
# Network timeout (in seconds) for timeout in network connections for Network agents
|
||||
|
||||
network_timeout 8
|
||||
network_timeout 9
|
||||
|
||||
# Server keepalive (in seconds)
|
||||
|
||||
|
|
Loading…
Reference in New Issue