in reply to Re^2: For loop and Sub Routines
in thread For loop and Sub Routines

The call should read:
checkStatus($router->{routerName}, $ssh);
ALso, it is more common (and lazier, and more idiomatic) to code the passed parameters this way:
sub checkStatus { my ($routerName, $ssh) = @_; ...
This allows you to add parameters easily, and makes parameter positions visually identifiable without having to examine indexes.

             My goal ... to kill off the slow brain cells that are holding me back from synergizing my knowledge of vertically integrated mobile platforms in local cloud-based content management system datafication.