Hi,<br><br>I believe the redback_telnet in checkrad.pl has a small bug.<br><br>Original code starting at line 1338<br><br><div class="line" id="LC1338">#Ask the question</div><div class="line" id="LC1339">    @lines = $t->cmd(String => "show subscribers active</div>
<div class="line" id="LC1340">$user\@$context");</div><div class="line" id="LC1341">    if ($lines[0] =~ /subscriber $user\@$context/ ) {<br><br>Should be<br><br><div class="line" id="LC1338">#Ask the question</div><div class="line" id="LC1340">
    @lines = $t->cmd(String => "show subscribers active $user\@$context");</div><div class="line" id="LC1341">    if ($lines[0] =~ /subscriber $user\@$context/ ) {</div><br></div>ie the $user\@$context needs to be on the same line, at least with our redback.<br>
<br>Regards,<br><br>Rick<br><br>