diff --git a/fhem/FHEM/Blocking.pm b/fhem/FHEM/Blocking.pm index deb1e1632..1840acef1 100644 --- a/fhem/FHEM/Blocking.pm +++ b/fhem/FHEM/Blocking.pm @@ -38,7 +38,7 @@ BlockingCall($$@) foreach my $d (sort keys %defs) { my $h = $defs{$d}; next if(!$h->{TYPE} || $h->{TYPE} ne "telnet" || $h->{SNAME}); - next if($attr{$d}{SSL} || $attr{$d}{password}); + next if($attr{$d}{SSL} || $attr{$d}{password} || $attr{$d}{allowfrom}); next if($h->{DEF} =~ m/IPV6/); $telnetDevice = $d; last;