minor fixes H&D

Former-commit-id: c3236b91b4b6a0f37af2d4da4955c711dd4ace43
This commit is contained in:
fbsanchez 2019-02-15 16:02:55 +01:00
parent c62c01c4a0
commit 45fd528e38
2 changed files with 5 additions and 3 deletions

View File

@ -276,10 +276,9 @@ class HostDevices extends Wizard
if ($task !== false) {
$this->task = $task;
$this->msg = __('This network scan task has been already defined. Please edit it or create a new one.');
return false;
}
$this->msg = __('This network scan task has been already defined. Please edit it or create a new one.');
return false;
}
if (isset($this->task['id_rt']) === false) {

View File

@ -1500,6 +1500,9 @@ sub snmp_get_command {
my $command = "snmpwalk -M/dev/null -r$self->{'snmp_checks'} -t$self->{'snmp_timeout'} -v$self->{'snmp_version'} -On -Oe ";
if ($self->{'snmp_version'} eq "3") {
if ($self->{'community'}) { # Context
$command .= " -N $self->{'community} ";
}
$command .= " -l$self->{'snmp_security_level'} ";
if ($self->{'snmp_security_level'} ne "noAuthNoPriv") {
$command .= " -u$self->{'snmp_auth_user'} -a$self->{'snmp_auth_method'} -A$self->{'snmp_auth_pass'} ";