無効なホスト名を渡そうとすると、コードが無限ループに陥ります。
my $s = Net::Appliance::Session->new({
personality => 'ios',
transport => 'SSH',
host => $ip
});
このバグを克服する方法はありますか?
編集: これが私の完全なコードです: サブルーチンを使用して、ネットワーク デバイスの構成ファイルをダウンロードします。download_config で無効な IP アドレスを渡すと、無限ループに陥ります。
sub download_config
{
my ($ip) = @_;
my $s = Net::Appliance::Session->new({
personality => 'ios',
transport => 'SSH',
host => $ip,
Timeout => 1
});
$s->set_global_log_at('debug'); # maximum debugging
eval {
$s->connect({ username => $username, password => $password });
$s->begin_privileged({ password => $enable_password });
#get hostname to set the file name
$hostname_result = $s->cmd('sh run | inc hostname');
$hostname_result =~ m/hostname (.*)/;
$hostname = $1;
#download the file
my @running_config = $s->cmd('sh run');
@running_config = @running_config[ 2 .. (@running_config -1)];#remove header and footer of the file
open(FH, "> temp/".$hostname.".txt") or die("Cannot open config file : $!");
print FH @running_config;
close FH;
$s->end_privileged;
};
if ($@) {
#when the login details are wrong
print redirect('../../na/unauthorised.html');
}
$s->close;
}