是否有Perl模块来测试互联网连接速度?

时间:2010-04-25 10:28:51

标签: perl connection performance

有人知道测试互联网连接速度的模块吗?

2 个答案:

答案 0 :(得分:8)

带宽速度如何?或者像延迟一样?对于后者,只需使用Net::Ping

对于带宽,我不知道是否有任何现成的,有两种方法:

  1. 您可以尝试利用ibmonitor

  2. 否则,要测量下载带宽,请找一个网站,通过下载大文件(或在高性能网站上找到如此大的文件)来测量带宽;启动计时器,开始下载该文件(例如使用LWP或您希望的任何其他模块 - 或Net::FTP如果您的文件位于FTP站点上) - 测量所需的时间并除以文件大小。

    用于衡量上传带宽的类似逻辑,但您需要在互联网上找到一个允许上传的地方(如公共存储库)。

答案 1 :(得分:4)

#!/usr/bin/env perl
use warnings; use strict;
use 5.010;
use Time::HiRes qw(gettimeofday tv_interval);
use LWP::Simple;
use File::stat;

my %h = (
    '500x500'   => 505544,
    '750x750'   => 1118012,
    '1000x1000' => 1986284,
    '1500x1500' => 4468241,
    '2000x2000' => 7907740,
);

my $pixel = '1000x1000';
my $url_file = 'http://speedserver/file'.$pixel.'.jpg';
my $file = 'file'.$pixel.'.jpg';

unlink $file or die $! if -e $file;
my $start = gettimeofday;
my $response = getstore( $url_file, $file );
my $end = gettimeofday;

open my $fh, '>>', 'speed_test.txt' or die $!;
    say $fh scalar localtime;
    if ( not is_success $response ) {
        say $fh "error occured:";
        say $fh "HTTP response code = $response";
    }
    else {
        my $size = stat( $file )->size if -e $file;
        $size ||= 0;
        if ( $size == $h{$pixel} ) {
            my $bit = $size * 8;
            my $time = $end - $start;
            my $kbps = int( ( $bit / $time ) / 1000 );
            say $fh "$kbps kbit/s";
            say $fh "$pixel : $size";
        }
        else {
            say $fh "error occured:";
            say $fh "file_size is $size - file_size expected $h{$pixel}";
        }   
    }
    say $fh "";
close $fh;