0
通常我使用Python,但我有一個Perl項目。那麼:將snmpwalk的結果指向字符串的過程是什麼?我想搜索字符串以查看它是否包含較小的字符串。perl snmpwalk到字符串
這是我到目前爲止有:
foreach (@list){
chomp($_);
system("snmpwalk -v 2c -c community-string $_ oid-hidden");
if (index($string, $substring) != -1) {
print "'$string' contains '$substring'\n";
}
}
我會推薦使用一個模塊,或者[Net :: SNMP](https://metacpan.org/pod/Net: :SNMP),純Perl模塊或[SNMP.pm](http://www.net-snmp.org/docs/perl-SNMP-README.html),Perl綁定到net-snmp庫。 – ThisSuitIsBlackNot