Learn about Centmin Mod LEMP Stack today
Become a Member

Benchmarks 4GB VPSDime Premium KVM VPS Benchmarks Review

Discussion in 'Virtual Private Server (VPS) hosting' started by eva2000, Feb 28, 2017.

  1. eva2000

    eva2000 Administrator Staff Member

    53,142
    12,110
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,645
    Local Time:
    7:14 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Folks at VPSDime were kind enough to provide me with one of their 4GB Premium VPS plans to benchmark and review. So let's see how it fairs with Centmin Mod 123.09beta01 install on CentOS 7.x 64bit OS.

    VPSDime Premium VPS plans are KVM based virtualization powered via Proxmox with a maximum of 16 VPSes sharing a VPS host node. The 4GB VPSDime Premium VPS I got used 1 CPU core from Intel Xeon E5-2643v1 @3.3Ghz with 3.5Ghz Turbo boost so it is from the original Intel Sandy Bridge-EP family.

    The 4GB VPSDime Premium VPS specs:
    • 4GB ram
    • 1CPU Core on Intel Xeon E5-2643v1 @3.3Ghz-3.5Ghz
    • 60GB SSD Disk
    • 2TB Bandwidth
    • 10Gbps uplink connectivity
    • Dallas, Texas location
    • Nightly backups with 3-day
    • CentOS 7.x 64bit OS template
    • US$20/month or US$200/yr
    Code (Text):
    cat /proc/cpuinfo
    processor       : 0
    vendor_id       : GenuineIntel
    cpu family      : 6
    model           : 45
    model name      : Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz
    stepping        : 7
    microcode       : 0x1
    cpu MHz         : 3299.998
    cache size      : 4096 KB
    physical id     : 0
    siblings        : 1
    core id         : 0
    cpu cores       : 1
    apicid          : 0
    initial apicid  : 0
    fpu             : yes
    fpu_exception   : yes
    cpuid level     : 13
    wp              : yes
    flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon rep_good nopl xtopology eagerfpu pni pclmulqdq ssse3 cx16 pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx hypervisor lahf_lm arat tsc_adjust xsaveopt
    bogomips        : 6599.99
    clflush size    : 64
    cache_alignment : 64
    address sizes   : 40 bits physical, 48 bits virtual
    power management:
    


    Centmin Mod Install Notes:


    • VPSDime Premium VPS on initial OS install or reinstall seem to have a preset scripts to auto configure some of the VPS settings for CentOS 7 at least. The script seems to be triggered from /etc/rc.local first to run /root/firstrun.sh script to modifying and tune some of the system settings and do a yum update.
    • Only install Centmin Mod after confirming vpsdime's initial firstrun.sh script is not running via command below, it should return empty if firstrun.sh is not running. Otherwise, firstrun.sh's yum update will lock the yum process causing problems when you try to run Centmin Mod installation as it requires access to using yum but it's locked by firstrun.sh's yum update process.
    You can check if firstrun.sh has finished and ended via command:
    Code (Text):
    ps aufxw | grep firstrun.sh | grep -v grep
    

    VPSDime's /root/firstrun.sh script contents is listed below. Looks like IPv6 gets disabled out of box. And tweak is made for rq_affinity for disk I/O

    and noop scheduler used which maybe better for SSD like speed disk configs
    VPSDime's /root/firstrun.sh script contents:
    Code (Text):
    /root/firstrun.sh
    
    #!/bin/sh
    echo 0 > /sys/block/vda/queue/rq_affinity
    echo noop > /sys/block/vda/queue/scheduler
    echo "#!/bin/sh" > /etc/rc.d/rc.local
    echo "echo 0 > /sys/block/vda/queue/rq_affinity" >> /etc/rc.d/rc.local
    echo "echo noop > /sys/block/vda/queue/scheduler" >> /etc/rc.d/rc.local
    
    echo "net.core.rmem_max=16777216" >> /etc/sysctl.conf
    echo "net.core.wmem_max=16777216" >> /etc/sysctl.conf
    echo "net.ipv4.tcp_rmem=4096 87380 16777216" >> /etc/sysctl.conf
    echo "net.ipv4.tcp_wmem=4096 65536 16777216" >> /etc/sysctl.conf
    echo "net.ipv6.conf.all.disable_ipv6 = 1" >> /etc/sysctl.conf
    echo "net.ipv6.conf.default.disable_ipv6 = 1" >> /etc/sysctl.conf
    echo "net.ipv6.conf.lo.disable_ipv6 = 1" >> /etc/sysctl.conf
    sysctl -p
    
    sleep 10
    
    yum -y update
    
    rm -rf /root/firstrun.sh
    rm -rf /root/firstrun.log
    rm -rf /root/anaconda-ks.cfg
    rm -rf /root/original-ks.cfg
    

    Note, Centmin Mod already auto tunes some of the TCP settings out of the box too based on detected system resources for the server so values vary depending on server's specs.

    On CentOS 7, Centmin Mod adds to /etc/sysctl.d/101-sysctl.conf
    Code (Text):
    # centminmod added
    fs.nr_open=12000000
    fs.file-max=9000000
    net.core.wmem_max=16777216
    net.core.rmem_max=16777216
    net.ipv4.tcp_rmem=8192 87380 16777216                                     
    net.ipv4.tcp_wmem=8192 65536 16777216
    net.core.netdev_max_backlog=8192
    net.core.somaxconn=8151
    net.core.optmem_max=8192
    net.ipv4.tcp_fin_timeout=10
    net.ipv4.tcp_keepalive_intvl=30
    net.ipv4.tcp_keepalive_probes=3
    net.ipv4.tcp_keepalive_time=240
    net.ipv4.tcp_max_syn_backlog=8192
    net.ipv4.tcp_sack=1
    net.ipv4.tcp_syn_retries=3
    net.ipv4.tcp_synack_retries = 2
    net.ipv4.tcp_tw_recycle = 0
    net.ipv4.tcp_tw_reuse = 0
    net.ipv4.tcp_max_tw_buckets = 1440000
    vm.swappiness=10
    vm.min_free_kbytes=65536
    net.ipv4.ip_local_port_range=1024 65535
    net.ipv4.tcp_slow_start_after_idle=0
    net.ipv4.tcp_limit_output_bytes=65536
    net.ipv4.tcp_rfc1337=1
    net.ipv4.conf.all.accept_redirects = 0
    net.ipv4.conf.all.accept_source_route = 0
    net.ipv4.conf.all.log_martians = 1
    net.ipv4.conf.all.rp_filter = 1
    net.ipv4.conf.all.secure_redirects = 0
    net.ipv4.conf.all.send_redirects = 0
    net.ipv4.conf.default.accept_redirects = 0
    net.ipv4.conf.default.accept_source_route = 0
    net.ipv4.conf.default.log_martians = 1
    net.ipv4.conf.default.rp_filter = 1
    net.ipv4.conf.default.secure_redirects = 0
    net.ipv4.conf.default.send_redirects = 0
    net.ipv4.icmp_echo_ignore_broadcasts = 1
    net.ipv4.icmp_ignore_bogus_error_responses = 1
    net.netfilter.nf_conntrack_helper=0
    net.nf_conntrack_max = 524288
    net.netfilter.nf_conntrack_tcp_timeout_established = 28800
    net.netfilter.nf_conntrack_generic_timeout = 60
    net.ipv4.tcp_challenge_ack_limit = 999999999
    

    So VPSDime's firstrun.sh set TCP settings overrode Centmin Mod's set ones
    Code (Text):
    sysctl -a | egrep 'tcp_wmem|tcp_rmem|mem_max'
    net.core.optmem_max = 8192
    net.core.rmem_max = 16777216
    net.core.wmem_max = 16777216
    net.ipv4.tcp_rmem = 4096        87380   16777216
    net.ipv4.tcp_wmem = 4096        65536   16777216
    

    You can remove some of VPSDime's settings using sed deletion commands below for CentOS 7
    Code (Text):
    sed -i '/mem_max/d' /etc/sysctl.conf
    sed -i '/tcp_rmem/d' /etc/sysctl.conf
    sed -i '/tcp_wmem/d' /etc/sysctl.conf
    /sbin/sysctl --system
    sysctl -p
    

    Then double check
    Code (Text):
    sysctl -a | egrep 'tcp_wmem|tcp_rmem|mem_max'
    net.core.optmem_max = 8192
    net.core.rmem_max = 16777216
    net.core.wmem_max = 16777216
    net.ipv4.tcp_rmem = 8192        87380   16777216
    net.ipv4.tcp_wmem = 8192        65536   16777216
    



    This is what VPSDime's /root/firstrun.sh script did for yum updates for CentOS 7 OS template. Very handy if folks generally forgot to run yum update first. Though Centmin Mod official install instructions also mention doing a yum update as well as is automatically done during Centmin Mod initial install as well.
    Code (Text):
    yum history list
    Loaded plugins: fastestmirror
    ID     | Command line             | Date and time    | Action(s)      | Altered
    -------------------------------------------------------------------------------
         2 | -y update                | 2017-02-27 23:28 | I, U           |   43 EE
         1 |                          | 2017-02-27 17:25 | Install        |  241
    history list
    

    Code (Text):
    yum history info 2
    Loaded plugins: fastestmirror
    Transaction ID : 2
    Begin time     : Mon Feb 27 23:28:48 2017
    Begin rpmdb    : 241:ef67b6d7aca8580e4399aa972e62d7885e771c44
    End time       :            17:31:09 2017 (-21459 seconds)
    End rpmdb      : 242:0e354c864e1465ea3e7c5efe187d7dd1e70830b4
    User           : System <unset>
    Return-Code    : Success
    Command Line   : -y update
    Transaction performed with:
        Installed     rpm-4.11.3-21.el7.x86_64                      @anaconda
        Installed     yum-3.4.3-150.el7.centos.noarch               @anaconda
        Installed     yum-plugin-fastestmirror-1.1.31-40.el7.noarch @anaconda
    Packages Altered:
        Updated bash-4.2.46-20.el7_2.x86_64                          @anaconda
        Update       4.2.46-21.el7_3.x86_64                          @updates
        Updated chrony-2.1.1-3.el7.centos.x86_64                     @anaconda
        Update         2.1.1-4.el7.centos.x86_64                     @updates
        Updated device-mapper-7:1.02.135-1.el7.x86_64                @anaconda
        Update                7:1.02.135-1.el7_3.2.x86_64            @updates
        Updated device-mapper-event-7:1.02.135-1.el7.x86_64          @anaconda
        Update                      7:1.02.135-1.el7_3.2.x86_64      @updates
        Updated device-mapper-event-libs-7:1.02.135-1.el7.x86_64     @anaconda
        Update                           7:1.02.135-1.el7_3.2.x86_64 @updates
        Updated device-mapper-libs-7:1.02.135-1.el7.x86_64           @anaconda
        Update                     7:1.02.135-1.el7_3.2.x86_64       @updates
        Updated expat-2.1.0-8.el7.x86_64                             @anaconda
        Update        2.1.0-10.el7_3.x86_64                          @updates
        Updated firewalld-0.4.3.2-8.el7.noarch                       @anaconda
        Update            0.4.3.2-8.1.el7_3.noarch                   @updates
        Updated firewalld-filesystem-0.4.3.2-8.el7.noarch            @anaconda
        Update                       0.4.3.2-8.1.el7_3.noarch        @updates
        Updated glibc-2.17-157.el7.x86_64                            @anaconda
        Update        2.17-157.el7_3.1.x86_64                        @updates
        Updated glibc-common-2.17-157.el7.x86_64                     @anaconda
        Update               2.17-157.el7_3.1.x86_64                 @updates
        Install kernel-3.10.0-514.6.2.el7.x86_64                     @updates
        Updated kernel-tools-3.10.0-514.el7.x86_64                   @anaconda
        Update               3.10.0-514.6.2.el7.x86_64               @updates
        Updated kernel-tools-libs-3.10.0-514.el7.x86_64              @anaconda
        Update                    3.10.0-514.6.2.el7.x86_64          @updates
        Updated kpartx-0.4.9-99.el7.x86_64                           @anaconda
        Update         0.4.9-99.el7_3.1.x86_64                       @updates
        Updated krb5-libs-1.14.1-26.el7.x86_64                       @anaconda
        Update            1.14.1-27.el7_3.x86_64                     @updates
        Updated libgcrypt-1.5.3-12.el7_1.1.x86_64                    @anaconda
        Update            1.5.3-13.el7_3.1.x86_64                    @updates
        Updated libsemanage-2.5-4.el7.x86_64                         @anaconda
        Update              2.5-5.1.el7_3.x86_64                     @updates
        Updated lvm2-7:2.02.166-1.el7.x86_64                         @anaconda
        Update       7:2.02.166-1.el7_3.2.x86_64                     @updates
        Updated lvm2-libs-7:2.02.166-1.el7.x86_64                    @anaconda
        Update            7:2.02.166-1.el7_3.2.x86_64                @updates
        Updated microcode_ctl-2:2.1-16.el7.x86_64                    @anaconda
        Update                2:2.1-16.1.el7_3.x86_64                @updates
        Updated nss-3.21.0-17.el7.x86_64                             @anaconda
        Update      3.21.3-2.el7_3.x86_64                            @updates
        Updated nss-sysinit-3.21.0-17.el7.x86_64                     @anaconda
        Update              3.21.3-2.el7_3.x86_64                    @updates
        Updated nss-tools-3.21.0-17.el7.x86_64                       @anaconda
        Update            3.21.3-2.el7_3.x86_64                      @updates
        Updated nss-util-3.21.0-2.2.el7_2.x86_64                     @anaconda
        Update           3.21.3-1.1.el7_3.x86_64                     @updates
        Updated openssh-6.6.1p1-31.el7.x86_64                        @anaconda
        Update          6.6.1p1-33.el7_3.x86_64                      @updates
        Updated openssh-clients-6.6.1p1-31.el7.x86_64                @anaconda
        Update                  6.6.1p1-33.el7_3.x86_64              @updates
        Updated openssh-server-6.6.1p1-31.el7.x86_64                 @anaconda
        Update                 6.6.1p1-33.el7_3.x86_64               @updates
        Updated openssl-1:1.0.1e-60.el7.x86_64                       @anaconda
        Update          1:1.0.1e-60.el7_3.1.x86_64                   @updates
        Updated openssl-libs-1:1.0.1e-60.el7.x86_64                  @anaconda
        Update               1:1.0.1e-60.el7_3.1.x86_64              @updates
        Updated policycoreutils-2.5-8.el7.x86_64                     @anaconda
        Update                  2.5-11.el7_3.x86_64                  @updates
        Updated python-firewall-0.4.3.2-8.el7.noarch                 @anaconda
        Update                  0.4.3.2-8.1.el7_3.noarch             @updates
        Updated python-perf-3.10.0-514.el7.x86_64                    @anaconda
        Update              3.10.0-514.6.2.el7.x86_64                @updates
        Updated selinux-policy-3.13.1-102.el7.noarch                 @anaconda
        Update                 3.13.1-102.el7_3.13.noarch            @updates
        Updated selinux-policy-targeted-3.13.1-102.el7.noarch        @anaconda
        Update                          3.13.1-102.el7_3.13.noarch   @updates
        Updated sudo-1.8.6p7-20.el7.x86_64                           @anaconda
        Update       1.8.6p7-21.el7_3.x86_64                         @updates
        Updated systemd-219-30.el7.x86_64                            @anaconda
        Update          219-30.el7_3.6.x86_64                        @updates
        Updated systemd-libs-219-30.el7.x86_64                       @anaconda
        Update               219-30.el7_3.6.x86_64                   @updates
        Updated systemd-sysv-219-30.el7.x86_64                       @anaconda
        Update               219-30.el7_3.6.x86_64                   @updates
        Updated tuned-2.7.1-3.el7.noarch                             @anaconda
        Update        2.7.1-3.el7_3.1.noarch                         @updates
        Updated tzdata-2016g-2.el7.noarch                            @anaconda
        Update         2016j-1.el7.noarch                            @updates
        Updated vim-minimal-2:7.4.160-1.el7.x86_64                   @anaconda
        Update              2:7.4.160-1.el7_3.1.x86_64               @updates
        Updated xfsprogs-4.5.0-8.el7.x86_64                          @anaconda
        Update           4.5.0-9.el7_3.x86_64                        @updates
    Scriptlet output:
       1 warning: /etc/nsswitch.conf created as /etc/nsswitch.conf.rpmnew
    history info
    


    Centmin Mod Install Times:



    Installed Centmin Mod 123.09beta01 via curl installer and the times are pretty much inline with single cpu core being slower than more cpu cores due to Nginx and PHP source compilation methods benefiting from more cpu cores. But they are definitely faster than single cpu core install times recently tested with Linode vs DigitalOcean vs Vultr. This is due to VPSDime using faster cpu clocked Intel Xeon E5-2643v1 @3.3Ghz with Turbo boost to 3.5Ghz.

    Code (Text):
    ---------------------------------------------------------------------------
    Total Curl Installer YUM Time: 87.2598 seconds
    Total YUM Time: 24.246714215 seconds
    Total YUM + Source Download Time: 53.1037
    Total Nginx First Time Install Time: 292.8972
    Total PHP First Time Install Time: 484.5419
    Download Zip From Github Time: 1.2825
    Total Time Other eg. source compiles: 283.9620
    Total Centmin Mod Install Time: 1114.5048
    ---------------------------------------------------------------------------
    Total Install Time (curl yum + cm install + zip download): 1203.0471 seconds
    ---------------------------------------------------------------------------
    

    Post initial install disk usage numbers
    Code (Text):
    df -hT
    Filesystem                   Type      Size  Used Avail Use% Mounted on
    /dev/mapper/vg_system-rootlv xfs        58G  4.0G   54G   7% /
    devtmpfs                     devtmpfs  1.9G     0  1.9G   0% /dev
    tmpfs                        tmpfs     1.9G     0  1.9G   0% /dev/shm
    tmpfs                        tmpfs     1.9G  8.4M  1.9G   1% /run
    tmpfs                        tmpfs     1.9G     0  1.9G   0% /sys/fs/cgroup
    /dev/vda1                    xfs       509M  114M  396M  23% /boot
    tmpfs                        tmpfs     380M     0  380M   0% /run/user/0
    
     
    Last edited: Feb 28, 2017
  2. eva2000

    eva2000 Administrator Staff Member

    53,142
    12,110
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,645
    Local Time:
    7:14 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+

    centminmodbench.sh benchmark results



    centminmodbench.sh is a custom benchmark script written for Centmin Mod LEMP stack environments which give a thorough overview of a systems performance and can be obtained at bench.centminmod.com. I use it on all my newly provisioned VPSes or dedicated servers after Centmin Mod initial install

    • CPU due to raw clock speed for Intel Xeon E5-2643v1 @3.3-3.5Ghz shows fantastic UnixBench index score of 1399.5 which is one of the fastest I have seen for single cpu index scores.
    • Bandwidth wise, for Dallas location seeing some nice bandwidth numbers at 138MB/s and Atlanta 98MB/s at Linode datacenters and very high for Vultr Dallas at 499MB/s showing off Linode and Vultr's 10+ Gbit/s network connectivity and VPSDime's 10Gbit/s uplink speeds. But unusually low for CacheFly CDN at 6-27MB/s ?
    • OpenSSL/LibreSSL encryption numbers will be expectedly lower being first generation Sandy Bridge-EP based Xeon E5-2643v1 compared to newer Xeon E5-2600v3/v4 and E3-1200 v3/v4/v5. However, still faster than Linode vs DigitalOcean vs Vultr's single cpu core $5/month plans due to higher clock speed on VPSDime's plan but those respective VPS provider's $20/month plans would all have 2 cpu cores compared to 1 cpu cores so would end up slightly faster than VPSDime's 4GB Premium VPS plan at the same price.
    • Memory bandwidth is above average fast
    • Disk I/O is relatively fast for Disk FIO results ~342MB/s
    • Below benchmarks were done with VPSDime's set TCP settings for /etc/sysctl.conf

    Code (Text):
    -------------------------------------------
    centminmodbench.sh 0.9.4
    http://bench.centminmod.com
    written by: George Liu (eva2000)
    http://centminmod.com
    -------------------------------------------
    
    -------------------------------------------
    System Information
    -------------------------------------------
    
    3.10.0-514.el7.x86_64
    
    CentOS Linux release 7.3.1611 (Core)
    
    Centmin Mod
    ----------------------------------------------
    Architecture:          x86_64
    CPU op-mode(s):        32-bit, 64-bit
    Byte Order:            Little Endian
    CPU(s):                1
    On-line CPU(s) list:   0
    Thread(s) per core:    1
    Core(s) per socket:    1
    Socket(s):             1
    NUMA node(s):          1
    Vendor ID:             GenuineIntel
    CPU family:            6
    Model:                 45
    Model name:            Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz
    Stepping:              7
    CPU MHz:               3299.998
    BogoMIPS:              6599.99
    Hypervisor vendor:     KVM
    Virtualization type:   full
    L1d cache:             32K
    L1i cache:             32K
    L2 cache:              4096K
    NUMA node0 CPU(s):     0
    
    CPU Flags
     fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon rep_good nopl xtopology eagerfpu pni pclmulqdq ssse3 cx16 pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx hypervisor lahf_lm arat tsc_adjust xsaveopt
    
    ----------------------------------------------
    CPU NODE SOCKET CORE L1d:L1i:L2 ONLINE
    0   0    0      0    0:0:0      yes
    
    ----------------------------------------------
                  total        used        free      shared  buff/cache   available
    Mem:           3790         348        3067          20         374        3183
    Low:           3790         723        3067
    High:             0           0           0
    Swap:          2047           0        2047
    
    ----------------------------------------------
    Filesystem                    Size  Used Avail Use% Mounted on
    /dev/mapper/vg_system-rootlv   58G  4.0G   54G   7% /
    devtmpfs                      1.9G     0  1.9G   0% /dev
    tmpfs                         1.9G     0  1.9G   0% /dev/shm
    tmpfs                         1.9G  8.4M  1.9G   1% /run
    tmpfs                         1.9G     0  1.9G   0% /sys/fs/cgroup
    /dev/vda1                     509M  114M  396M  23% /boot
    tmpfs                         380M     0  380M   0% /run/user/0
    
    

    Code (Text):
    -------------------------------------------
    disk ioping tests
    -------------------------------------------
    
    Running IOPing I/O benchmark...
    
    IOPing I/O: ./ioping -c 10 .
    4.0 KiB from . (xfs /dev/mapper/vg_system-rootlv): request=1 time=1.3 ms
    4.0 KiB from . (xfs /dev/mapper/vg_system-rootlv): request=2 time=411 us
    4.0 KiB from . (xfs /dev/mapper/vg_system-rootlv): request=3 time=497 us
    4.0 KiB from . (xfs /dev/mapper/vg_system-rootlv): request=4 time=501 us
    4.0 KiB from . (xfs /dev/mapper/vg_system-rootlv): request=5 time=423 us
    4.0 KiB from . (xfs /dev/mapper/vg_system-rootlv): request=6 time=460 us
    4.0 KiB from . (xfs /dev/mapper/vg_system-rootlv): request=7 time=280 us
    4.0 KiB from . (xfs /dev/mapper/vg_system-rootlv): request=8 time=521 us
    4.0 KiB from . (xfs /dev/mapper/vg_system-rootlv): request=9 time=569 us
    4.0 KiB from . (xfs /dev/mapper/vg_system-rootlv): request=10 time=480 us
    
    --- . (xfs /dev/mapper/vg_system-rootlv) ioping statistics ---
    10 requests completed in 9.0 s, 1.8 k iops, 7.1 MiB/s
    min/avg/max/mdev = 280 us / 548 us / 1.3 ms / 275 us
    
    IOPing seek rate: ./ioping -RD .
    
    --- . (xfs /dev/mapper/vg_system-rootlv) ioping statistics ---
    13.0 k requests completed in 3.0 s, 4.4 k iops, 17.1 MiB/s
    min/avg/max/mdev = 148 us / 228 us / 3.3 ms / 78 us
    
    IOPing sequential: ./ioping -RL .
    
    --- . (xfs /dev/mapper/vg_system-rootlv) ioping statistics ---
    4.9 k requests completed in 3.0 s, 1.7 k iops, 421.0 MiB/s
    min/avg/max/mdev = 456 us / 593 us / 4.9 ms / 120 us
    
    IOPing cached: ./ioping -RC .
    
    --- . (xfs /dev/mapper/vg_system-rootlv) ioping statistics ---
    3.7 M requests completed in 3.0 s, 1.4 M iops, 5.4 GiB/s
    min/avg/max/mdev = 0 us / 0 us / 2.5 ms / 1 us
    
    

    Code (Text):
    -------------------------------------------
    disk DD tests
    -------------------------------------------
    
    dd if=/dev/zero of=sb-io-test bs=1M count=1k conv=fdatasync
    1024+0 records in
    1024+0 records out
    1073741824 bytes (1.1 GB) copied, 0.797925 s, 1.3 GB/s
    
    dd if=/dev/zero of=sb-io-test bs=64k count=16k conv=fdatasync
    16384+0 records in
    16384+0 records out
    1073741824 bytes (1.1 GB) copied, 0.804852 s, 1.3 GB/s
    
    dd if=/dev/zero of=sb-io-test bs=1M count=1k oflag=dsync
    1024+0 records in
    1024+0 records out
    1073741824 bytes (1.1 GB) copied, 2.43704 s, 441 MB/s
    
    dd if=/dev/zero of=sb-io-test bs=64k count=16k oflag=dsync
    16384+0 records in
    16384+0 records out
    1073741824 bytes (1.1 GB) copied, 31.7764 s, 33.8 MB/s
    

    Code (Text):
    -------------------------------------------
    disk FIO tests
    -------------------------------------------
    
    Running FIO benchmark...
    
    FIO_VERSION = fio-2.0.9
    
    FIO random reads:
    randomreads: (g=0): rw=randread, bs=4K-4K/4K-4K, ioengine=libaio, iodepth=64
    fio-2.0.9
    Starting 1 process
    randomreads: Laying out IO file(s) (1 file(s) / 1024MB)
    
    randomreads: (groupid=0, jobs=1): err= 0: pid=21984: Tue Feb 28 00:25:31 2017
      read : io=1024.3MB, bw=350427KB/s, iops=87606 , runt=  2993msec
      cpu          : usr=7.92%, sys=32.39%, ctx=7128, majf=0, minf=84
      IO depths    : 1=0.1%, 2=0.1%, 4=0.1%, 8=0.1%, 16=0.1%, 32=0.1%, >=64=100.0%
         submit    : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
         complete  : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.1%, >=64=0.0%
         issued    : total=r=262207/w=0/d=0, short=r=0/w=0/d=0
    
    Run status group 0 (all jobs):
       READ: io=1024.3MB, aggrb=350426KB/s, minb=350426KB/s, maxb=350426KB/s, mint=2993msec, maxt=2993msec
    
    Disk stats (read/write):
        dm-0: ios=257263/80, merge=0/0, ticks=159962/125, in_queue=160191, util=96.80%, aggrios=262207/49, aggrmerge=0/32, aggrticks=163058/73, aggrin_queue=163104, aggrutil=96.36%
      vda: ios=262207/49, merge=0/32, ticks=163058/73, in_queue=163104, util=96.36%
    
    FIO random writes:
    randomwrites: (g=0): rw=randwrite, bs=4K-4K/4K-4K, ioengine=libaio, iodepth=64
    fio-2.0.9
    Starting 1 process
    
    randomwrites: (groupid=0, jobs=1): err= 0: pid=21988: Tue Feb 28 00:25:35 2017
      write: io=1024.3MB, bw=325925KB/s, iops=81481 , runt=  3218msec
      cpu          : usr=8.83%, sys=31.96%, ctx=7260, majf=0, minf=19
      IO depths    : 1=0.1%, 2=0.1%, 4=0.1%, 8=0.1%, 16=0.1%, 32=0.1%, >=64=100.0%
         submit    : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
         complete  : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.1%, >=64=0.0%
         issued    : total=r=0/w=262207/d=0, short=r=0/w=0/d=0
    
    Run status group 0 (all jobs):
      WRITE: io=1024.3MB, aggrb=325925KB/s, minb=325925KB/s, maxb=325925KB/s, mint=3218msec, maxt=3218msec
    
    Disk stats (read/write):
        dm-0: ios=0/256773, merge=0/0, ticks=0/176791, in_queue=176823, util=96.98%, aggrios=0/262207, aggrmerge=0/0, aggrticks=0/180123, aggrin_queue=180096, aggrutil=96.64%
      vda: ios=0/262207, merge=0/0, ticks=0/180123, in_queue=180096, util=96.64%
    
    

    Code (Text):
    -------------------------------------------
    ramdisk DD tests - memory bandwidth
    -------------------------------------------
    
    dd if=/dev/zero of=sb-io-test bs=128k count=1k conv=fdatasync
    1024+0 records in
    1024+0 records out
    134217728 bytes (134 MB) copied, 0.0469683 s, 2.9 GB/s
    
    dd if=/dev/zero of=sb-io-test bs=8k count=16k conv=fdatasync
    16384+0 records in
    16384+0 records out
    134217728 bytes (134 MB) copied, 0.0551555 s, 2.4 GB/s
    
    dd if=/dev/zero of=sb-io-test bs=128k count=1k oflag=dsync
    1024+0 records in
    1024+0 records out
    134217728 bytes (134 MB) copied, 0.0461883 s, 2.9 GB/s
    
    dd if=/dev/zero of=sb-io-test bs=8k count=16k oflag=dsync
    16384+0 records in
    16384+0 records out
    134217728 bytes (134 MB) copied, 0.0486387 s, 2.8 GB/s
    

    Code (Text):
    -------------------------------------------
    ramdisk ioping tests - memory bandwidth
    -------------------------------------------
    
    Running IOPing I/O ramdisk benchmark...
    
    IOPing I/O: ./ioping -c 10 .
    4.0 KiB from . (tmpfs tmpfs): request=1 time=2 us
    4.0 KiB from . (tmpfs tmpfs): request=2 time=8 us
    4.0 KiB from . (tmpfs tmpfs): request=3 time=8 us
    4.0 KiB from . (tmpfs tmpfs): request=4 time=5 us
    4.0 KiB from . (tmpfs tmpfs): request=5 time=8 us
    4.0 KiB from . (tmpfs tmpfs): request=6 time=8 us
    4.0 KiB from . (tmpfs tmpfs): request=7 time=6 us
    4.0 KiB from . (tmpfs tmpfs): request=8 time=8 us
    4.0 KiB from . (tmpfs tmpfs): request=9 time=7 us
    4.0 KiB from . (tmpfs tmpfs): request=10 time=8 us
    
    --- . (tmpfs tmpfs) ioping statistics ---
    10 requests completed in 9.0 s, 147.1 k iops, 574.4 MiB/s
    min/avg/max/mdev = 2 us / 6 us / 8 us / 1 us
    
    IOPing seek rate: ./ioping -R .
    
    --- . (tmpfs tmpfs) ioping statistics ---
    2.0 M requests completed in 3.0 s, 1.5 M iops, 5.6 GiB/s
    min/avg/max/mdev = 0 us / 0 us / 91 us / 0 us
    
    IOPing sequential: ./ioping -RL .
    
    --- . (tmpfs tmpfs) ioping statistics ---
    66.7 k requests completed in 3.0 s, 32.2 k iops, 7.9 GiB/s
    min/avg/max/mdev = 26 us / 31 us / 237 us / 4 us
    
    IOPing cached: ./ioping -RC .
    
    --- . (tmpfs tmpfs) ioping statistics ---
    3.6 M requests completed in 3.0 s, 1.4 M iops, 5.2 GiB/s
    min/avg/max/mdev = 0 us / 0 us / 106 us / 0 us
    
    

    Code (Text):
    
    -------------------------------------------
    Running bandwidth benchmark...
    -------------------------------------------
    
    ----------------------------------------------
    Download from Cachefly (http://cachefly.cachefly.net/100mb.test)
    Download Cachefly: 6.74MB/s
    
    -------------------------------------------
    USA bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Download from Linode, Atlanta, GA, USA (http://speedtest.atlanta.linode.com/100MB-atlanta.bin)
    Download Linode, Atlanta, GA, USA: 98.1MB/s
    ----------------------------------------------
    Download from Linode, Dallas, TX, USA (http://speedtest.dallas.linode.com/100MB-dallas.bin)
    Download Linode, Dallas, TX, USA: 138MB/s
    ----------------------------------------------
    Download from Leaseweb, Manassas, VA, USA (http://mirror.us.leaseweb.net/speedtest/100mb.bin)
    Download Leaseweb, Manassas, VA, USA: 8.56MB/s
    ----------------------------------------------
    Download from Softlayer, Seattle, WA, USA (http://speedtest.sea01.softlayer.com/downloads/test100.zip)
    Download Softlayer, Seattle, WA, USA: 45.2MB/s
    ----------------------------------------------
    Download from Softlayer, San Jose, CA, USA (http://speedtest.sjc01.softlayer.com/downloads/test100.zip)
    Download Softlayer, San Jose, CA, USA: 48.2MB/s
    ----------------------------------------------
    Download from Softlayer, Washington, DC, USA (http://speedtest.wdc01.softlayer.com/downloads/test100.zip)
    Download Softlayer, Washington, DC, USA: 34.3MB/s
    ----------------------------------------------
    Download from VersaWeb, Las Vegas, Nevada (http://104.143.15.254/100MB.test)
    Download VersaWeb, Las Vegas, Nevada: 10.3MB/s
    ----------------------------------------------
    Download from OVH, BHS, Canada (http://bhs.proof.ovh.net/files/100Mio.dat)
    Download OVH, BHS, Canada: 3.86MB/s
    ----------------------------------------------
    Download from Vultr, Los Angeles, California (http://lax-ca-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Los Angeles, California: 37.5MB/s
    ----------------------------------------------
    Download from Vultr, Seattle, Washington (http://wa-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Seattle, Washington: 21.8MB/s
    ----------------------------------------------
    Download from Vultr, Dallas, Texas (http://tx-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Dallas, Texas: 499MB/s
    ----------------------------------------------
    Download from Vultr, Chicago, Illinois (http://il-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Chicago, Illinois: 37.1MB/s
    ----------------------------------------------
    Download from Vultr, Atlanta, Georgia (http://ga-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Atlanta, Georgia: 44.9MB/s
    ----------------------------------------------
    Download from Vultr, Miami, Florida (http://fl-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Miami, Florida: 12.4MB/s
    ----------------------------------------------
    Download from Vultr, New York / New Jersey (http://nj-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, New York / New Jersey: 26.5MB/s
    
    -------------------------------------------
    Asia bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Download from Linode, Tokyo, JP (http://speedtest.tokyo.linode.com/100MB-tokyo.bin)
    Download Linode, Tokyo, JP: 17.9MB/s
    ----------------------------------------------
    Download from Softlayer, Singapore (http://speedtest.sng01.softlayer.com/downloads/test100.zip)
    Download Softlayer, Singapore: 10.9MB/s
    ----------------------------------------------
    Download from Vultr, Tokyo, Japan (http://hnd-jp-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Tokyo, Japan: 7.22MB/s
    
    -------------------------------------------
    Europe bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Download from Linode, London, UK (http://speedtest.london.linode.com/100MB-london.bin)
    Download Linode, London, UK: 18.4MB/s
    ----------------------------------------------
    Download from OVH, Paris, France (http://proof.ovh.net/files/100Mio.dat)
    Download OVH, Paris, France: 12.3MB/s
    ----------------------------------------------
    Download from SmartDC, Rotterdam, Netherlands (http://mirror.i3d.net/100mb.bin)
    Download SmartDC, Rotterdam, Netherlands: 4.93MB/s
    ----------------------------------------------
    Download from Vultr, Amsterdam, Netherlands (http://ams-nl-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Amsterdam, Netherlands: 9.39MB/s
    ----------------------------------------------
    Download from Vultr, London, UK (http://lon-gb-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, London, UK: 9.83MB/s
    ----------------------------------------------
    Download from Vultr, Paris, France (http://par-fr-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Paris, France: 9.18MB/s
    
    -------------------------------------------
    Australia bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Download from Vultr, Sydney, Australia (http://syd-au-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Sydney, Australia: 5.65MB/s
    

    Code (Text):
    
    -------------------------------------------
    Running Axel multi-threaded bandwidth benchmark...
    -------------------------------------------
    
    ----------------------------------------------
    Axel Download from Cachefly (http://cachefly.cachefly.net/100mb.test)
    Axel Download Cachefly: 27.12MB/s
    
    -------------------------------------------
    USA bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Axel Download from Linode, Atlanta, GA, USA (http://speedtest.atlanta.linode.com/100MB-atlanta.bin)
    Axel Download Linode, Atlanta, GA, USA: 105.08MB/s
    ----------------------------------------------
    Axel Download from Linode, Dallas, TX, USA (http://speedtest.dallas.linode.com/100MB-dallas.bin)
    Axel Download Linode, Dallas, TX, USA: 240.20MB/s
    ----------------------------------------------
    Axel Download from Leaseweb, Manassas, VA, USA (http://mirror.us.leaseweb.net/speedtest/100mb.bin)
    Axel Download Leaseweb, Manassas, VA, USA: 45.63MB/s
    ----------------------------------------------
    Axel Download from Softlayer, Seattle, WA, USA (http://speedtest.sea01.softlayer.com/downloads/test100.zip)
    Axel Download Softlayer, Seattle, WA, USA: 42.16MB/s
    ----------------------------------------------
    Axel Download from Softlayer, San Jose, CA, USA (http://speedtest.sjc01.softlayer.com/downloads/test100.zip)
    Axel Download Softlayer, San Jose, CA, USA: 45.67MB/s
    ----------------------------------------------
    Axel Download from Softlayer, Washington, DC, USA (http://speedtest.wdc01.softlayer.com/downloads/test100.zip)
    Axel Download Softlayer, Washington, DC, USA: 38.16MB/s
    ----------------------------------------------
    Axel Download from VersaWeb, Las Vegas, Nevada (http://104.143.15.254/100MB.test)
    Axel Download VersaWeb, Las Vegas, Nevada: 27.99MB/s
    ----------------------------------------------
    Axel Download from OVH, BHS, Canada (http://bhs.proof.ovh.net/files/100Mio.dat)
    Axel Download OVH, BHS, Canada: 12.13MB/s
    ----------------------------------------------
    Axel Download from Vultr, Los Angeles, California (http://lax-ca-us-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Los Angeles, California: 34.74MB/s
    ----------------------------------------------
    Axel Download from Vultr, Seattle, Washington (http://wa-us-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Seattle, Washington: 12.74MB/s
    ----------------------------------------------
    Axel Download from Vultr, Dallas, Texas (http://tx-us-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Dallas, Texas: 319.28MB/s
    ----------------------------------------------
    Axel Download from Vultr, Chicago, Illinois (http://il-us-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Chicago, Illinois: 21.13MB/s
    ----------------------------------------------
    Axel Download from Vultr, Atlanta, Georgia (http://ga-us-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Atlanta, Georgia: 46.62MB/s
    ----------------------------------------------
    Axel Download from Vultr, Miami, Florida (http://fl-us-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Miami, Florida: 9.01MB/s
    ----------------------------------------------
    Axel Download from Vultr, New York / New Jersey (http://nj-us-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, New York / New Jersey: 24.23MB/s
    
    -------------------------------------------
    Asia bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Axel Download from Linode, Tokyo, JP (http://speedtest.tokyo.linode.com/100MB-tokyo.bin)
    Axel Download Linode, Tokyo, JP: 21.79MB/s
    ----------------------------------------------
    Axel Download from Softlayer, Singapore (http://speedtest.sng01.softlayer.com/downloads/test100.zip)
    Axel Download Softlayer, Singapore: 7.68MB/s
    ----------------------------------------------
    Axel Download from Vultr, Tokyo, Japan (http://hnd-jp-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Tokyo, Japan: 7.65MB/s
    
    -------------------------------------------
    Europe bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Axel Download from Linode, London, UK (http://speedtest.london.linode.com/100MB-london.bin)
    Axel Download Linode, London, UK: 24.52MB/s
    ----------------------------------------------
    Axel Download from OVH, Paris, France (http://proof.ovh.net/files/100Mio.dat)
    Axel Download OVH, Paris, France: 20.64MB/s
    ----------------------------------------------
    Axel Download from SmartDC, Rotterdam, Netherlands (http://mirror.i3d.net/100mb.bin)
    Axel Download SmartDC, Rotterdam, Netherlands: 5.64MB/s
    ----------------------------------------------
    Axel Download from Vultr, Amsterdam, Netherlands (http://ams-nl-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Amsterdam, Netherlands: 9.33MB/s
    ----------------------------------------------
    Axel Download from Vultr, London, UK (http://lon-gb-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, London, UK: 10.77MB/s
    ----------------------------------------------
    Axel Download from Vultr, Paris, France (http://par-fr-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Paris, France: 9.45MB/s
    
    -------------------------------------------
    Australia bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Axel Download from Vultr, Sydney, Australia (http://syd-au-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Sydney, Australia: 5.16MB/s
    

    Code (Text):
    
    -------------------------------------------
    Running ping tests...
    -------------------------------------------
    
    ----------------------------------------------
    Pings (cachefly.cachefly.net):
    PING vip1.g5.cachefly.net (205.234.175.175) 56(84) bytes of data.
    64 bytes from vip1.G-anycast1.cachefly.net (205.234.175.175): icmp_seq=1 ttl=58 time=0.489 ms
    64 bytes from vip1.G-anycast1.cachefly.net (205.234.175.175): icmp_seq=2 ttl=58 time=0.587 ms
    64 bytes from vip1.G-anycast1.cachefly.net (205.234.175.175): icmp_seq=3 ttl=58 time=0.571 ms
    
    --- vip1.g5.cachefly.net ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2001ms
    rtt min/avg/max/mdev = 0.489/0.549/0.587/0.042 ms
    
    ----------------------------------------------
    Pings (syd-au-ping.vultr.com):
    PING syd-au-ping.vultr.com (108.61.212.117) 56(84) bytes of data.
    64 bytes from 108.61.212.117.vultr.com (108.61.212.117): icmp_seq=1 ttl=49 time=198 ms
    64 bytes from 108.61.212.117.vultr.com (108.61.212.117): icmp_seq=2 ttl=49 time=199 ms
    64 bytes from 108.61.212.117.vultr.com (108.61.212.117): icmp_seq=3 ttl=49 time=198 ms
    
    --- syd-au-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2001ms
    rtt min/avg/max/mdev = 198.706/198.899/199.203/0.217 ms
    
    ----------------------------------------------
    Pings (hnd-jp-ping.vultr.com):
    PING hnd-jp-ping.vultr.com (108.61.201.151) 56(84) bytes of data.
    64 bytes from 108.61.201.151.vultr.com (108.61.201.151): icmp_seq=1 ttl=51 time=147 ms
    64 bytes from 108.61.201.151.vultr.com (108.61.201.151): icmp_seq=2 ttl=51 time=146 ms
    64 bytes from 108.61.201.151.vultr.com (108.61.201.151): icmp_seq=3 ttl=51 time=146 ms
    
    --- hnd-jp-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2000ms
    rtt min/avg/max/mdev = 146.939/147.070/147.280/0.467 ms
    
    ----------------------------------------------
    Pings (lax-ca-us-ping.vultr.com):
    PING lax-ca-us-ping.vultr.com (108.61.219.200) 56(84) bytes of data.
    64 bytes from 108.61.219.200.vultr.com (108.61.219.200): icmp_seq=1 ttl=55 time=27.9 ms
    64 bytes from 108.61.219.200.vultr.com (108.61.219.200): icmp_seq=2 ttl=55 time=27.5 ms
    64 bytes from 108.61.219.200.vultr.com (108.61.219.200): icmp_seq=3 ttl=55 time=27.5 ms
    
    --- lax-ca-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2003ms
    rtt min/avg/max/mdev = 27.545/27.695/27.990/0.283 ms
    
    ----------------------------------------------
    Pings (wa-us-ping.vultr.com):
    PING wa-us-ping.vultr.com (108.61.194.105) 56(84) bytes of data.
    64 bytes from 108.61.194.105.vultr.com (108.61.194.105): icmp_seq=1 ttl=56 time=52.8 ms
    64 bytes from 108.61.194.105.vultr.com (108.61.194.105): icmp_seq=2 ttl=56 time=52.9 ms
    64 bytes from 108.61.194.105.vultr.com (108.61.194.105): icmp_seq=3 ttl=56 time=52.8 ms
    
    --- wa-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2002ms
    rtt min/avg/max/mdev = 52.822/52.857/52.908/0.036 ms
    
    ----------------------------------------------
    Pings (tx-us-ping.vultr.com):
    PING tx-us-ping.vultr.com (108.61.224.175) 56(84) bytes of data.
    64 bytes from 108.61.224.175.vultr.com (108.61.224.175): icmp_seq=1 ttl=55 time=0.630 ms
    64 bytes from 108.61.224.175.vultr.com (108.61.224.175): icmp_seq=2 ttl=55 time=0.771 ms
    64 bytes from 108.61.224.175.vultr.com (108.61.224.175): icmp_seq=3 ttl=55 time=0.753 ms
    
    --- tx-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2001ms
    rtt min/avg/max/mdev = 0.630/0.718/0.771/0.062 ms
    
    ----------------------------------------------
    Pings (il-us-ping.vultr.com):
    PING il-us-ping.vultr.com (107.191.51.12) 56(84) bytes of data.
    64 bytes from 107.191.51.12.vultr.com (107.191.51.12): icmp_seq=1 ttl=54 time=27.1 ms
    64 bytes from 107.191.51.12.vultr.com (107.191.51.12): icmp_seq=2 ttl=55 time=25.4 ms
    64 bytes from 107.191.51.12.vultr.com (107.191.51.12): icmp_seq=3 ttl=56 time=26.8 ms
    
    --- il-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2002ms
    rtt min/avg/max/mdev = 25.462/26.506/27.190/0.773 ms
    
    ----------------------------------------------
    Pings (ga-us-ping.vultr.com):
    PING ga-us-ping.vultr.com (108.61.193.166) 56(84) bytes of data.
    64 bytes from 108.61.193.166.vultr.com (108.61.193.166): icmp_seq=1 ttl=54 time=20.7 ms
    64 bytes from 108.61.193.166.vultr.com (108.61.193.166): icmp_seq=2 ttl=54 time=20.8 ms
    64 bytes from 108.61.193.166.vultr.com (108.61.193.166): icmp_seq=3 ttl=54 time=20.8 ms
    
    --- ga-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2003ms
    rtt min/avg/max/mdev = 20.762/20.826/20.878/0.127 ms
    
    ----------------------------------------------
    Pings (fl-us-ping.vultr.com):
    PING fl-us-ping.vultr.com (104.156.244.232) 56(84) bytes of data.
    64 bytes from 104.156.244.232 (104.156.244.232): icmp_seq=1 ttl=56 time=30.0 ms
    64 bytes from 104.156.244.232 (104.156.244.232): icmp_seq=2 ttl=56 time=29.5 ms
    64 bytes from 104.156.244.232 (104.156.244.232): icmp_seq=3 ttl=56 time=29.6 ms
    
    --- fl-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2003ms
    rtt min/avg/max/mdev = 29.584/29.745/30.026/0.199 ms
    
    ----------------------------------------------
    Pings (nj-us-ping.vultr.com):
    PING nj-us-ping.vultr.com (108.61.149.182) 56(84) bytes of data.
    64 bytes from 108.61.149.182.vultr.com (108.61.149.182): icmp_seq=1 ttl=52 time=43.1 ms
    64 bytes from 108.61.149.182.vultr.com (108.61.149.182): icmp_seq=2 ttl=52 time=43.2 ms
    64 bytes from 108.61.149.182.vultr.com (108.61.149.182): icmp_seq=3 ttl=53 time=43.2 ms
    
    --- nj-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2002ms
    rtt min/avg/max/mdev = 43.176/43.243/43.285/0.176 ms
    
    ----------------------------------------------
    Pings (fra-de-ping.vultr.com):
    PING fra-de-ping.vultr.com (108.61.210.117) 56(84) bytes of data.
    64 bytes from 108.61.210.117.vultr.com (108.61.210.117): icmp_seq=1 ttl=56 time=124 ms
    64 bytes from 108.61.210.117.vultr.com (108.61.210.117): icmp_seq=2 ttl=56 time=124 ms
    64 bytes from 108.61.210.117.vultr.com (108.61.210.117): icmp_seq=3 ttl=56 time=123 ms
    
    --- fra-de-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2002ms
    rtt min/avg/max/mdev = 123.931/123.993/124.046/0.291 ms
    
    ----------------------------------------------
    Pings (ams-nl-ping.vultr.com):
    PING ams-nl-ping.vultr.com (108.61.198.102) 56(84) bytes of data.
    64 bytes from 108.61.198.102.vultr.com (108.61.198.102): icmp_seq=1 ttl=53 time=127 ms
    64 bytes from 108.61.198.102.vultr.com (108.61.198.102): icmp_seq=2 ttl=53 time=127 ms
    64 bytes from 108.61.198.102.vultr.com (108.61.198.102): icmp_seq=3 ttl=53 time=128 ms
    
    --- ams-nl-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2000ms
    rtt min/avg/max/mdev = 127.890/128.076/128.396/0.471 ms
    
    ----------------------------------------------
    Pings (lon-gb-ping.vultr.com):
    PING lon-gb-ping.vultr.com (108.61.196.101) 56(84) bytes of data.
    64 bytes from 108.61.196.101.vultr.com (108.61.196.101): icmp_seq=1 ttl=55 time=114 ms
    64 bytes from 108.61.196.101.vultr.com (108.61.196.101): icmp_seq=2 ttl=55 time=114 ms
    64 bytes from 108.61.196.101.vultr.com (108.61.196.101): icmp_seq=3 ttl=55 time=114 ms
    
    --- lon-gb-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2003ms
    rtt min/avg/max/mdev = 114.352/114.435/114.483/0.058 ms
    
    ----------------------------------------------
    Pings (par-fr-ping.vultr.com):
    PING par-fr-ping.vultr.com (108.61.209.127) 56(84) bytes of data.
    64 bytes from 108.61.209.127.vultr.com (108.61.209.127): icmp_seq=1 ttl=56 time=111 ms
    64 bytes from 108.61.209.127.vultr.com (108.61.209.127): icmp_seq=2 ttl=56 time=111 ms
    64 bytes from 108.61.209.127.vultr.com (108.61.209.127): icmp_seq=3 ttl=56 time=111 ms
    
    --- par-fr-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2002ms
    rtt min/avg/max/mdev = 111.917/111.939/111.967/0.020 ms
    
    ----------------------------------------------
    Pings (VersaWeb Las Vegas):
    PING 104.143.15.254 (104.143.15.254) 56(84) bytes of data.
    64 bytes from 104.143.15.254: icmp_seq=1 ttl=54 time=35.2 ms
    64 bytes from 104.143.15.254: icmp_seq=2 ttl=54 time=35.3 ms
    64 bytes from 104.143.15.254: icmp_seq=3 ttl=54 time=35.2 ms
    
    --- 104.143.15.254 ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2002ms
    rtt min/avg/max/mdev = 35.240/35.288/35.375/0.165 ms
    
    ----------------------------------------------
    Pings (VersaWeb Seattle):
    PING 76.164.234.1 (76.164.234.1) 56(84) bytes of data.
    64 bytes from 76.164.234.1: icmp_seq=1 ttl=55 time=60.3 ms
    64 bytes from 76.164.234.1: icmp_seq=2 ttl=55 time=60.4 ms
    64 bytes from 76.164.234.1: icmp_seq=3 ttl=55 time=60.5 ms
    
    --- 76.164.234.1 ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2002ms
    rtt min/avg/max/mdev = 60.338/60.437/60.517/0.214 ms
    
    ----------------------------------------------
    Pings (OVH Canada):
    PING bhs.proof.ovh.net (192.99.19.165) 56(84) bytes of data.
    64 bytes from bhs.proof.ovh.net (192.99.19.165): icmp_seq=1 ttl=54 time=36.9 ms
    64 bytes from bhs.proof.ovh.net (192.99.19.165): icmp_seq=2 ttl=54 time=36.8 ms
    64 bytes from bhs.proof.ovh.net (192.99.19.165): icmp_seq=3 ttl=54 time=36.9 ms
    
    --- bhs.proof.ovh.net ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2003ms
    rtt min/avg/max/mdev = 36.850/36.896/36.925/0.160 ms
    
    

    Code (Text):
    
    -------------------------------------------
    Running mtr tests...
    -------------------------------------------
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 cachefly.cachefly.net
    Start: Tue Feb 28 00:32:52 2017
    HOST: hostname          Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                        0.0%    10    0.9   0.9   0.7   1.2   0.0
      2.|-- ???                            100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                    0.0%    10    0.8   0.6   0.5   0.8   0.0
      4.|-- 144.168.32.1                    0.0%    10    0.6   0.8   0.5   2.8   0.6
      5.|-- ae32.cr3-dal3.ip4.gtt.net       0.0%    10    6.0   1.1   0.5   6.0   1.7
      6.|-- xe-11-2-0.cr4-dal3.ip4.gtt.net  0.0%    10    0.7   3.4   0.5  27.9   8.6
      7.|-- vip1.G-anycast1.cachefly.net    0.0%    10    0.6   0.6   0.5   0.6   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 speedtest.atlanta.linode.com
    Start: Tue Feb 28 00:33:32 2017
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                       0.0%    10    0.8   1.0   0.7   1.5   0.0
      2.|-- ???                           100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                   0.0%    10    0.6   0.7   0.6   0.8   0.0
      4.|-- 144.168.32.1                   0.0%    10    0.5   0.6   0.5   0.6   0.0
      5.|-- ae32.cr3-dal3.ip4.gtt.net      0.0%    10    0.6   0.9   0.5   3.3   0.7
      6.|-- et-7-3-0.cr1-atl1.ip4.gtt.net  0.0%    10   25.4  24.1  23.9  25.4   0.5
      7.|-- ip4.gtt.net                    0.0%    10   24.3  24.4  24.3  24.6   0.0
      8.|-- 74.207.239.7                   0.0%    10   24.2  24.3  24.2  24.4   0.0
      9.|-- speedtest.atlanta.linode.com   0.0%    10   24.2  24.1  24.0  24.3   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 speedtest.dallas.linode.com
    Start: Tue Feb 28 00:34:10 2017
    HOST: hostname       Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                     0.0%    10    0.7   1.1   0.7   2.4   0.3
      2.|-- ???                         100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                 0.0%    10    0.6   0.6   0.6   0.7   0.0
      4.|-- 144.168.32.1                 0.0%    10    0.5   0.5   0.5   0.6   0.0
      5.|-- EQIX-IX-DA.linode.com        0.0%    10    1.1   1.1   0.8   2.3   0.3
      6.|-- 173.255.207.5                0.0%    10    0.9   0.9   0.8   1.1   0.0
      7.|-- speedtest.dallas.linode.com  0.0%    10    0.6   0.7   0.6   0.8   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 mirror.us.leaseweb.net
    Start: Tue Feb 28 00:34:47 2017
    HOST: hostname             Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                           0.0%    10    1.3   0.9   0.8   1.3   0.0
      2.|-- ???                               100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                       0.0%    10    0.8   0.7   0.6   1.4   0.0
      4.|-- 144.168.32.1                       0.0%    10    0.6   0.5   0.5   0.7   0.0
      5.|-- chi-ms1.us.leaseweb.net            0.0%    10    0.6   0.6   0.5   0.6   0.0
      6.|-- te-3-4.bb01.wdc-01.leaseweb.net   80.0%    10   32.9  33.0  32.9  33.0   0.0
      7.|-- ae-51.br01.wdc-01.us.leaseweb.net  0.0%    10   32.8  32.9  32.8  33.0   0.0
      8.|-- po-7.ce02.wdc-01.us.leaseweb.net   0.0%    10   32.8  32.9  32.8  33.0   0.0
      9.|-- mirror.us.leaseweb.net             0.0%    10   32.8  32.9  32.8  32.9   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 speedtest.sea01.softlayer.com
    Start: Tue Feb 28 00:35:24 2017
    HOST: hostname                   Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                                 0.0%    10    1.0   0.9   0.7   1.4   0.0
      2.|-- ???                                     100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                             0.0%    10    0.6   0.6   0.5   0.7   0.0
      4.|-- 144.168.32.1                             0.0%    10    0.6   0.5   0.4   0.6   0.0
      5.|-- te1-5.bbr01.eq01.dal01.networklayer.com  0.0%    10    0.6   0.6   0.6   0.7   0.0
      6.|-- ae5.cbs02.eq01.dal03.networklayer.com   30.0%    10    2.2   2.4   1.8   2.8   0.0
      7.|-- ae1.cbs01.cs01.den01.networklayer.com    0.0%    10   15.8  16.4  15.8  16.9   0.0
      8.|-- ae8.bbr01.cs01.den01.networklayer.com    0.0%    10   28.8  17.4  14.8  28.8   5.2
      9.|-- ae0.bbr01.wb01.sea02.networklayer.com    0.0%    10   40.8  40.8  40.7  41.0   0.0
     10.|-- ae0.dar01.sr01.sea01.networklayer.com    0.0%    10   42.6  41.9  40.6  44.2   1.1
     11.|-- po1.fcr01.sr01.sea01.networklayer.com    0.0%    10   42.3  43.1  40.9  58.7   5.5
     12.|-- speedtest.sea01.softlayer.com            0.0%    10   40.6  40.6  40.5  40.7   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 speedtest.sjc01.softlayer.com
    Start: Tue Feb 28 00:35:59 2017
    HOST: hostname                   Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                                 0.0%    10    0.7   0.9   0.7   1.0   0.0
      2.|-- ???                                     100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                             0.0%    10    0.8   1.2   0.6   3.9   0.9
      4.|-- 144.168.32.1                             0.0%    10    0.5   0.7   0.4   1.5   0.0
      5.|-- te1-5.bbr01.eq01.dal01.networklayer.com  0.0%    10    0.7   1.6   0.5  11.1   3.2
      6.|-- ae5.cbs01.eq01.dal03.networklayer.com   50.0%    10    2.1   2.5   1.9   3.3   0.0
      7.|-- ae0.cbs01.cs01.lax01.networklayer.com   20.0%    10   31.4  31.2  30.4  31.6   0.0
      8.|-- ae7.cbs02.cs01.lax01.networklayer.com   10.0%    10   30.9  30.7  30.0  31.2   0.0
      9.|-- ae0.cbs02.eq01.sjc02.networklayer.com   10.0%    10   45.2  44.7  37.9  55.7   6.7
     10.|-- ae24.bbr02.eq01.sjc02.networklayer.com   0.0%    10   36.7  37.3  36.4  43.3   2.1
     11.|-- ae6.dar01.sjc01.networklayer.com         0.0%    10   36.7  36.7  36.5  37.1   0.0
     12.|-- po1.fcr01.sr01.sjc01.networklayer.com    0.0%    10   36.7  36.7  36.6  36.8   0.0
     13.|-- speedtest.sjc01.softlayer.com            0.0%    10   36.7  36.7  36.6  36.8   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 speedtest.wdc01.softlayer.com
    Start: Tue Feb 28 00:36:36 2017
    HOST: hostname                   Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                                 0.0%    10    0.8   0.9   0.7   1.1   0.0
      2.|-- ???                                     100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                             0.0%    10    0.6   0.8   0.6   1.7   0.0
      4.|-- 144.168.32.1                             0.0%    10    0.6   0.6   0.5   0.6   0.0
      5.|-- te1-5.bbr01.eq01.dal01.networklayer.com  0.0%    10    0.7   0.7   0.5   1.2   0.0
      6.|-- ae5.cbs02.eq01.dal03.networklayer.com   60.0%    10    4.8   4.0   2.4   6.5   1.8
      7.|-- ae0.cbs01.tl01.atl01.networklayer.com   10.0%    10   21.4  21.9  21.4  22.3   0.0
      8.|-- ae0.cbs01.eq01.wdc02.networklayer.com   50.0%    10   33.0  32.9  32.4  33.3   0.0
      9.|-- ae29.bbr02.eq01.wdc02.networklayer.com   0.0%    10   31.1  31.3  31.1  31.6   0.0
     10.|-- ae1.dar01.wdc01.networklayer.com         0.0%    10   32.3  32.5  31.7  38.3   1.9
     11.|-- po1.fcr01.sr01.wdc01.networklayer.com    0.0%    10  118.7  40.6  31.5 118.7  27.5
     12.|-- speedtest.wdc01.softlayer.com            0.0%    10   32.1  33.6  32.0  44.3   3.8
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 speedtest.tokyo.linode.com
    Start: Tue Feb 28 00:37:13 2017
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                       0.0%    10    0.9   1.0   0.7   1.8   0.0
      2.|-- ???                           100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                   0.0%    10    0.7   1.1   0.6   5.3   1.4
      4.|-- 144.168.32.1                   0.0%    10    0.6   2.9   0.5  22.1   6.8
      5.|-- ae32.cr3-dal3.ip4.gtt.net      0.0%    10    0.5   1.3   0.5   7.5   2.1
      6.|-- xe-2-2-0.cr2-lax2.ip4.gtt.net  0.0%    10   27.5  28.3  27.4  33.5   1.8
      7.|-- ip4.gtt.net                    0.0%    10   27.6  27.6  27.4  28.1   0.0
      8.|-- lacGCS001.int-gw.kddi.ne.jp    0.0%    10   27.6  27.7  27.5  28.2   0.0
      9.|-- lajbb001.int-gw.kddi.ne.jp     0.0%    10   28.2  32.3  27.5  74.0  14.6
     10.|-- otejbb205.int-gw.kddi.ne.jp    0.0%    10  135.7 136.6 135.6 139.7   1.4
     11.|-- cm-fcu204.kddnet.ad.jp         0.0%    10  136.8 140.2 136.5 145.9   3.3
     12.|-- 124.215.199.170                0.0%    10  146.8 146.3 146.0 147.5   0.3
     13.|-- speedtest.tokyo.linode.com     0.0%    10  138.7 138.2 138.1 138.7   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 speedtest.sng01.softlayer.com
    Start: Tue Feb 28 00:37:57 2017
    HOST: hostname                   Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                                 0.0%    10    0.7   0.9   0.7   1.4   0.0
      2.|-- ???                                     100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                             0.0%    10    1.7   0.7   0.5   1.7   0.0
      4.|-- 144.168.32.1                             0.0%    10    0.5   0.5   0.4   0.6   0.0
      5.|-- te1-5.bbr01.eq01.dal01.networklayer.com  0.0%    10    0.6   1.0   0.5   3.2   0.7
      6.|-- ae5.cbs01.eq01.dal03.networklayer.com   50.0%    10    3.3   2.4   1.7   3.3   0.5
      7.|-- ae0.cbs01.cs01.lax01.networklayer.com   20.0%    10   30.8  31.0  30.3  31.7   0.0
      8.|-- ae7.cbs02.cs01.lax01.networklayer.com    0.0%    10   30.5  30.8  30.3  31.3   0.0
      9.|-- ae0.cbs02.eq01.sjc02.networklayer.com   10.0%    10   38.5  38.1  37.5  39.2   0.4
     10.|-- ae24.bbr02.eq01.sjc02.networklayer.com   0.0%    10   36.4  36.9  36.3  40.5   1.2
     11.|-- ae0.bbr01.eq01.tok01.networklayer.com    0.0%    10  135.6 135.8 135.4 138.3   0.8
     12.|-- ae1.bbr01.eq01.sng02.networklayer.com    0.0%    10  220.0 220.3 219.9 220.9   0.0
     13.|-- ae5.dar01.sr03.sng01.networklayer.com    0.0%    10  219.6 222.2 219.5 244.0   7.7
     14.|-- po1.fcr01.sr03.sng01.networklayer.com   10.0%    10  212.0 215.0 211.7 225.9   5.6
     15.|-- speedtest.sng01.softlayer.com            0.0%    10  208.3 208.5 208.3 209.1   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 speedtest.london.linode.com
    Start: Tue Feb 28 00:38:38 2017
    HOST: hostname                 Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                               0.0%    10    0.8   1.1   0.8   3.5   0.7
      2.|-- ???                                   100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                           0.0%    10    0.6   0.7   0.5   1.2   0.0
      4.|-- 144.168.32.1                           0.0%    10    0.5   0.6   0.5   1.5   0.0
      5.|-- ae32.cr3-dal3.ip4.gtt.net              0.0%    10    0.6   0.6   0.5   0.7   0.0
      6.|-- be3257.ccr41.dfw03.atlas.cogentco.com  0.0%    10    1.0   1.2   0.8   2.4   0.3
      7.|-- be2764.ccr22.dfw01.atlas.cogentco.com  0.0%    10    0.9   1.2   0.9   1.4   0.0
      8.|-- be2433.ccr22.mci01.atlas.cogentco.com  0.0%    10   11.0  11.0  10.7  11.3   0.0
      9.|-- be2832.ccr42.ord01.atlas.cogentco.com  0.0%    10   24.9  24.8  24.6  25.0   0.0
     10.|-- be2718.ccr22.cle04.atlas.cogentco.com  0.0%    10   39.4  39.2  39.0  39.4   0.0
     11.|-- be2879.ccr22.alb02.atlas.cogentco.com  0.0%    10   42.3  42.5  42.3  43.8   0.3
     12.|-- be2302.ccr22.bos01.atlas.cogentco.com  0.0%    10   45.8  45.7  45.4  45.8   0.0
     13.|-- be2983.ccr42.lon13.atlas.cogentco.com  0.0%    10  107.9 108.0 107.8 108.2   0.0
     14.|-- be2871.ccr21.lon01.atlas.cogentco.com  0.0%    10  108.1 108.1 108.0 108.2   0.0
     15.|-- 204.68.252.86                          0.0%    10  109.7 108.6 108.4 109.7   0.3
     16.|-- gw-h10.linode.com                      0.0%    10  108.3 108.4 108.3 108.6   0.0
     17.|-- speedtest.london.linode.com            0.0%    10  108.1 108.2 108.1 108.3   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 mirror.i3d.net
    Start: Tue Feb 28 00:39:19 2017
    HOST: hostname                              Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                                            0.0%    10    1.0   1.1   0.7   2.1   0.3
      2.|-- ???                                                100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                                        0.0%    10    0.6   0.6   0.5   0.8   0.0
      4.|-- 144.168.32.1                                        0.0%    10    0.6   0.5   0.5   0.6   0.0
      5.|-- ae32.cr3-dal3.ip4.gtt.net                           0.0%    10    0.7   0.7   0.5   1.3   0.0
      6.|-- ae-10.r07.dllstx09.us.bb.gin.ntt.net                0.0%    10    2.3   5.3   0.7  37.7  11.4
      7.|-- ae-3.sayonara-jared.r10.dllstx09.us.bb.gin.ntt.net  0.0%    10  119.6 119.6 119.5 119.8   0.0
      8.|-- ae-14.r22.dllstx09.us.bb.gin.ntt.net                0.0%    10    0.9   0.9   0.8   1.2   0.0
      9.|-- ae-1.r22.asbnva02.us.bb.gin.ntt.net                 0.0%    10   39.5  39.0  38.9  39.5   0.0
     10.|-- ae-0.sayonara-jared.r23.asbnva02.us.bb.gin.ntt.net  0.0%    10   40.5  39.9  38.9  42.7   1.1
     11.|-- ae-2.r25.amstnl02.nl.bb.gin.ntt.net                 0.0%    10  121.7 121.7 121.6 121.8   0.0
     12.|-- ae-1.r03.amstnl02.nl.bb.gin.ntt.net                 0.0%    10  121.9 121.8 121.8 121.9   0.0
     13.|-- 81.20.65.34                                         0.0%    10  122.6 124.4 122.6 130.0   2.6
     14.|-- 100ge.br2-cr0.smartdc.rtm.i3d.net                   0.0%    10  280.4 268.1 125.5 294.7  51.5
     15.|-- hosted-by-i3d.net                                   0.0%    10  124.5 124.6 124.5 124.7   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 syd-au-ping.vultr.com
    Start: Tue Feb 28 00:40:00 2017
    HOST: hostname                       Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                                     0.0%    10    0.9   0.9   0.8   1.2   0.0
      2.|-- ???                                         100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                                 0.0%    10    0.8   1.2   0.6   4.1   0.9
      4.|-- 144.168.32.1                                 0.0%    10    0.6   0.6   0.5   0.8   0.0
      5.|-- 10gigabitethernet3-1.core1.dal1.he.net       0.0%    10    0.5  15.0   0.5  31.9  12.5
      6.|-- 10ge9-1.core3.fmt2.he.net                    0.0%    10   40.7  68.3  40.7 190.3  48.8
      7.|-- 10ge5-4.core1.sjc1.he.net                    0.0%    10   46.7  44.8  41.2  48.4   2.5
      8.|-- vocus.gigabitethernet2-13.core1.sjc1.he.net  0.0%    10   44.1  44.3  44.1  45.4   0.3
      9.|-- bundle-153.cor02.sjc01.ca.vocus.net          0.0%    10  199.3 199.4 199.3 199.5   0.0
     10.|-- 100g-0-0-0-0.cor01.sjc01.ca.vocus.net        0.0%    10  198.8 198.9 198.8 199.1   0.0
     11.|-- 100g-0-0-0-0.cor01.lax01.ca.vocus.net        0.0%    10  199.3 199.4 199.1 199.7   0.0
     12.|-- bundle-200.cor01.alb01.akl.vocus.net.nz      0.0%    10  199.0 199.1 198.9 199.4   0.0
     13.|-- ten-0-3-0-2.cor03.syd03.nsw.vocus.net.au     0.0%    10  199.0 199.0 198.8 199.2   0.0
     14.|-- bundle-100.bdr04.syd03.nsw.VOCUS.net.au      0.0%    10  200.2 247.7 199.6 342.7  59.2
     15.|-- ip-134.197.255.49.in-addr.VOCUS.net.au       0.0%    10  199.4 199.3 199.1 199.5   0.0
     16.|-- xe-1-0-1.gw102.sy3.ap.equinix.com            0.0%    10  199.3 203.9 199.2 241.5  13.3
     17.|-- 180.189.25.6                                 0.0%    10  199.1 200.3 199.1 207.0   2.4
     18.|-- vl901-ds1-b5-r1120.aus1.choopa.net           0.0%    10  199.9 199.9 199.7 200.7   0.0
     19.|-- ???                                         100.0    10    0.0   0.0   0.0   0.0   0.0
     20.|-- 108.61.212.117.vultr.com                     0.0%    10  198.9 198.8 198.7 199.1   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 hnd-jp-ping.vultr.com
    Start: Tue Feb 28 00:40:40 2017
    HOST: hostname                              Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                                            0.0%    10    0.8   0.9   0.8   1.5   0.0
      2.|-- ???                                                100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                                        0.0%    10    0.6   0.6   0.6   0.7   0.0
      4.|-- 144.168.32.1                                        0.0%    10    0.6   2.3   0.4  17.3   5.3
      5.|-- ae32.cr3-dal3.ip4.gtt.net                           0.0%    10    1.2   0.9   0.6   1.6   0.0
      6.|-- ae-10.r07.dllstx09.us.bb.gin.ntt.net                0.0%    10    0.9   1.7   0.5   8.1   2.2
      7.|-- ae-3.sayonara-jared.r11.dllstx09.us.bb.gin.ntt.net  0.0%    10  146.9 147.0 146.8 148.0   0.3
      8.|-- ae-1.sayonara-jared.r23.dllstx09.us.bb.gin.ntt.net  0.0%    10    0.8   0.9   0.7   1.0   0.0
      9.|-- ae-8.sayonara-jared.r23.snjsca04.us.bb.gin.ntt.net  0.0%    10   38.6  38.6  38.5  38.7   0.0
     10.|-- ae-22.r30.tokyjp05.jp.bb.gin.ntt.net               10.0%    10  147.5 147.2 146.2 151.9   1.7
     11.|-- ae-5.r02.tokyjp03.jp.bb.gin.ntt.net                 0.0%    10  143.4 142.3 142.1 143.4   0.3
     12.|-- 117.103.177.122                                     0.0%    10  147.1 146.9 146.7 147.1   0.0
     13.|-- vl516-ds1-b5-r2605.tyo1.choopa.net                  0.0%    10  143.9 143.9 143.9 144.1   0.0
     14.|-- ???                                                100.0    10    0.0   0.0   0.0   0.0   0.0
     15.|-- 108.61.201.151.vultr.com                            0.0%    10  147.4 147.1 147.0 147.4   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 lax-ca-us-ping.vultr.com
    Start: Tue Feb 28 00:41:19 2017
    HOST: hostname             Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                           0.0%    10    0.9   1.0   0.8   2.0   0.0
      2.|-- ???                               100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                       0.0%    10    0.8   0.6   0.5   0.8   0.0
      4.|-- 144.168.32.1                       0.0%    10    0.5   1.1   0.5   6.0   1.6
      5.|-- ae32.cr3-dal3.ip4.gtt.net          0.0%    10    0.5   0.7   0.5   1.3   0.0
      6.|-- xe-10-1-0.cr2-lax2.ip4.gtt.net     0.0%    10   27.5  27.6  27.4  28.5   0.0
      7.|-- as20473-gw.lax20.ip4.gtt.net       0.0%    10   27.5  37.0  27.5  54.6  11.1
      8.|-- vl901-ds1-b5-c705.lax3.choopa.net  0.0%    10   27.9  28.7  27.8  31.9   1.4
      9.|-- ???                               100.0    10    0.0   0.0   0.0   0.0   0.0
     10.|-- 108.61.219.200.vultr.com           0.0%    10   27.7  27.6  27.6  27.8   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 wa-us-ping.vultr.com
    Start: Tue Feb 28 00:41:56 2017
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                       0.0%    10    1.1   1.1   0.7   3.5   0.8
      2.|-- ???                           100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                   0.0%    10    0.7   0.7   0.6   1.7   0.3
      4.|-- 144.168.32.1                   0.0%    10    0.5   0.7   0.5   1.6   0.0
      5.|-- ae32.cr3-dal3.ip4.gtt.net      0.0%    10    0.6   1.7   0.5   5.7   1.6
      6.|-- et-2-3-0.cr3-sea2.ip4.gtt.net  0.0%    10   52.9  53.0  52.8  53.9   0.0
      7.|-- choopa-gw.ip4.gtt.net          0.0%    10   53.1  54.6  52.9  60.4   2.5
      8.|-- ???                           100.0    10    0.0   0.0   0.0   0.0   0.0
      9.|-- 108.61.194.105.vultr.com       0.0%    10   52.8  52.9  52.8  53.0   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 tx-us-ping.vultr.com
    Start: Tue Feb 28 00:42:36 2017
    HOST: hostname              Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                            0.0%    10    0.9   1.5   0.7   6.9   1.8
      2.|-- ???                                100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                        0.0%    10    0.6   0.7   0.6   0.9   0.0
      4.|-- 144.168.32.1                        0.0%    10    0.6   0.6   0.5   0.6   0.0
      5.|-- ae32.cr3-dal3.ip4.gtt.net           0.0%    10    0.6   0.6   0.6   0.7   0.0
      6.|-- xe-3-3-0.cr0-dal2.ip4.gtt.net       0.0%    10    1.3   0.9   0.6   1.8   0.0
      7.|-- ip4.gtt.net                         0.0%    10    0.6   0.9   0.6   1.8   0.0
      8.|-- vl902-ds1-b5-02.04.dal4.choopa.net  0.0%    10    1.5   2.1   1.4   7.9   1.9
      9.|-- ???                                100.0    10    0.0   0.0   0.0   0.0   0.0
     10.|-- 108.61.224.175.vultr.com            0.0%    10    0.9   0.8   0.7   0.9   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 il-us-ping.vultr.com
    Start: Tue Feb 28 00:43:13 2017
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                       0.0%    10    0.8   0.9   0.8   1.1   0.0
      2.|-- ???                           100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                   0.0%    10    0.6   0.6   0.5   0.7   0.0
      4.|-- 144.168.32.1                   0.0%    10    0.6   2.6   0.5  21.3   6.6
      5.|-- ae32.cr3-dal3.ip4.gtt.net      0.0%    10    0.6   0.6   0.5   0.7   0.0
      6.|-- xe-3-1-2.cr8-chi1.ip4.gtt.net  0.0%    10   26.2  27.7  26.1  41.2   4.7
      7.|-- ip4.gtt.net                    0.0%    10   25.5  28.6  25.2  34.3   3.4
      8.|-- ???                           100.0    10    0.0   0.0   0.0   0.0   0.0
      9.|-- 107.191.51.12.vultr.com        0.0%    10   26.9  26.8  25.5  27.1   0.3
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 ga-us-ping.vultr.com
    Start: Tue Feb 28 00:43:54 2017
    HOST: hostname                              Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                                            0.0%    10    0.8   0.9   0.7   1.1   0.0
      2.|-- ???                                                100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                                        0.0%    10    0.6   0.7   0.6   1.5   0.0
      4.|-- 144.168.32.1                                        0.0%    10    0.4   0.5   0.4   0.6   0.0
      5.|-- ae32.cr3-dal3.ip4.gtt.net                           0.0%    10    0.5   1.0   0.5   4.6   1.2
      6.|-- be3257.ccr41.dfw03.atlas.cogentco.com               0.0%    10    2.2   1.9   1.0   8.4   2.3
      7.|-- be2763.ccr21.dfw01.atlas.cogentco.com               0.0%    10    1.3   1.0   0.9   1.3   0.0
      8.|-- be2441.ccr41.iah01.atlas.cogentco.com               0.0%    10    6.1   6.3   6.1   6.6   0.0
      9.|-- be2687.ccr41.atl01.atlas.cogentco.com               0.0%    10   22.4  22.4  22.2  23.1   0.0
     10.|-- te0-0-2-0.rcr11.b009789-2.atl01.atlas.cogentco.com  0.0%    10   22.8  23.0  22.8  23.1   0.0
     11.|-- 38.140.47.10                                        0.0%    10   23.0  21.5  20.7  25.5   1.5
     12.|-- vl901-ds1-b5-r7.atl2.choopa.net                     0.0%    10   91.0  28.2  21.1  91.0  22.1
     13.|-- ???                                                100.0    10    0.0   0.0   0.0   0.0   0.0
     14.|-- 108.61.193.166.vultr.com                            0.0%    10   20.8  20.9  20.7  21.1   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 fl-us-ping.vultr.com
    Start: Tue Feb 28 00:44:35 2017
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                       0.0%    10    0.8   0.9   0.7   1.0   0.0
      2.|-- ???                           100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                   0.0%    10    0.7   0.7   0.6   0.8   0.0
      4.|-- 144.168.32.1                   0.0%    10    0.6   0.6   0.5   0.7   0.0
      5.|-- ae32.cr3-dal3.ip4.gtt.net      0.0%    10    0.6   1.1   0.5   3.6   0.8
      6.|-- et-2-3-0.cr2-mia1.ip4.gtt.net  0.0%    10   29.6  30.1  29.4  35.4   1.8
      7.|-- as20473-gw.mia12.ip4.gtt.net   0.0%    10   29.7 119.2  29.7 909.2 277.6
      8.|-- ???                           100.0    10    0.0   0.0   0.0   0.0   0.0
      9.|-- 104.156.244.232                0.0%    10   29.7  29.8  29.6  30.2   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 nj-us-ping.vultr.com
    Start: Tue Feb 28 00:45:09 2017
    HOST: hostname           Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                         0.0%    10    0.9   0.9   0.7   1.2   0.0
      2.|-- ???                             100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                     0.0%    10    0.5   0.6   0.5   0.8   0.0
      4.|-- 144.168.32.1                     0.0%    10    0.5   0.6   0.5   0.7   0.0
      5.|-- ae32.cr3-dal3.ip4.gtt.net        0.0%    10    0.6   3.1   0.6  24.9   7.6
      6.|-- xe-10-1-1.cr1-nyc4.ip4.gtt.net   0.0%    10   40.1  41.5  40.0  51.9   3.7
      7.|-- as20473-gw.nyc41.ip4.gtt.net     0.0%    10   39.4  43.8  39.3  50.0   4.0
      8.|-- vl50-br1.pnj1.choopa.net         0.0%    10   39.1  39.2  39.1  39.7   0.0
      9.|-- vl139-c4-3-b5-2.pnj1.choopa.net  0.0%    10   39.9  39.7  39.6  39.9   0.0
     10.|-- ???                             100.0    10    0.0   0.0   0.0   0.0   0.0
     11.|-- 108.61.149.182.vultr.com         0.0%    10   43.1  43.1  43.0  43.2   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 fra-de-ping.vultr.com
    Start: Tue Feb 28 00:45:40 2017
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                       0.0%    10    0.8   0.8   0.7   0.9   0.0
      2.|-- ???                           100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                   0.0%    10    0.6   0.6   0.5   0.7   0.0
      4.|-- 144.168.32.1                   0.0%    10    0.6   0.6   0.5   0.6   0.0
      5.|-- ae32.cr3-dal3.ip4.gtt.net      0.0%    10    0.6   2.6   0.5  21.0   6.4
      6.|-- xe-0-2-2.cr1-fra2.ip4.gtt.net  0.0%    10  124.0 124.0 123.9 124.0   0.0
      7.|-- ip4.gtt.net                    0.0%    10  131.2 175.1 123.9 267.8  58.8
      8.|-- ???                           100.0    10    0.0   0.0   0.0   0.0   0.0
      9.|-- 108.61.210.117.vultr.com       0.0%    10  124.0 124.0 123.9 124.0   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 ams-nl-ping.vultr.com
    Start: Tue Feb 28 00:46:14 2017
    HOST: hostname                              Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                                            0.0%    10    0.8   0.9   0.7   1.1   0.0
      2.|-- ???                                                100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                                        0.0%    10    0.7   0.8   0.6   1.7   0.0
      4.|-- 144.168.32.1                                        0.0%    10    0.6   0.5   0.4   0.7   0.0
      5.|-- ae32.cr3-dal3.ip4.gtt.net                           0.0%    10    1.8   1.0   0.5   1.8   0.0
      6.|-- ae-10.r07.dllstx09.us.bb.gin.ntt.net                0.0%    10    1.5   2.2   0.6  10.1   2.8
      7.|-- ae-3.sayonara-jared.r11.dllstx09.us.bb.gin.ntt.net  0.0%    10  122.2 122.2 122.0 122.6   0.0
      8.|-- ae-0.r22.dllstx09.us.bb.gin.ntt.net                 0.0%    10    0.8   1.3   0.8   5.1   1.2
      9.|-- ae-1.r22.asbnva02.us.bb.gin.ntt.net                 0.0%    10   40.5  40.4  39.7  41.7   0.3
     10.|-- ae-0.sayonara-jared.r23.asbnva02.us.bb.gin.ntt.net  0.0%    10   39.8  40.1  39.8  41.8   0.3
     11.|-- ae-2.r25.amstnl02.nl.bb.gin.ntt.net                 0.0%    10  122.3 122.5 122.3 123.0   0.0
     12.|-- ae-2.r02.amstnl02.nl.bb.gin.ntt.net                 0.0%    10  124.3 124.5 124.3 126.0   0.3
     13.|-- 81.20.72.122                                        0.0%    10  310.0 248.3 128.1 330.1  75.4
     14.|-- ???                                                100.0    10    0.0   0.0   0.0   0.0   0.0
     15.|-- 108.61.198.102.vultr.com                            0.0%    10  128.0 128.1 127.8 129.7   0.5
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 lon-gb-ping.vultr.com
    Start: Tue Feb 28 00:46:52 2017
    HOST: hostname                              Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                                            0.0%    10    0.9   0.9   0.7   1.2   0.0
      2.|-- ???                                                100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                                        0.0%    10    0.8   0.9   0.6   2.3   0.5
      4.|-- 144.168.32.1                                        0.0%    10    0.6   0.5   0.5   0.7   0.0
      5.|-- ae32.cr3-dal3.ip4.gtt.net                           0.0%    10    0.7   0.6   0.5   0.7   0.0
      6.|-- ae-10.r07.dllstx09.us.bb.gin.ntt.net                0.0%    10    1.2   1.7   0.6   5.1   1.5
      7.|-- ae-3.sayonara-jared.r11.dllstx09.us.bb.gin.ntt.net  0.0%    10  110.6 110.6 110.5 110.8   0.0
      8.|-- ae-1.sayonara-jared.r23.dllstx09.us.bb.gin.ntt.net  0.0%    10    1.0   1.5   0.8   5.0   1.3
      9.|-- ae-3.sayonara-jared.r20.chcgil09.us.bb.gin.ntt.net  0.0%    10   24.9  25.5  24.8  29.0   1.1
     10.|-- ae-0.sayonara-jared.r25.nycmny01.us.bb.gin.ntt.net  0.0%    10   42.5  42.6  42.4  43.6   0.0
     11.|-- ae-1.sayonara-jared.r24.nycmny01.us.bb.gin.ntt.net  0.0%    10   41.3  41.0  40.4  41.8   0.0
     12.|-- ae-9.r24.londen12.uk.bb.gin.ntt.net                 0.0%    10  112.7 114.0 112.6 125.8   4.1
     13.|-- ae-21.r00.londen10.uk.bb.gin.ntt.net                0.0%    10  112.8 112.6 112.5 113.0   0.0
     14.|-- 5.158.213.46                                        0.0%    10  114.7 124.4 112.6 217.7  32.8
     15.|-- ???                                                100.0    10    0.0   0.0   0.0   0.0   0.0
     16.|-- 108.61.196.101.vultr.com                            0.0%    10  112.5 112.6 112.5 112.7   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 par-fr-ping.vultr.com
    Start: Tue Feb 28 00:47:33 2017
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                       0.0%    10    0.9   0.9   0.8   1.2   0.0
      2.|-- ???                           100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                   0.0%    10    0.7   0.6   0.5   0.7   0.0
      4.|-- 144.168.32.1                   0.0%    10    0.5   0.6   0.5   0.6   0.0
      5.|-- ae32.cr3-dal3.ip4.gtt.net      0.0%    10    0.6   0.7   0.6   1.2   0.0
      6.|-- xe-3-1-2.cr0-par7.ip4.gtt.net  0.0%    10  112.0 112.0 111.9 112.1   0.0
      7.|-- ip4.gtt.net                    0.0%    10  111.9 112.1 111.9 112.4   0.0
      8.|-- ???                           100.0    10    0.0   0.0   0.0   0.0   0.0
      9.|-- 108.61.209.127.vultr.com       0.0%    10  112.1 112.1 111.9 112.3   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 VersaWeb Las Vegas
    Start: Tue Feb 28 00:48:11 2017
    HOST: hostname                  Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                                0.0%    10    1.2   0.9   0.8   1.2   0.0
      2.|-- ???                                    100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                            0.0%    10    0.7   0.6   0.6   0.8   0.0
      4.|-- 144.168.32.1                            0.0%    10    0.6   1.2   0.5   7.1   2.0
      5.|-- 10gigabitethernet3-1.core1.dal1.he.net  0.0%    10   10.6   7.5   0.4  53.8  16.6
      6.|-- 100ge4-2.core1.phx2.he.net              0.0%    10   20.6  24.0  19.4  29.3   3.7
      7.|-- 100ge11-2.core1.lax2.he.net             0.0%    10   28.0  30.5  28.0  38.4   3.2
      8.|-- 10ge3-1.core1.las1.he.net               0.0%    10   43.8  39.0  35.4  46.7   4.7
      9.|-- 172.18.0.22                             0.0%    10   35.6  35.6  35.5  36.2   0.0
     10.|-- core1.las1.as53340.net                  0.0%    10   35.4  37.8  35.2  41.8   2.4
     11.|-- 192.228.109.86                          0.0%    10   35.6  35.7  35.5  35.8   0.0
     12.|-- lg.las1.ultravps.net                    0.0%    10   35.5  35.5  35.3  36.1   0.0
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 VersaWeb Seattle
    Start: Tue Feb 28 00:48:51 2017
    HOST: hostname                  Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                                0.0%    10    0.7   1.1   0.7   2.3   0.3
      2.|-- ???                                    100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1                            0.0%    10    0.6   0.6   0.6   0.7   0.0
      4.|-- 144.168.32.1                            0.0%    10    0.5   0.5   0.4   0.6   0.0
      5.|-- 10gigabitethernet3-1.core1.dal1.he.net  0.0%    10   10.8   5.2   0.5  11.0   3.7
      6.|-- 10ge9-1.core3.fmt2.he.net               0.0%    10  186.7  63.7  40.6 186.7  46.4
      7.|-- 10ge7-9.core1.sjc2.he.net               0.0%    10   64.5  65.3  43.1  73.6  10.0
      8.|-- 100ge8-2.core1.sea1.he.net              0.0%    10   60.2  61.7  60.1  69.3   3.1
      9.|-- six.core1.sea1.fiberhub.net             0.0%    10   60.1  60.3  60.1  60.5   0.0
     10.|-- 76.164.234.1                            0.0%    10   63.4  60.6  60.2  63.4   0.9
    
    ----------------------------------------------
    mtr --report -w 200 --report-cycles=10 OVH Canada
    Start: Tue Feb 28 00:49:31 2017
    HOST: hostname     Loss%   Snt   Last   Avg  Best  Wrst StDev
      1.|-- 10.0.0.1                   0.0%    10    0.8   1.1   0.8   2.3   0.3
      2.|-- ???                       100.0    10    0.0   0.0   0.0   0.0   0.0
      3.|-- 144.168.41.1               0.0%    10    0.6   0.7   0.6   0.8   0.0
      4.|-- 144.168.32.1               0.0%    10    0.6   0.5   0.5   0.6   0.0
      5.|-- eqx.dal.ovh.net            0.0%    10    0.7   0.6   0.6   0.7   0.0
      6.|-- be100-1241.chi-5-a9.il.us  0.0%    10   20.8  20.9  20.8  21.1   0.0
      7.|-- be10-1313.bhs-g2-a9.qc.ca  0.0%    10   39.1  43.2  37.4  55.5   5.6
      8.|-- vl20.bhs-g2-a75-lo2.qc.ca  0.0%    10   36.8  36.8  36.7  36.9   0.0
      9.|-- be50-7.bhs-3b-a9.qc.ca     0.0%    10   37.9  38.2  37.5  39.2   0.5
     10.|-- bhs.proof.ovh.net          0.0%    10   36.9  37.1  36.9  37.5   0.0
    
    

    Code (Text):
    -------------------------------------------
    Check system entropy pool availability
    -------------------------------------------
    
    entropy_avail: 3939
    entropy_avail: 3939
    entropy_avail: 3939
    entropy_avail: 3939
    

    Code (Text):
    -------------------------------------------
    OpenSSL System Benchmark
    -------------------------------------------
    
    OpenSSL 1.0.1e-fips 11 Feb 2013
    -------------------------------------------
    openssl speed -multi 1 rsa4096 rsa2048 ecdsap256 sha256 sha1 md5 rc4 aes-256-cbc aes-128-cbc
    OpenSSL 1.0.1e-fips 11 Feb 2013
    built on: Mon Feb 20 14:38:48 UTC 2017
    options:bn(64,64) md2(int) rc4(16x,int) des(idx,cisc,16,int) aes(partial) idea(int) blowfish(idx)
    compiler: gcc -fPIC -DOPENSSL_PIC -DZLIB -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -DKRB5_MIT -m64 -DL_ENDIAN -DTERMIO -Wall -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches   -m64 -mtune=generic -Wa,--noexecstack -DPURIFY -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM
    md5              57574.11k   170867.20k   379621.03k   529391.96k   615167.32k
    sha1             64661.10k   183085.10k   394968.92k   558655.83k   653535.91k
    rc4             375459.62k   630414.98k   755245.31k   789643.26k   794962.60k
    aes-128 cbc     102907.70k   112506.11k   113366.27k   270685.53k   237040.98k
    aes-256 cbc      56163.03k    80985.43k    80819.46k   200818.35k   201476.78k
    sha256           40822.95k    88127.42k   152627.29k   183184.73k   192992.60k
                      sign    verify    sign/s verify/s
    rsa 2048 bits 0.001336s 0.000043s    748.5  23255.8
    rsa 4096 bits 0.010417s 0.000150s     96.0   6666.7
                                  sign    verify    sign/s verify/s
     256 bit ecdsa (nistp256)   0.0001s   0.0004s   9090.9   2293.6
    -------------------------------------------
    openssl speed -evp aes256 -multi 1
    OpenSSL 1.0.1e-fips 11 Feb 2013
    built on: Mon Feb 20 14:38:48 UTC 2017
    options:bn(64,64) md2(int) rc4(16x,int) des(idx,cisc,16,int) aes(partial) idea(int) blowfish(idx)
    compiler: gcc -fPIC -DOPENSSL_PIC -DZLIB -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -DKRB5_MIT -m64 -DL_ENDIAN -DTERMIO -Wall -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches   -m64 -mtune=generic -Wa,--noexecstack -DPURIFY -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM
    evp             449309.39k   473673.83k   479368.36k   485619.37k   480299.69k
    -------------------------------------------
    openssl speed -evp aes128 -multi 1
    OpenSSL 1.0.1e-fips 11 Feb 2013
    built on: Mon Feb 20 14:38:48 UTC 2017
    options:bn(64,64) md2(int) rc4(16x,int) des(idx,cisc,16,int) aes(partial) idea(int) blowfish(idx)
    compiler: gcc -fPIC -DOPENSSL_PIC -DZLIB -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -DKRB5_MIT -m64 -DL_ENDIAN -DTERMIO -Wall -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches   -m64 -mtune=generic -Wa,--noexecstack -DPURIFY -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM
    evp             621439.38k   660241.26k   678262.78k   683992.41k   668819.46k
    
    LibreSSL 2.4.5
    -------------------------------------------
    openssl speed -multi 1 rsa4096 rsa2048 ecdsap256 sha256 sha1 md5 rc4 aes-256-cbc aes-128-cbc
    LibreSSL 2.4.5
    built on: date not available
    options:bn(64,64) rc4(16x,int) des(idx,cisc,16,int) aes(partial) idea(int) blowfish(idx)
    compiler: information not available
    md5              67951.15k   182038.57k   315682.56k   551363.24k   623788.03k
    sha1             74535.10k   190810.11k   374115.50k   501501.61k   547146.41k
    rc4             390576.99k   656395.18k   774002.86k   789814.27k   795369.47k
    aes-128 cbc     102063.70k   112229.33k   115575.89k   269986.47k   271428.27k
    aes-256 cbc      71189.05k    80302.25k    82197.67k   200545.62k   201815.38k
    sha256           44051.87k    92405.21k   154429.61k   181567.49k   195616.77k
                      sign    verify    sign/s verify/s
    rsa 2048 bits 0.001293s 0.000041s    773.4  24390.2
    rsa 4096 bits 0.010362s 0.000150s     96.5   6666.7
                                  sign    verify    sign/s verify/s
     256 bit ecdsa (nistp256)   0.0001s   0.0005s   7633.6   2123.1
    -------------------------------------------
    openssl speed -evp aes256 -multi 1
    LibreSSL 2.4.5
    built on: date not available
    options:bn(64,64) rc4(16x,int) des(idx,cisc,16,int) aes(partial) idea(int) blowfish(idx)
    compiler: information not available
    evp             437289.47k   474457.30k   482897.15k   481242.79k   479431.34k
    -------------------------------------------
    openssl speed -evp aes128 -multi 1
    LibreSSL 2.4.5
    built on: date not available
    options:bn(64,64) rc4(16x,int) des(idx,cisc,16,int) aes(partial) idea(int) blowfish(idx)
    compiler: information not available
    evp             613904.81k   666096.09k   669970.26k   679162.20k   684168.53k
    -------------------------------------------
    openssl speed -evp chacha -multi 1
    LibreSSL 2.4.5
    built on: date not available
    options:bn(64,64) rc4(16x,int) des(idx,cisc,16,int) aes(partial) idea(int) blowfish(idx)
    compiler: information not available
    evp             178376.71k   276924.20k   292754.52k   304529.41k   241369.09k
    

    Code (Text):
    -------------------------------------------
    Running mysqlslap
    -------------------------------------------
    
    mysqlslap --auto-generate-sql --auto-generate-sql-add-autoincrement --auto-generate-sql-secondary-indexes=5 --number-int-cols=5 --number-char-cols=5 --number-of-queries=25000 --auto-generate-sql-unique-query-number=40 --auto-generate-sql-unique-write-number=40 --auto-generate-sql-write-number=1000 --concurrency=64 --iterations=10 --engine=myisam
    Benchmark
            Running for engine myisam
            Average number of seconds to run all queries: 2.312 seconds
            Minimum number of seconds to run all queries: 2.239 seconds
            Maximum number of seconds to run all queries: 2.546 seconds
            Number of clients running queries: 64
            Average number of queries per client: 390
    
    Dropping the database is potentially a very bad thing to do.
    Any data stored in the database will be destroyed.
    
    Do you really want to drop the 'test' database [y/N] Database "test" dropped
    

    Code (Text):
    -------------------------------------------
    System PHP Info
    -------------------------------------------
    
    CPU: 1 x Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz
                  total        used        free      shared  buff/cache   available
    Mem:           3790         406        2948          20         435        3124
    Low:           3790         842        2948
    High:             0           0           0
    Swap:          2047           0        2047
    ----------------------------------------------
    PHP 5.6.30 (cli) (built: Feb 28 2017 00:00:59)
    Copyright (c) 1997-2016 The PHP Group
    Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies
        with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2016, by Zend Technologies
    ----------------------------------------------
    Configuration File (php.ini) Path: /usr/local/lib
    Loaded Configuration File:         /usr/local/lib/php.ini
    Scan for additional .ini files in: /etc/centminmod/php.d
    Additional .ini files parsed:      /etc/centminmod/php.d/a_customphp.ini,
    /etc/centminmod/php.d/curlcainfo.ini,
    /etc/centminmod/php.d/geoip.ini,
    /etc/centminmod/php.d/igbinary.ini,
    /etc/centminmod/php.d/imagick.ini,
    /etc/centminmod/php.d/mailparse.ini,
    /etc/centminmod/php.d/memcache.ini,
    /etc/centminmod/php.d/memcached.ini,
    /etc/centminmod/php.d/redis.ini,
    /etc/centminmod/php.d/zendopcache.ini
    
    ----------------------------------------------
    [PHP Modules]
    bcmath
    bz2
    calendar
    Core
    ctype
    curl
    date
    dom
    enchant
    ereg
    exif
    filter
    ftp
    gd
    geoip
    gettext
    gmp
    hash
    iconv
    igbinary
    imagick
    imap
    intl
    json
    ldap
    libxml
    mailparse
    mbstring
    mcrypt
    memcache
    memcached
    mhash
    mysql
    mysqli
    mysqlnd
    openssl
    pcntl
    pcre
    PDO
    pdo_mysql
    pdo_sqlite
    Phar
    posix
    pspell
    readline
    redis
    Reflection
    session
    shmop
    SimpleXML
    snmp
    soap
    sockets
    SPL
    sqlite3
    standard
    sysvmsg
    sysvsem
    sysvshm
    tidy
    tokenizer
    xml
    xmlreader
    xmlrpc
    xmlwriter
    xsl
    Zend OPcache
    zip
    zlib
    
    [Zend Modules]
    Zend OPcache
    
    ----------------------------------------------
    -------------------------------------------
    Run PHP test Zend/bench.php
    -------------------------------------------
    
    simple             0.098
    simplecall         0.101
    simpleucall        0.102
    simpleudcall       0.107
    mandel             0.224
    mandel2            0.300
    ackermann(7)       0.122
    ary(50000)         0.020
    ary2(50000)        0.018
    ary3(2000)         0.174
    fibo(30)           0.343
    hash1(50000)       0.027
    hash2(500)         0.030
    heapsort(20000)    0.074
    matrix(20)         0.088
    nestedloop(12)     0.163
    sieve(30)          0.086
    strcat(200000)     0.011
    ------------------------
    Total              2.088
    real: 2.15s user: 2.09s sys: 0.02s cpu: 98% maxmem: 31268 KB cswaits: 7
    
    simple             0.098
    simplecall         0.202
    simpleucall        0.189
    simpleudcall       0.192
    mandel             0.293
    mandel2            0.298
    ackermann(7)       0.123
    ary(50000)         0.020
    ary2(50000)        0.018
    ary3(2000)         0.176
    fibo(30)           0.348
    hash1(50000)       0.026
    hash2(500)         0.030
    heapsort(20000)    0.077
    matrix(20)         0.093
    nestedloop(12)     0.168
    sieve(30)          0.089
    strcat(200000)     0.011
    ------------------------
    Total              2.449
    real: 2.52s user: 2.46s sys: 0.02s cpu: 98% maxmem: 31268 KB cswaits: 5
    
    simple             0.100
    simplecall         0.104
    simpleucall        0.103
    simpleudcall       0.105
    mandel             0.229
    mandel2            0.302
    ackermann(7)       0.125
    ary(50000)         0.020
    ary2(50000)        0.018
    ary3(2000)         0.181
    fibo(30)           0.353
    hash1(50000)       0.027
    hash2(500)         0.030
    heapsort(20000)    0.076
    matrix(20)         0.091
    nestedloop(12)     0.168
    sieve(30)          0.089
    strcat(200000)     0.011
    ------------------------
    Total              2.131
    real: 2.19s user: 2.14s sys: 0.02s cpu: 98% maxmem: 31268 KB cswaits: 5
    
    bench.php results from 3 runs
    2.088
    2.449
    2.131
    
    bench.php avg: 2.2227
    Avg: real: 2.29s user: 2.23s sys: 0.02s cpu: 98.00% maxmem: 31268.00KB cswaits: 5.67
    created results log at /home/phpbench_logs/bench_280217-002408.log
    server PHP info log at /home/phpbench_logs/bench_phpinfo_280217-002408.log
    
    -------------------------------------------
    Run PHP test Zend/micro_bench.php
    -------------------------------------------
    
    empty_loop         0.095
    func()             0.293    0.198
    undef_func()       0.296    0.201
    int_func()         0.267    0.172
    $x = self::$x      0.229    0.134
    self::$x = 0       0.224    0.130
    isset(self::$x)    0.192    0.097
    empty(self::$x)    0.203    0.108
    $x = Foo::$x       0.197    0.102
    Foo::$x = 0        0.192    0.097
    isset(Foo::$x)     0.168    0.073
    empty(Foo::$x)     0.179    0.084
    self::f()          0.340    0.245
    Foo::f()           0.297    0.202
    $x = $this->x      0.211    0.116
    $this->x = 0       0.273    0.178
    $this->x += 2      0.220    0.125
    ++$this->x         0.198    0.103
    --$this->x         0.191    0.096
    $this->x++         0.219    0.124
    $this->x--         0.212    0.117
    isset($this->x)    0.196    0.102
    empty($this->x)    0.211    0.116
    $this->f()         0.345    0.251
    $x = Foo::TEST     0.176    0.081
    new Foo()          0.598    0.503
    $x = TEST          0.138    0.043
    $x = $_GET         0.215    0.120
    $x = $GLOBALS['v'] 0.316    0.221
    $x = $hash['v']    0.229    0.134
    $x = $str[0]       0.292    0.197
    $x = $a ?: null    0.177    0.082
    $x = $f ?: tmp     0.255    0.160
    $x = $f ? $f : $a  0.283    0.188
    $x = $f ? $f : tmp 0.267    0.172
    ------------------------
    Total              8.394
    real: 8.45s user: 8.41s sys: 0.01s cpu: 99% maxmem: 19328 KB cswaits: 5
    
    empty_loop         0.096
    func()             0.305    0.210
    undef_func()       0.304    0.209
    int_func()         0.271    0.175
    $x = self::$x      0.229    0.134
    self::$x = 0       0.223    0.127
    isset(self::$x)    0.198    0.102
    empty(self::$x)    0.202    0.107
    $x = Foo::$x       0.201    0.105
    Foo::$x = 0        0.197    0.101
    isset(Foo::$x)     0.168    0.072
    empty(Foo::$x)     0.181    0.086
    self::f()          0.330    0.235
    Foo::f()           0.297    0.202
    $x = $this->x      0.203    0.108
    $this->x = 0       0.262    0.167
    $this->x += 2      0.214    0.119
    ++$this->x         0.188    0.093
    --$this->x         0.181    0.085
    $this->x++         0.215    0.119
    $this->x--         0.201    0.105
    isset($this->x)    0.187    0.092
    empty($this->x)    0.206    0.111
    $this->f()         0.345    0.250
    $x = Foo::TEST     0.176    0.080
    new Foo()          0.588    0.493
    $x = TEST          0.134    0.038
    $x = $_GET         0.210    0.115
    $x = $GLOBALS['v'] 0.299    0.203
    $x = $hash['v']    0.221    0.126
    $x = $str[0]       0.288    0.192
    $x = $a ?: null    0.176    0.080
    $x = $f ?: tmp     0.253    0.158
    $x = $f ? $f : $a  0.279    0.184
    $x = $f ? $f : tmp 0.275    0.179
    ------------------------
    Total              8.303
    real: 8.37s user: 8.30s sys: 0.02s cpu: 99% maxmem: 19328 KB cswaits: 5
    
    empty_loop         0.096
    func()             0.296    0.200
    undef_func()       0.300    0.203
    int_func()         0.266    0.170
    $x = self::$x      0.230    0.134
    self::$x = 0       0.232    0.135
    isset(self::$x)    0.192    0.096
    empty(self::$x)    0.202    0.105
    $x = Foo::$x       0.197    0.100
    Foo::$x = 0        0.194    0.097
    isset(Foo::$x)     0.168    0.072
    empty(Foo::$x)     0.181    0.084
    self::f()          0.329    0.232
    Foo::f()           0.298    0.202
    $x = $this->x      0.208    0.112
    $this->x = 0       0.267    0.170
    $this->x += 2      0.217    0.121
    ++$this->x         0.198    0.102
    --$this->x         0.181    0.085
    $this->x++         0.212    0.116
    $this->x--         0.205    0.108
    isset($this->x)    0.185    0.089
    empty($this->x)    0.203    0.106
    $this->f()         0.353    0.257
    $x = Foo::TEST     0.179    0.082
    new Foo()          0.599    0.502
    $x = TEST          0.151    0.055
    $x = $_GET         0.214    0.117
    $x = $GLOBALS['v'] 0.320    0.223
    $x = $hash['v']    0.223    0.127
    $x = $str[0]       0.291    0.194
    $x = $a ?: null    0.177    0.080
    $x = $f ?: tmp     0.256    0.160
    $x = $f ? $f : $a  0.280    0.184
    $x = $f ? $f : tmp 0.276    0.180
    ------------------------
    Total              8.375
    real: 8.43s user: 8.39s sys: 0.00s cpu: 99% maxmem: 19328 KB cswaits: 3
    
    micro_bench.php results from 3 runs
    8.394
    8.303
    8.375
    
    micro_bench.php avg: 8.3573
    Avg: real: 8.42s user: 8.37s sys: 0.01s cpu: 99.00% maxmem: 19328.00KB cswaits: 4.33
    created results log at /home/phpbench_logs/bench_micro_280217-002408.log
    server PHP info log at /home/phpbench_logs/bench_phpinfo_280217-002408.log
    
    

    Code (Text):
    ========================================================================
       BYTE UNIX Benchmarks (Version 5.1.3)
    
       System: hostname: GNU/Linux
       OS: GNU/Linux -- 3.10.0-514.el7.x86_64 -- #1 SMP Tue Nov 22 16:42:41 UTC 2016
       Machine: x86_64 (x86_64)
       Language: en_US.utf8 (charmap="UTF-8", collate="UTF-8")
       CPU 0: Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz (6600.0 bogomips)
              x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
       00:59:12 up  1:30,  2 users,  load average: 7.44, 4.25, 1.82; runlevel 3
    
    ------------------------------------------------------------------------
    Benchmark Run: Tue Feb 28 2017 00:59:12 - 01:23:11
    1 CPU in system; running 1 parallel copy of tests
    
    Dhrystone 2 using register variables       38235083.3 lps   (10.0 s, 7 samples)
    Double-Precision Whetstone                     4557.3 MWIPS (9.9 s, 7 samples)
    Execl Throughput                               4985.2 lps   (30.0 s, 2 samples)
    Pipe Throughput                             1822943.5 lps   (10.0 s, 7 samples)
    Pipe-based Context Switching                 392860.1 lps   (10.0 s, 7 samples)
    Process Creation                              17750.4 lps   (30.0 s, 2 samples)
    Shell Scripts (1 concurrent)                   5773.1 lpm   (60.0 s, 2 samples)
    Shell Scripts (16 concurrent)                   387.7 lpm   (60.1 s, 2 samples)
    Shell Scripts (8 concurrent)                    775.5 lpm   (60.0 s, 2 samples)
    System Call Overhead                        2750049.4 lps   (10.0 s, 7 samples)
    
    System Benchmarks Partial Index              BASELINE       RESULT    INDEX
    Dhrystone 2 using register variables         116700.0   38235083.3   3276.4
    Double-Precision Whetstone                       55.0       4557.3    828.6
    Execl Throughput                                 43.0       4985.2   1159.3
    Pipe Throughput                               12440.0    1822943.5   1465.4
    Pipe-based Context Switching                   4000.0     392860.1    982.2
    Process Creation                                126.0      17750.4   1408.8
    Shell Scripts (1 concurrent)                     42.4       5773.1   1361.6
    Shell Scripts (16 concurrent)                     ---        387.7      ---
    Shell Scripts (8 concurrent)                      6.0        775.5   1292.5
    System Call Overhead                          15000.0    2750049.4   1833.4
                                                                       ========
    System Benchmarks Index Score (Partial Only)                         1399.5
    
    

    Code (Text):
    -------------------------------------------
    centminmodbench.sh completed
    -------------------------------------------
    
    centminmodbench.sh Total Run Time: 3534.025360451 seconds
    


    Summary



    VPSDime's 4GB Premium KVM VPS plan overall looks great if memory and disk space is what you need at $20/month price point with 4GB ram and 60GB disk space. Compared to other provider's $20/month pricing point, having a single cpu core for 4GB Premium KVM VPS plan isn't ideal but it's one fast single cpu core. It's alot faster that alot of KVM providers offerings.

    With that said the included 10Gbit/s uplink for network connectivity is definitely nice if you want to use VPSDime's Premium KVM VPSes as some sort of backup VPS server especially with Dallas end to end point data transfers i.e. having a Linode or Vultr Dallas VPS transferring data between a VPSDime Premium KVM VPS at 138-499MB/s and 0.718ms ping times or Linode/Vultr Atlanta at 99-105MB/s with 24ms ping times :)
     
    Last edited: Feb 28, 2017
  3. inthecloudblog

    inthecloudblog Active Member

    199
    36
    28
    Jan 26, 2016
    Ratings:
    +83
    Local Time:
    6:14 AM
    1.4.6
    Regained access ;)
     
  4. Revenge

    Revenge Active Member

    469
    93
    28
    Feb 21, 2016
    Portugal
    Ratings:
    +354
    Local Time:
    10:14 AM
    1.9.x
    10.1.x
    You need to test also the cheaper version of 7$ month using OpenVZ with 6Gb of Ram and 4 vCpu.
    You won't regret it ;)
     
  5. eva2000

    eva2000 Administrator Staff Member

    53,142
    12,110
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,645
    Local Time:
    7:14 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Ah ha !
    I'd imagine that would be fast using same cpus Xeon E5-2643v1 ? Ah only so many hours in the day :D
     
  6. inthecloudblog

    inthecloudblog Active Member

    199
    36
    28
    Jan 26, 2016
    Ratings:
    +83
    Local Time:
    6:14 AM
    1.4.6
    Best thing I admire of Incero is network of Dallas.
    I reserve my comments about the owner.

    The owner of vps dime is a nice guy (oktay)
     
  7. eva2000

    eva2000 Administrator Staff Member

    53,142
    12,110
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,645
    Local Time:
    7:14 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Totally agree with everyone you said :)
     
  8. Revenge

    Revenge Active Member

    469
    93
    28
    Feb 21, 2016
    Portugal
    Ratings:
    +354
    Local Time:
    10:14 AM
    1.9.x
    10.1.x
    And the support of vpsdime is one of the best i have ever seen. Every ticket i create, i receive a response within minutes. Sometimes it even seems they are waiting for my ticket to respond immediately.

    The only downside i can see with vpsdime is that they don't have a anti ddos system. So if our site is normally a target of ddos attacks, we need to use something like Cloudflare and make sure our software is not prune to IP Loggers. For example, IPS 4.1 has a problem with that, because it allows for anyone to upload an Avatar using a URL; so any IP Logger will find the IP of the Server.
     
  9. eva2000

    eva2000 Administrator Staff Member

    53,142
    12,110
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,645
    Local Time:
    7:14 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    nice to know :)

    Indeed i think 2017 will eventually have more hosts offering DDOS protection though. Fingers crossed. Xenforo handles ip leaks via $config['untrustedHttpClient'] variable :)
    So you can setup a separate external server used as the client to pull such external images.