Updates sat. compatibility
This commit is contained in:
parent
e249233205
commit
bb1ad4d2a9
|
@ -1421,6 +1421,8 @@ sub scan_subnet($) {
|
|||
# By default 200, (20 * 10)
|
||||
my $host_block_size = $self->{'block_size'};
|
||||
|
||||
$host_block_size = 50 unless defined($self->{'block_size'});
|
||||
|
||||
# The first 50% of the recon task approx.
|
||||
my $step = 25.0 / scalar(@subnets) / (($total_hosts / $host_block_size)+1);
|
||||
my $subnet_step = 50.0 / (($total_hosts / $host_block_size)+1);
|
||||
|
|
|
@ -1453,6 +1453,8 @@ sub pandora_block_ping($@) {
|
|||
my ($pa_config, @hosts) = @_;
|
||||
my ($cmd, $output);
|
||||
|
||||
return () if is_empty(@hosts);
|
||||
|
||||
if (-x $pa_config->{'fping'}) {
|
||||
# fping timeout in milliseconds
|
||||
$cmd = $pa_config->{'fping'} . " -a -q -t " . (1000 * $pa_config->{'networktimeout'}) . " " . (join (' ', @hosts));
|
||||
|
|
Loading…
Reference in New Issue