查看完整版本: VPS 測速及測試線路的方法 - iperf,tcptraceroute,mtr,haproxy


dyson6 2017-10-3 12:09

VPS 測速及測試線路的方法 - iperf,tcptraceroute,mtr,haproxy

有時當你申請了一台VPS. 除了 ping 之外..你要怎麼知道這台VPS的連線速度如何呢?
你可以試試底下幾種方式~

測試線路的方法:
(1) 使用 iperf
# yum install iperf
# iperf -c [color=Red]168.95.1.1[/color] -t 30 -i 1 -p 80 -d -w 1M

(2) 使用 tcptraceroute
# yum install tcptraceroute
# tcptraceroute [color=Red]168.95.1.1[/color]

(3) 使用 mtr
# yum install mtr
# mtr [color=Red]168.95.1.1[/color]

(4) 使用 haproxy
# yum install haproxy
# vi /etc/haproxy/haproxy.cfg
[quote]
global
    log 127.0.0.1    local0
    log 127.0.0.1    local1 notice
    maxconn 50000
    user  haproxy
    group haproxy
    daemon
    nbproc 1
    pidfile /var/run/haproxy.pid
    tune.ssl.default-dh-param  1024

defaults
    log     global
    mode    http
    option  httplog
    option  dontlognull
    timeout server 30s
    timeout connect 30s
    timeout client 30s
    retries 2

frontend internet
        bind *:80
        mode http
        default_backend elb

backend elb
        mode http
        server elb1 www.aaa.com.tw
        server elb2 www.bbb.com.tw

listen stats :8080
    mode http
    stats enable
    stats hide-version
    stats realm Haproxy\ Statistics
    stats uri /
    stats auth admin:admin
    stats refresh 10s
[/quote]
# service haproxy restart
頁: [1]
查看完整版本: VPS 測速及測試線路的方法 - iperf,tcptraceroute,mtr,haproxy