- 论坛徽章:
- 3
|
20可用积分
想尝试复原tracert的结果数据,但是dump出来以后不知道怎么弄。。
要取的信息是hops里面的信息。
程序代码如下:- #!/usr/bin/perl
- use Data::Dumper;
- use Net::Traceroute::PurePerl;
- my $t = new Net::Traceroute::PurePerl(
- host => 'www.baidu.com',
- debug => 0,
- query_timeout => 1,
- packetlen => 40,
- concurrent_hops => 2,
- protocol => 'udp', # Or icmp
- );
- $t->traceroute;
- print $acb;
- print Dumper($t->{'hops'});
- #@results=$t->pretty_print;
- #@results=split(/\n/,$t->pretty_print);
- #foreach my $res (@results){
- # print "aaaaaaaaaaaaa:$res\n";
- #}
- # max_ttl => 100,
复制代码 结构是:[code]Net::Traceroute: urePerl=HASH(0x1419c70)$VAR1 = bless( {
'_local_port' => 46300,
'query_timeout' => '1',
'protocol' => 'udp',
'packetlen' => '40',
'max_ttl' => '30',
'trace_program' => 'traceroute',
'_destination' => 's |
|