gpt4 book ai didi

perl - 如何使用 perl 查找 IP 地址是否可 ping 通?

转载 作者:行者123 更新时间:2023-12-01 04:57:15 26 4
gpt4 key购买 nike

如何确定 IP 地址是否可 ping 通?另外,如何使用 perl 脚本找到可 ping 的 IP 是静态的还是动态的?

最佳答案

看看 Net::Ping模块;

#!/usr/bin/env perl
#
use strict;
use warnings;

use Net::Ping;

my $ip_address = shift || die "Need an IP address (or hostname).\n";

my $p = Net::Ping->new();
if ( $p->ping($ip_address) ) {
print "Success!\n";
}
else {
print "Fail!\n";
}

确定 IP 地址是动态的还是静态的需要做更多的工作。看看thisthis发布。

关于perl - 如何使用 perl 查找 IP 地址是否可 ping 通?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13452799/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com