Welcome to Centmin Mod Community
Register Now

VaporNode VaporNode New Year's Sale - 40% KVM VPS !

Discussion in 'Virtual Private Server (VPS) hosting' started by eva2000, Jan 1, 2015.

  1. eva2000

    eva2000 Administrator Staff Member

    53,190
    12,113
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,649
    Local Time:
    11:53 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Came across this deal for 40% off VaporNode's KVM VPS servers at VaporNode New Year's Sale - 40% off Phoenix HA VPS - VPS Offers valid until January 2, 2015. Discount code = NEWYEAR2014CL

    They have OpenVZ and KVM VPS plans, for Centmin Mod and for performance, only interested in KVM VPS servers https://vapornode.com/cloud#kvm (click the KVM tab).


    Important Note: KVM VPS servers are not preinstalled, you need to install CentOS 6.6 64bit minimal ISO via VNC console to complete the server installation. Of course you can choose OpenVZ VPS which has the OS already installed just you can't tweak TCP /etc/sysctl.conf settings or use better kernels with OpenVZ like you can with KVM VPS servers.

    While bandwidth quota is low, for a testing server it doesn't really matter that much so sweet spot for Centmin Mod LEMP testing seems to be
    • VPR-KVM2 US$5.99 - 1 cpu 512MB 15GB SSD 750GB bandwidth 2Gbps DDOS protection KVM PhoenixNAP located after 40% discount = US$3.60/month
    • VPR-KVM3 US$9.99 - 2 cpu 1GB 30GB SSD 1TB bandwidth 2Gbps DDOS protection KVM PhoenixNAP located after 40% discount = US$6.00/month
    • VPR-KVM4 US$19.99 - 3 cpu 2G 45GB SSD 2TB bandwidth 2Gbps DDOS protection KVM PhoenixNAP located after 40% discount = US$12.00/month
    FYI, they have 6 month and 12 month discounts too. VPR-KVM1 with 10GB disk space is too small to be honest as a normal CentOS install already occupies around ~7GB.

    vapornode_kvm_plans_00.png
    I just picked up a few VPR-KVM2 servers for Centmin Mod LEMP cluster and load balanced testing :D They're being provisioned right now, so results and benchmarks will come later :)

    Happy New Year !
     
    Last edited: Jan 1, 2015
  2. eva2000

    eva2000 Administrator Staff Member

    53,190
    12,113
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,649
    Local Time:
    11:53 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    VaporNode Panel Overview

    vapornode_panel_00.png
    Individual VPS management vapornode_panel_01.png


    Reinstall OS via ISO
    vapornode_panel_02.png
    VNC Console to complete KVM installs

    vapornode_panel_04.png
    Allows 2 backup snapshots

    vapornode_panel_05.png
    VaporNode Seems to have a Firewall management section. Seems to be disabled by default which is what you want as Centmin Mod LEMP install already has CSF Firewall installed.

    vapornode_firewall_disable.png
    vapornode_firewall_00.png
    vapornode_firewall_01.png
    vapornode_firewall_02.png
    vapornode_firewall_03.png

    Java VNC Console Install for CentOS 6.6 64bit minimal ISO.

    You start up your KVM VPS via panel or portal control panels and then you have access to menu links which includes Console link to complete the CentOS 6.6 install.

    vapornode_centos66_minimal_vnc_console_00.png
    vapornode_centos66_minimal_vnc_console_01.png

    vapornode_centos66_minimal_vnc_console_02.png

    Need to Re-initialize the disk to proceed

    vapornode_centos66_minimal_vnc_console_03.png

    Select the timezone for the server - defaults to New York

    vapornode_centos66_minimal_vnc_console_04.png

    I believe server is in Phoenix, so set it as such. Got confirmation from tech support

    vapornode_centos66_minimal_vnc_console_05.png

    Set your server root user's password

    vapornode_centos66_minimal_vnc_console_06.png
    vapornode_centos66_minimal_vnc_console_07.png
    vapornode_centos66_minimal_vnc_console_08.png
    vapornode_centos66_minimal_vnc_console_09.png
    vapornode_centos66_minimal_vnc_console_10.png
    vapornode_centos66_minimal_vnc_console_11.png
    vapornode_centos66_minimal_vnc_console_12.png vapornode_centos66_minimal_vnc_console_14.png

    Looks like you also need to configure the networking too. I'll update with more info

    CentOS Networking Setup


    • Default CentOS 6.6 64bit minimal ISO install as network ifcfg-eth0 stopped and default is configured for DHCP assigning of IPs. On VaporNode it seems you need to reconfigure /etc/sysconfig/network-scripts/ifcfg-eth0 for static IP address.
    • To configure this you need to log into your VPS via the java VNC console as you will not have remote SSH access to your VPS until you properly configure your networking as outlined below.
    • You will not have internet access from your VPS until networking is configured, so minimal installs can't install nano text editor. You have to use VIM/VI text editor to do the below edits. Vim cheat sheet can help with commands. Basically to edit a file type:
      Code:
      vi /etc/sysconfig/network
      . Then to go into edit mode type capital i = I and use cursor to navigate around and edit. Then once finished editing, hit ESC key to exit from editor mode and then to save and exit type :wq and hit enter

    Default DHCP setup (has ONBOOT=no I changed it to ONBOOT=yes)

    network_setup_00.png

    Need to change to static IP setup below (IP address, gateway and netmask etc are provided in welcome email for provisioned VPS).

    Change BOOTPROTO=none and ensure ONBOOT=yes and then add IPADDR=youripaddress and NETMASK=255.255.255.0 and PEERDNS=no

    network_setup_01.png

    Then edit /etc/resolv.conf
    Code:
    nameserver 8.8.8.8
    nameserver 8.8.4.4
    
    Then edit /etc/sysconfig/network with your HOSTNAME (used on order form) and GATEWAY provided in welcome email.

    Code:
    cat /etc/sysconfig/network
    NETWORKING=yes
    HOSTNAME=myhostname.centminmod.com
    GATEWAY=104.140.67.1
    
    Then type in SSH
    Code:
    hostname yourhostname
    
    for example if my hostname is myhostname.centminmod.com
    Code:
    hostname myhostname.centminmod.com
    
    Then restart network service
    Code:
    service network restart
    
    Now you should see your IP address from command output in SSH
    Code:
    ifconfig -a
    
    Check net connectivity via ping google.com
    Code:
    ping -c4 google.com
    PING google.com (216.58.219.32) 56(84) bytes of data.
    64 bytes from lax17s04-in-f0.1e100.net (216.58.219.32): icmp_seq=1 ttl=56 time=11.9 ms
    64 bytes from lax17s04-in-f0.1e100.net (216.58.219.32): icmp_seq=2 ttl=56 time=12.0 ms
    64 bytes from lax17s04-in-f0.1e100.net (216.58.219.32): icmp_seq=3 ttl=56 time=12.0 ms
    64 bytes from lax17s04-in-f0.1e100.net (216.58.219.32): icmp_seq=4 ttl=56 time=12.0 ms
    
    --- google.com ping statistics ---
    4 packets transmitted, 4 received, 0% packet loss, time 3016ms
    rtt min/avg/max/mdev = 11.966/12.019/12.054/0.114 ms
    
    It doesn't hurt to install some fairly commonly used YUM packages first
    Code:
    yum -y install bc nano wget lynx make gcc screen unzip yum-plugin-fastestmirror mtr sysstat mlocate
    yum -y groupinstall "Development Tools"
    yum -y install libX11-devel mesa-libGL-devel perl-Time-HiRes
    yum -y update
    Then disable SELINUX and reboot server
    Code:
    sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config && setenforce 0
    shutdown -r now
    
    You can then remote SSH into your VPS via the assigned IP address for your VPS as normal :)

    Tip: I'd create a backup right after configuring all this, so you can revert to backup instead of redoing all these steps above.

    vapornode_panel_05.png
    Just note, restores over a certain size need to be restored by tech support

    vapornode_backup_restore_00.png

    Centmin Mod LEMP Stack Install


    Before running centmin.sh menu option 1 to install everything, you may want to edit centmin.sh at
    1. line 2 of centmin.sh for .07 stable to set the system timezone post install. It defaults to ZONEINFO=Etc/UTC so change to ZONEINFO=America/Phoenix
    2. line 2 to 4 of centmin.sh for .08 beta01 to set your EMAIL, PUSHOVER_EMAIL and ZONEINFO variables. EMAIL is for future features in Centmin Mod for email notifications which rely on the variable and PUSHOVER_EMAIL is for pushover.net email notifications to your tablet or mobile devices. For example, maldet+clamav malware/antivirus scanner and yum-cron.
     
    Last edited: Jan 2, 2015
  3. eva2000

    eva2000 Administrator Staff Member

    53,190
    12,113
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,649
    Local Time:
    11:53 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+

    Before Centmin Mod LEMP Stack Install



    Server stats before Centmin Mod LEMP Stack install

    Code:
    free -m
                 total       used       free     shared    buffers     cached
    Mem:           490         80        410          0          7         29
    -/+ buffers/cache:         42        447
    Swap:          991          0        991
    Code:
     cat /proc/cpuinfo
    processor       : 0
    vendor_id       : GenuineIntel
    cpu family      : 6
    model           : 6
    model name      : QEMU Virtual CPU version 2.1.0
    stepping        : 3
    microcode       : 1
    cpu MHz         : 3300.024
    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     : 4
    wp              : yes
    flags           : fpu de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pse36 clflush mmx fxsr sse sse2 syscall nx lm up rep_good unfair_spinlock pni cx16 x2apic popcnt hypervisor lahf_lm
    bogomips        : 6600.04
    clflush size    : 64
    cache_alignment : 64
    address sizes   : 40 bits physical, 48 bits virtual
    power management:
    Code:
    top - 19:00:24 up  2:12,  1 user,  load average: 0.07, 0.02, 0.00
    Tasks:  70 total,   1 running,  69 sleeping,   0 stopped,   0 zombie
    Cpu0  :  0.0%us,  0.0%sy,  0.0%ni,  0.0%id,  0.0%wa,  0.0%hi,  0.0%si,  0.0%st
    Mem:    502096k total,    82804k used,   419292k free,     7924k buffers
    Swap:  1015804k total,        0k used,  1015804k free,    30496k cached
    Code:
    df -hT
    Filesystem           Type   Size  Used Avail Use% Mounted on
    /dev/mapper/VolGroup-lv_root
                         ext4    14G  655M   12G   6% /
    tmpfs                tmpfs  246M     0  246M   0% /dev/shm
    /dev/vda1            ext4   477M   25M  427M   6% /boot

    centminmodbench.sh results before Centmin Mod install



    Full results here

    centminmodbench.sh results AFTER Centmin Mod install



    Full results here
     
    Last edited: Jan 2, 2015
  4. Vishall

    Vishall New Member

    15
    10
    3
    Aug 3, 2014
    Ratings:
    +10
    Local Time:
    9:53 PM
    1.7
    MariaDB 10
    I'm watching this thread, waiting for the results :)

    There panel interface looks good, i just grabbed myself their 2gb plan :)
     
    Last edited: Jan 1, 2015
  5. KeVo

    KeVo Active Member

    180
    71
    28
    May 28, 2014
    Ratings:
    +101
    Local Time:
    8:53 PM
    1.11.x
    10.1.18
    Did you grab their OpenVZ or KVM?
     
  6. Vishall

    Vishall New Member

    15
    10
    3
    Aug 3, 2014
    Ratings:
    +10
    Local Time:
    9:53 PM
    1.7
    MariaDB 10
    KVM :)
     
  7. eva2000

    eva2000 Administrator Staff Member

    53,190
    12,113
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,649
    Local Time:
    11:53 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  8. Vishall

    Vishall New Member

    15
    10
    3
    Aug 3, 2014
    Ratings:
    +10
    Local Time:
    9:53 PM
    1.7
    MariaDB 10
  9. Bubka3

    Bubka3 New Member

    17
    5
    3
    Jun 1, 2014
    New York, NY
    Ratings:
    +5
    Local Time:
    9:53 PM
    1.7.1
    5.5.37
    I got an email about this -- anyway to opt-out of marketing emails?
     
  10. eva2000

    eva2000 Administrator Staff Member

    53,190
    12,113
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,649
    Local Time:
    11:53 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    marketing ? it's a heads up email thought folks would be interested in cheap VPS hosting :)

    Only way is to disable all future email from me right now :(
     
  11. KeVo

    KeVo Active Member

    180
    71
    28
    May 28, 2014
    Ratings:
    +101
    Local Time:
    8:53 PM
    1.11.x
    10.1.18
    @eva2000 How long did it take your node to rebuild for the ISO? It feels like I am just staring at the screen endlessly waiting for that "Success" message. lol
     
  12. Bubka3

    Bubka3 New Member

    17
    5
    3
    Jun 1, 2014
    New York, NY
    Ratings:
    +5
    Local Time:
    9:53 PM
    1.7.1
    5.5.37
    I don't mind the monthly centmin update emails -- they are quite useful, but I really don't want emails about offers from VPS hosts. I know your intentions might be good but it really looked like a marketing email.
     
  13. Vishall

    Vishall New Member

    15
    10
    3
    Aug 3, 2014
    Ratings:
    +10
    Local Time:
    9:53 PM
    1.7
    MariaDB 10
    Same here but, here's what i did and got it up and running again.
    1. Go here and click manage: https://portal.vapornode.com/clientarea/
    2. Select your product/service and then click create new virtual machine

    Hope it works for you because that worked for me :)
     
  14. KeVo

    KeVo Active Member

    180
    71
    28
    May 28, 2014
    Ratings:
    +101
    Local Time:
    8:53 PM
    1.11.x
    10.1.18
    Funny you mention this, because I was thinking about this as well. Thanks for sharing your experience!
     
  15. eva2000

    eva2000 Administrator Staff Member

    53,190
    12,113
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,649
    Local Time:
    11:53 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    i haven't tried a rebuild for ISO only the initial install so don't really recall the time.

    well there's no affiliate links or financial gain for me with VaporNode it's just a heads up for a 512MB KVM VPS with SSD @US$3.60/month but yeah I understand what you're saying.

    Unfortunately, there's no way to separate forum emails as such, so it's either accepting forum emails from me or disabling all forum emails from me :)
     
  16. Vishall

    Vishall New Member

    15
    10
    3
    Aug 3, 2014
    Ratings:
    +10
    Local Time:
    9:53 PM
    1.7
    MariaDB 10
    Finished. Working good so far and support isn't bad at all :)
    Screen Shot 2015-01-01 at 10.03.56 AM.png
     
  17. eva2000

    eva2000 Administrator Staff Member

    53,190
    12,113
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,649
    Local Time:
    11:53 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Yes support has been great considering it's New Years celebrations !

    Updated 2nd & 3rd post above with more updated info. Will be running centminmodbench.sh tests soon.
     
  18. eva2000

    eva2000 Administrator Staff Member

    53,190
    12,113
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,649
    Local Time:
    11:53 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+

    centminmodbench.sh results before Centmin Mod install



    Note: From centminmodbench.sh tests, seems the disk setup for VaporNode isn't as fast as I would expect for SSD disks as the 512MB KVM instance is having issues completing DD (dsync tests) and fio disk tests while ioping was okay. Investigating right now - note this is only tested on 2 of 5 KVM VPSes I ordered and both exhibit the same for DD (dsync tests) and fio disk tests. So will have to test the other 3 to be sure it's not just an isolated issue.

    Edit: confirmation from VaporNode tech support is that they rate limit disk I/O on both KVM and OpenVZ VPSes to ensure more reliable and consistent disk performance all VPSes sharing the server. So bear that in mind when looking at disk performance numbrs.

    Results for VaporNode VPS #01
    • Bandwidth, ping and mtr tests show VaporNode Phoenix location KVM VPS favour West Coast USA with better numbers than East Coast USA. There's very poor bandwidth tests to OVH Canada and Vultr's Japan location at 217KB/s and 25.6KB/s respectively. Best speed is to Vultr's Los Angeles location at 77MB/s. Bandwidth tests to Europe and Australia are pretty much inline between 5-8.8MB/s.
    • Unixbench 5.1.3 single cpu core test has a index score = 1287.1 which is in line with their advertised Intel Xeon E3-1230v2 3.3Ghz processors.
    • Disk I/O unfortunately isn't what I would expect it to be for SSDs. VaporNode support clarified that they rate limit disk I/O for more consistent performance for all, so that is probably what we're seeing here. Sequential disk speed is between 77-99MB/s and disk latencies are slower than what you would get with Vultr, DigitalOcean and RamNode. But for the price VaporNode is okay. For test KVM VPS i does look fine.
    • Disk ioping random disk performance is slow for SSD but faster than SATA at 260 iops for random disk i/o with 3.8ms average latencies and max of 11.9ms. Ioping seek rate is 219 iops and 4.6ms average latency and ioping sequential is 88.3MB/s with 2.8ms average and 93.6ms max disk latencies which is high even for SATA. Cached ioping results of course are fast with 292,257 iops and 1,141MB/s
    • Ramdisk DD and ioping tests for memory benchmarks are inline with DDR3 memory systems for an Intel Xeon E3-1230v2 Ivy Bridge based server at 2-3.2GB/s
    • For OpenSSL/SSL performance as expected before Centmin Mod install Entropy availability is low - Centmin Mod install and use of haveged will fix that :).
    • Other individual OpenSSL tests are relative, however, I do not have E3-1230v2 to compare with other than the E3-1240v3 Haswell tests at centminmodbench.sh for dedicated servers | Centmin Mod Community Haswell E3-12xx v3 have better clock for clock OpenSSL and encryption/decryption performance than the older E3-12xx v2 Ivy Bridge processors and you are comparing a single cpu core of the VaporNode KVM VPS vs 8x cpu threads (4 physical cores + 4 hyperthreads) of a full non-virtualized Xeon E3-1240v3 without the virtualisation KVM overhead which can be as high as 20-40% overhead.
    • For OpenSSL benchmarks, closest Ivy Bridge results I have to compare with would be @RoldanLT non-virtualized Xeon E3-1245v2 Ivy Bridge which runs are a high clock speed i.e. Intel processor assisted evp aes128 -multi 8 benchmarked with 8 cpu threads for 8192KB at 4630489.94k (4630489/8 = 578,811K per cpu thread) versus VaporNode's KVM with single cpu for 8192KB at 278781.95k which is roughly 48% of what you'd expect for non-virtualized single cpu thread. Can probably explain this due to the KVM virtualisation overhead which can be between 20-40% ? However, VaporNode's OpenSSL benchmarks are slower than Vultr's 768MB KVM which for same Intel processor assisted evp aes128 was around 800,492K. But that test was with Intel E3 clocked at 3.4Ghz so higher clocked than VaporNode and it could of been a E3-12xx v3 Haswell which is clock for clock better in terms of OpenSSL than E3-12xx v2 Ivy Bridge.

    Code:
    -------------------------------------------
    centminmodbench.sh 0.5
    http://bench.centminmod.com
    written by: George Liu (eva2000)
    http://centminmod.com
    -------------------------------------------
    
    -------------------------------------------
    System Information
    -------------------------------------------
    
    2.6.32-504.3.3.el6.x86_64
    
    CentOS release 6.6 (Final)
    
    ----------------------------------------------
    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:                 6
    Stepping:              3
    CPU MHz:               3300.024
    BogoMIPS:              6600.04
    Hypervisor vendor:     KVM
    Virtualization type:   full
    L1d cache:             32K
    L1i cache:             32K
    L2 cache:              4096K
    NUMA node0 CPU(s):     0
    
    ----------------------------------------------
    CPU NODE SOCKET CORE L1d:L1i:L2 ONLINE
    0   0    0      0    0:0:0      yes
    
    ----------------------------------------------
                 total       used       free     shared    buffers     cached
    Mem:           490        411         79          0         36        295
    Low:           490        411         79
    High:            0          0          0
    -/+ buffers/cache:         78        411
    Swap:          991          0        991
    
    ----------------------------------------------
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/mapper/VolGroup-lv_root
                           14G  1.3G   12G  11% /
    tmpfs                 246M     0  246M   0% /dev/shm
    /dev/vda1             477M   47M  405M  11% /boot
    
    
    Code:
    -------------------------------------------
    disk ioping tests
    -------------------------------------------
    
    
    Running IOPing I/O benchmark...
    
    IOPing I/O: ./ioping -c 10 .
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=1 time=0.3 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=2 time=7.7 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=3 time=0.4 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=4 time=0.3 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=5 time=0.4 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=6 time=4.5 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=7 time=5.7 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=8 time=7.0 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=9 time=11.9 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=10 time=0.3 ms
    
    --- . (ext4 /dev/mapper/VolGroup-lv_root) ioping statistics ---
    10 requests completed in 9039.9 ms, 260 iops, 1.0 mb/s
    min/avg/max/mdev = 0.3/3.8/11.9/3.9 ms
    
    IOPing seek rate: ./ioping -RD .
    
    --- . (ext4 /dev/mapper/VolGroup-lv_root) ioping statistics ---
    642 requests completed in 3000.2 ms, 219 iops, 0.9 mb/s
    min/avg/max/mdev = 0.2/4.6/60.0/4.9 ms
    
    IOPing sequential: ./ioping -RL .
    
    --- . (ext4 /dev/mapper/VolGroup-lv_root) ioping statistics ---
    1018 requests completed in 3001.3 ms, 353 iops, 88.3 mb/s
    min/avg/max/mdev = 2.0/2.8/93.6/5.1 ms
    
    IOPing cached: ./ioping -RC .
    
    --- . (ext4 /dev/mapper/VolGroup-lv_root) ioping statistics ---
    37351 requests completed in 3000.0 ms, 292257 iops, 1141.6 mb/s
    min/avg/max/mdev = 0.0/0.0/0.1/0.0 ms
    
    
    Code:
    -------------------------------------------
    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.0676172 s, 2.0 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.0539971 s, 2.5 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.0416839 s, 3.2 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.0516843 s, 2.6 GB/s
    
    Code:
    -------------------------------------------
    ramdisk ioping tests - memory bandwidth
    -------------------------------------------
    
    2015-01-01 13:00:41 URL:https://ioping.googlecode.com/files/ioping-0.6.tar.gz [6957/6957] -> "ioping-0.6.tar.gz" [1]
    Download done.
    ioping-0.6.tar.gz valid file.
    
    Running IOPing I/O ramdisk benchmark...
    cc -std=c99 -g -Wall -Wextra -pedantic -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DVERSION=\"0.6\" -c -o ioping.o ioping.c
    cc -o ioping ioping.o -std=c99 -g -Wall -Wextra -pedantic -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -lm
    
    IOPing I/O: ./ioping -c 10 .
    4096 bytes from . (tmpfs tmpfs): request=1 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=2 time=0.5 ms
    4096 bytes from . (tmpfs tmpfs): request=3 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=4 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=5 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=6 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=7 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=8 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=9 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=10 time=0.0 ms
    
    --- . (tmpfs tmpfs) ioping statistics ---
    10 requests completed in 9001.9 ms, 17452 iops, 68.2 mb/s
    min/avg/max/mdev = 0.0/0.1/0.5/0.2 ms
    
    IOPing seek rate: ./ioping -R .
    
    --- . (tmpfs tmpfs) ioping statistics ---
    33706 requests completed in 3000.0 ms, 361164 iops, 1410.8 mb/s
    min/avg/max/mdev = 0.0/0.0/0.0/0.0 ms
    
    IOPing sequential: ./ioping -RL .
    
    --- . (tmpfs tmpfs) ioping statistics ---
    19939 requests completed in 3000.1 ms, 26826 iops, 6706.5 mb/s
    min/avg/max/mdev = 0.0/0.0/5.3/0.0 ms
    
    IOPing cached: ./ioping -RC .
    
    --- . (tmpfs tmpfs) ioping statistics ---
    37283 requests completed in 3000.1 ms, 258303 iops, 1009.0 mb/s
    min/avg/max/mdev = 0.0/0.0/0.1/0.0 ms
    
    
    Code:
    
    -------------------------------------------
    Running bandwidth benchmark...
    -------------------------------------------
    
    ----------------------------------------------
    Download from Cachefly (http://cachefly.cachefly.net/100mb.test)
    Download Cachefly: 76.2MB/s
    
    -------------------------------------------
    USA bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Download from Linode, Atlanta, GA, USA (http://speedtest.atlanta.linode.com/100MB-atlanta.bin)
    Download Linode, Atlanta, GA, USA: 1.41MB/s
    ----------------------------------------------
    Download from Linode, Dallas, TX, USA (http://speedtest.dallas.linode.com/100MB-dallas.bin)
    Download Linode, Dallas, TX, USA: 19.4MB/s
    ----------------------------------------------
    Download from Leaseweb, Manassas, VA, USA (http://mirror.us.leaseweb.net/speedtest/100mb.bin)
    Download Leaseweb, Manassas, VA, USA: 13.6MB/s
    ----------------------------------------------
    Download from Softlayer, Seattle, WA, USA (http://speedtest.sea01.softlayer.com/downloads/test100.zip)
    Download Softlayer, Seattle, WA, USA: 31.7MB/s
    ----------------------------------------------
    Download from Softlayer, San Jose, CA, USA (http://speedtest.sjc01.softlayer.com/downloads/test100.zip)
    Download Softlayer, San Jose, CA, USA: 55.4MB/s
    ----------------------------------------------
    Download from Softlayer, Washington, DC, USA (http://speedtest.wdc01.softlayer.com/downloads/test100.zip)
    Download Softlayer, Washington, DC, USA: 18.4MB/s
    ----------------------------------------------
    Download from VersaWeb, Las Vegas, Nevada (http://199.47.210.50/100mbtest.bin)
    Download VersaWeb, Las Vegas, Nevada: 55.8MB/s
    ----------------------------------------------
    Download from OVH, BHS, Canada (http://bhs.proof.ovh.net/files/100Mio.dat)
    Download OVH, BHS, Canada: 217KB/s
    ----------------------------------------------
    Download from Vultr, Los Angeles, California (http://lax-ca-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Los Angeles, California: 77.9MB/s
    ----------------------------------------------
    Download from Vultr, Seattle, Washington (http://wa-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Seattle, Washington: 25.9MB/s
    ----------------------------------------------
    Download from Vultr, Dallas, Texas (http://tx-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Dallas, Texas: 43.8MB/s
    ----------------------------------------------
    Download from Vultr, Chicago, Illinois (http://il-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Chicago, Illinois: 10.8MB/s
    ----------------------------------------------
    Download from Vultr, Atlanta, Georgia (http://ga-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Atlanta, Georgia: 26.2MB/s
    ----------------------------------------------
    Download from Vultr, Miami, Florida (http://fl-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Miami, Florida: 19.8MB/s
    ----------------------------------------------
    Download from Vultr, New York / New Jersey (http://nj-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, New York / New Jersey: 15.7MB/s
    
    -------------------------------------------
    Asia bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Download from Linode, Tokyo, JP (http://speedtest.tokyo.linode.com/100MB-tokyo.bin)
    Download Linode, Tokyo, JP: 10.3MB/s
    ----------------------------------------------
    Download from Softlayer, Singapore (http://speedtest.sng01.softlayer.com/downloads/test100.zip)
    Download Softlayer, Singapore: 6.28MB/s
    ----------------------------------------------
    Download from Vultr, Tokyo, Japan (http://hnd-jp-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Tokyo, Japan: 25.6KB/s
    
    -------------------------------------------
    Europe bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Download from Linode, London, UK (http://speedtest.london.linode.com/100MB-london.bin)
    Download Linode, London, UK: 8.87MB/s
    ----------------------------------------------
    Download from OVH, Paris, France (http://proof.ovh.net/files/100Mio.dat)
    Download OVH, Paris, France: 8.04MB/s
    ----------------------------------------------
    Download from SmartDC, Rotterdam, Netherlands (http://mirror.i3d.net/100mb.bin)
    Download SmartDC, Rotterdam, Netherlands: 7.73MB/s
    ----------------------------------------------
    Download from Vultr, Amsterdam, Netherlands (http://ams-nl-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Amsterdam, Netherlands: 6.90MB/s
    ----------------------------------------------
    Download from Vultr, London, UK (http://lon-gb-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, London, UK: 5.03MB/s
    ----------------------------------------------
    Download from Vultr, Paris, France (http://par-fr-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Paris, France: 8.24MB/s
    
    -------------------------------------------
    Australia bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Download from Vultr, Sydney, Australia (http://syd-au-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Sydney, Australia: 6.98MB/s
    
    Code:
    
    -------------------------------------------
    Running ping tests...
    -------------------------------------------
    
    ----------------------------------------------
    Pings (cachefly.cachefly.net):
    PING vip1.g.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=54 time=12.8 ms
    64 bytes from vip1.G-anycast1.cachefly.net (205.234.175.175): icmp_seq=2 ttl=54 time=12.8 ms
    64 bytes from vip1.G-anycast1.cachefly.net (205.234.175.175): icmp_seq=3 ttl=54 time=12.8 ms
    
    --- vip1.g.cachefly.net ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2016ms
    rtt min/avg/max/mdev = 12.856/12.865/12.881/0.131 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=50 time=176 ms
    64 bytes from 108.61.212.117.vultr.com (108.61.212.117): icmp_seq=2 ttl=50 time=176 ms
    64 bytes from 108.61.212.117.vultr.com (108.61.212.117): icmp_seq=3 ttl=50 time=176 ms
    
    --- syd-au-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2178ms
    rtt min/avg/max/mdev = 176.425/176.506/176.614/0.079 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=155 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 2148ms
    rtt min/avg/max/mdev = 146.835/149.646/155.134/3.906 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=57 time=11.4 ms
    64 bytes from 108.61.219.200.vultr.com (108.61.219.200): icmp_seq=2 ttl=57 time=11.4 ms
    64 bytes from 108.61.219.200.vultr.com (108.61.219.200): icmp_seq=3 ttl=57 time=11.5 ms
    
    --- lax-ca-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2014ms
    rtt min/avg/max/mdev = 11.482/11.513/11.560/0.093 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=58 time=42.5 ms
    64 bytes from 108.61.194.105.vultr.com (108.61.194.105): icmp_seq=2 ttl=58 time=42.5 ms
    64 bytes from 108.61.194.105.vultr.com (108.61.194.105): icmp_seq=3 ttl=58 time=42.5 ms
    
    --- wa-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2045ms
    rtt min/avg/max/mdev = 42.515/42.540/42.576/0.170 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=57 time=24.5 ms
    64 bytes from 108.61.224.175.vultr.com (108.61.224.175): icmp_seq=2 ttl=57 time=24.5 ms
    64 bytes from 108.61.224.175.vultr.com (108.61.224.175): icmp_seq=3 ttl=57 time=24.5 ms
    
    --- tx-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2027ms
    rtt min/avg/max/mdev = 24.501/24.513/24.531/0.181 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=48 time=52.3 ms
    64 bytes from 107.191.51.12.vultr.com (107.191.51.12): icmp_seq=2 ttl=48 time=52.6 ms
    64 bytes from 107.191.51.12.vultr.com (107.191.51.12): icmp_seq=3 ttl=48 time=52.5 ms
    
    --- il-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2055ms
    rtt min/avg/max/mdev = 52.397/52.518/52.640/0.099 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=57 time=50.4 ms
    64 bytes from 108.61.193.166.vultr.com (108.61.193.166): icmp_seq=2 ttl=57 time=48.4 ms
    64 bytes from 108.61.193.166.vultr.com (108.61.193.166): icmp_seq=3 ttl=57 time=50.3 ms
    
    --- ga-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2053ms
    rtt min/avg/max/mdev = 48.428/49.751/50.427/0.953 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: icmp_seq=1 ttl=58 time=55.9 ms
    64 bytes from 104.156.244.232: icmp_seq=2 ttl=58 time=55.7 ms
    64 bytes from 104.156.244.232: icmp_seq=3 ttl=58 time=56.0 ms
    
    --- fl-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2057ms
    rtt min/avg/max/mdev = 55.790/55.918/56.001/0.288 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=53 time=65.2 ms
    64 bytes from 108.61.149.182.vultr.com (108.61.149.182): icmp_seq=2 ttl=53 time=65.1 ms
    64 bytes from 108.61.149.182.vultr.com (108.61.149.182): icmp_seq=3 ttl=53 time=65.2 ms
    
    --- nj-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2066ms
    rtt min/avg/max/mdev = 65.148/65.220/65.261/0.214 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=58 time=151 ms
    64 bytes from 108.61.210.117.vultr.com (108.61.210.117): icmp_seq=2 ttl=58 time=151 ms
    64 bytes from 108.61.210.117.vultr.com (108.61.210.117): icmp_seq=3 ttl=58 time=151 ms
    
    --- fra-de-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2154ms
    rtt min/avg/max/mdev = 151.309/151.373/151.414/0.451 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=56 time=155 ms
    64 bytes from 108.61.198.102.vultr.com (108.61.198.102): icmp_seq=2 ttl=56 time=155 ms
    64 bytes from 108.61.198.102.vultr.com (108.61.198.102): icmp_seq=3 ttl=56 time=155 ms
    
    --- ams-nl-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2158ms
    rtt min/avg/max/mdev = 155.470/155.572/155.727/0.468 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=45 time=138 ms
    64 bytes from 108.61.196.101.vultr.com (108.61.196.101): icmp_seq=2 ttl=45 time=138 ms
    64 bytes from 108.61.196.101.vultr.com (108.61.196.101): icmp_seq=3 ttl=45 time=138 ms
    
    --- lon-gb-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2141ms
    rtt min/avg/max/mdev = 138.348/138.390/138.421/0.305 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=58 time=136 ms
    64 bytes from 108.61.209.127.vultr.com (108.61.209.127): icmp_seq=2 ttl=58 time=136 ms
    64 bytes from 108.61.209.127.vultr.com (108.61.209.127): icmp_seq=3 ttl=58 time=136 ms
    
    --- par-fr-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2137ms
    rtt min/avg/max/mdev = 136.050/136.082/136.130/0.303 ms
    
    ----------------------------------------------
    Pings (VersaWeb Las Vegas):
    PING 199.47.210.50 (199.47.210.50) 56(84) bytes of data.
    64 bytes from 199.47.210.50: icmp_seq=1 ttl=57 time=18.7 ms
    64 bytes from 199.47.210.50: icmp_seq=2 ttl=57 time=18.3 ms
    64 bytes from 199.47.210.50: icmp_seq=3 ttl=57 time=18.3 ms
    
    --- 199.47.210.50 ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2021ms
    rtt min/avg/max/mdev = 18.361/18.494/18.737/0.232 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=56 time=38.4 ms
    64 bytes from 76.164.234.1: icmp_seq=2 ttl=56 time=39.1 ms
    64 bytes from 76.164.234.1: icmp_seq=3 ttl=56 time=38.5 ms
    
    --- 76.164.234.1 ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2041ms
    rtt min/avg/max/mdev = 38.402/38.700/39.111/0.340 ms
    
    ----------------------------------------------
    Pings (OVH Canada):
    PING bhs.proof.ovh.net (192.99.19.165) 56(84) bytes of data.
    64 bytes from ns238643.ip-192-99-19.net (192.99.19.165): icmp_seq=1 ttl=54 time=73.1 ms
    64 bytes from ns238643.ip-192-99-19.net (192.99.19.165): icmp_seq=2 ttl=54 time=73.1 ms
    64 bytes from ns238643.ip-192-99-19.net (192.99.19.165): icmp_seq=3 ttl=54 time=73.0 ms
    
    --- bhs.proof.ovh.net ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2075ms
    rtt min/avg/max/mdev = 73.091/73.145/73.197/0.315 ms
    
    
    Code:
    
    -------------------------------------------
    Running mtr tests...
    -------------------------------------------
    
    ----------------------------------------------
    mtr --report --report-cycles=10 cachefly.cachefly.net
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10    0.5  29.7   0.4 167.1  58.0
      2. 104.140.0.93                  0.0%    10   10.9  42.5   1.2 261.5  82.2
      3. 104.140.0.57                  0.0%    10    0.3   2.8   0.3  23.7   7.4
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   0.5   0.4   0.7   0.1
      5. xe-2-2-3.lax20.ip4.gtt.net    0.0%    10   11.4  11.7  11.4  12.4   0.4
      6. vip1.G-anycast1.cachefly.net  0.0%    10   12.9  13.0  12.8  13.6   0.2
    
    ----------------------------------------------
    mtr --report --report-cycles=10 speedtest.atlanta.linode.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 2607:ff28:0:21::1             0.0%    10    0.6   3.7   0.4  32.3  10.1
      2. 2607:ff28:7001:a::1           0.0%    10    6.6  17.2   4.8 103.6  30.4
      3. 2607:ff28:7001:1::1           0.0%    10    0.4   2.4   0.3  18.2   5.6
      4. 10gigabitethernet16-6.core1.  0.0%    10    0.3   2.8   0.3   7.4   2.8
      5. 10ge1-4.core1.phx1.he.net     0.0%    10    2.3   4.9   0.9  11.9   4.3
      6. 2001:478:186::14              0.0%    10   34.2   4.2   0.9  34.2  10.5
      7. ???                          100.0    10    0.0   0.0   0.0   0.0   0.0
      8. ???                          100.0    10    0.0   0.0   0.0   0.0   0.0
      9. 2001:438:fffe::a02            0.0%    10   45.1 101.8  45.0 307.9  96.2
    10. 2604:b900:1::2                0.0%    10   40.2  40.1  40.0  40.3   0.1
    11. speedtest.atlanta.linode.com  0.0%    10   39.9  39.9  39.8  40.0   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 speedtest.dallas.linode.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 2607:ff28:0:21::1             0.0%    10    0.5   0.7   0.4   1.7   0.4
      2. 2607:ff28:7001:a::1           0.0%    10    3.9 126.0   1.6 526.0 209.2
      3. 2607:ff28:7001:1::1           0.0%    10    1.9   0.5   0.3   1.9   0.5
      4. 10gigabitethernet16-6.core1.  0.0%    10    0.3   1.8   0.3   5.5   2.1
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   11.0  14.4  11.0  19.9   3.5
      6. 2001:504:13::210:131          0.0%    10   10.4  10.5  10.4  11.3   0.3
      7. po5.bbr01.eq01.dal01.network  0.0%    10   55.1  57.6  55.1  79.7   7.8
      8. 2607.f0d0.0002.0002.0000.000  0.0%    10   55.3  55.6  55.3  56.2   0.3
      9. 0.0.0.3-static.reverse.softl  0.0%    10   55.5  55.6  55.4  56.1   0.2
    10. 0.0.0.9-static.reverse.softl  0.0%    10   55.3  65.6  55.3 122.1  22.8
    11. 0.0.0.1-static.reverse.softl  0.0%    10   55.4  55.5  55.4  55.6   0.1
    12. speedtest.dallas.linode.com   0.0%    10   51.1  51.3  51.1  51.9   0.3
    
    ----------------------------------------------
    mtr --report --report-cycles=10 mirror.us.leaseweb.net
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 2607:ff28:0:21::1             0.0%    10    0.4  10.1   0.4  61.8  21.3
      2. 2607:ff28:7001:b::1           0.0%    10   54.9  39.0   3.8 282.9  87.1
      3. 2607:ff28:7001:1::1           0.0%    10    0.4   0.4   0.3   0.4   0.0
      4. 10gigabitethernet16-6.core1.  0.0%    10    2.8   6.8   0.3  12.9   4.2
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   20.5  13.6  10.5  21.9   4.6
      6. 10ge10-2.core1.lax1.he.net    0.0%    10   22.2  11.1   9.8  22.2   3.9
      7. globeinternet-as6453.gigabit  0.0%    10   10.0  13.7   9.9  47.1  11.7
      8. if-ae6.20.tcore2.LVW-Los-Ang  0.0%    10   24.5  26.8  24.0  34.7   3.4
      9. if-ae14.8.tcore2.AEQ-Ashburn  0.0%    10   63.8  64.0  63.7  65.8   0.6
    10. 2001:5a0:600:500::12          0.0%    10   85.5  85.9  85.5  86.6   0.4
    11. 2604:9a00:2010:a001:1:face:b  0.0%    10   84.8  84.8  84.7  84.8   0.0
    
    ----------------------------------------------
    mtr --report --report-cycles=10 speedtest.sea01.softlayer.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10    0.5   8.3   0.4  52.6  17.5
      2. 104.140.0.97                  0.0%    10    8.5  62.3   1.1 367.7 123.6
      3. 104.140.0.57                  0.0%    10    0.3   0.5   0.3   2.2   0.6
      4. 10ge16-6.core1.phx2.he.net    0.0%    10    6.4   2.2   0.2  10.4   3.5
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   11.1  14.1  10.9  20.2   3.4
      6. any2ix.coresite.com           0.0%    10   10.4  10.4  10.4  10.5   0.0
      7. ae7.bbr02.cs01.lax01.network  0.0%    10   10.7  10.7  10.6  11.0   0.1
      8. ae0.bbr02.eq01.sjc02.network  0.0%    10   18.3  18.4  18.3  18.7   0.1
      9. ae7.bbr01.eq01.sjc02.network  0.0%    10   18.4  19.1  18.3  25.5   2.2
    10. ae0.bbr02.wb01.sea02.network  0.0%    10   35.4  35.9  35.3  40.1   1.5
    11. ae1.dar01.sr01.sea01.network  0.0%    10   35.7  35.6  35.6  35.7   0.0
    12. po1.fcr01.sr01.sea01.network  0.0%    10   37.4  37.0  36.6  37.5   0.3
    13. speedtest.sea01.softlayer.co  0.0%    10   35.6  35.8  35.6  36.7   0.4
    
    ----------------------------------------------
    mtr --report --report-cycles=10 speedtest.sjc01.softlayer.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10  139.0  34.6   0.4 145.4  59.1
      2. 104.140.0.105                 0.0%    10    8.0 126.9   3.3 528.9 213.8
      3. 104.140.0.57                  0.0%    10   19.1   2.5   0.3  19.1   5.9
      4. 10ge16-6.core1.phx2.he.net    0.0%    10    0.3   1.2   0.3   6.1   1.9
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   12.9  12.4  11.0  22.8   3.7
      6. any2ix.coresite.com           0.0%    10   10.4  10.6  10.4  12.6   0.7
      7. ae7.bbr02.cs01.lax01.network  0.0%    10   10.6  10.7  10.6  10.7   0.0
      8. ae0.bbr02.eq01.sjc02.network  0.0%    10   18.2  18.1  18.0  18.2   0.0
      9. ae5.dar02.sr01.sjc01.network  0.0%    10   19.0  18.7  18.6  19.0   0.1
    10. po2.fcr01.sr01.sjc01.network  0.0%    10   23.5  19.9  19.3  23.5   1.3
    11. speedtest.sjc01.softlayer.co  0.0%    10   18.6  18.7  18.6  18.8   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 speedtest.wdc01.softlayer.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10  159.3  93.9   0.7 173.4  65.6
      2. 104.140.0.101                 0.0%    10  379.4  56.3   1.8 379.4 119.6
      3. 104.140.0.57                  0.0%    10    0.3   0.4   0.3   0.5   0.1
      4. 10ge16-6.core1.phx2.he.net    0.0%    10    0.2   2.9   0.2   8.8   3.2
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   16.0  17.1  11.0  24.5   4.8
      6. any2ix.coresite.com           0.0%    10   10.4  10.8  10.3  12.8   0.8
      7. ae19.bbr01.eq01.dal03.networ  0.0%    10   35.4  36.3  35.2  40.1   1.9
      8. ae7.bbr02.eq01.dal03.network  0.0%    10   35.5  35.4  35.2  35.9   0.2
      9. ae1.bbr01.tl01.atl01.network  0.0%    10   55.1  55.4  55.1  56.1   0.3
    10. ae0.bbr01.eq01.wdc02.network  0.0%    10   67.2  67.6  67.2  69.0   0.7
    11. ae0.dar02.sr01.wdc01.network  0.0%    10   63.1  63.1  62.9  63.3   0.1
    12. po2.fcr01.sr01.wdc01.network  0.0%    10   68.3  68.5  68.2  69.9   0.5
    13. speedtest.wdc01.softlayer.co  0.0%    10   63.1  63.2  63.0  63.5   0.2
    
    ----------------------------------------------
    mtr --report --report-cycles=10 speedtest.tokyo.linode.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 2607:ff28:0:21::1             0.0%    10   44.0  83.1   2.8 195.4  71.7
      2. 2607:ff28:7001:a::1           0.0%    10   10.1  22.8   3.4  89.2  31.4
      3. 2607:ff28:7001:1::1           0.0%    10    0.3   0.4   0.3   0.5   0.1
      4. 10gigabitethernet16-6.core1.  0.0%    10    0.3   2.4   0.3  12.5   4.5
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   20.5  15.5  11.1  23.6   5.2
      6. kddi-as2516.10gigabitetherne  0.0%    10   25.1  24.8  23.0  25.4   0.9
      7. 6lajbb001.int-gw.kddi.ne.jp   0.0%    10   24.8  28.3  24.8  57.2  10.1
      8. 6otejbb205.int-gw.kddi.ne.jp  0.0%    10  115.0 122.7 115.0 151.4  13.2
      9. 6cm-fcu203.int-gw.kddi.ne.jp  0.0%    10  132.4 126.5 121.2 132.4   4.1
    10. 2001:268:f702:6c::2           0.0%    10  115.7 115.8 115.7 116.0   0.1
    11. speedtest.tokyo.linode.com   10.0%    10  116.6 116.5 116.4 116.7   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 speedtest.sng01.softlayer.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10    3.7 107.7   3.7 206.2  65.9
      2. 104.140.0.97                  0.0%    10    1.4  66.1   1.4 341.3 117.1
      3. 104.140.0.57                  0.0%    10    0.4   4.3   0.3  40.1  12.6
      4. 10ge16-6.core1.phx2.he.net    0.0%    10    0.3   6.4   0.3  17.2   5.2
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   14.4  18.2  10.6  22.9   3.9
      6. any2ix.coresite.com           0.0%    10   10.0  10.0   9.9  10.6   0.2
      7. ae0.bbr01.eq01.sng02.network  0.0%    10  188.2 192.4 187.1 237.9  16.0
      8. ae5.dar02.sr03.sng01.network  0.0%    10  194.5 196.4 194.4 208.5   4.6
      9. po2.fcr01.sr03.sng01.network 30.0%    10  189.3 193.6 187.9 226.4  14.5
    10. speedtest.sng01.softlayer.co 10.0%    10  194.9 194.9 194.9 195.0   0.0
    
    ----------------------------------------------
    mtr --report --report-cycles=10 speedtest.london.linode.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 2607:ff28:0:21::1             0.0%    10   35.0  68.9   1.9 209.0  64.6
      2. 2607:ff28:7001:a::1           0.0%    10    8.9  22.9   1.4 137.3  40.9
      3. 2607:ff28:7001:1::1           0.0%    10    0.4   0.4   0.3   0.4   0.1
      4. 10gigabitethernet16-6.core1.  0.0%    10    7.0   1.9   0.2   7.0   2.6
      5. 10ge15-3.core1.dal1.he.net    0.0%    10   25.6  26.8  25.6  37.1   3.6
      6. 10ge5-4.core1.atl1.he.net     0.0%    10   46.1  50.3  46.1  54.5   2.9
      7. 10ge16-5.core1.ash1.he.net    0.0%    10   58.5  58.8  53.3  63.8   4.1
      8. 100ge5-1.core1.nyc4.he.net    0.0%    10   70.4  68.6  63.5  73.8   4.5
      9. 100ge7-2.core1.lon2.he.net    0.0%    10  129.9 132.4 129.2 136.5   2.5
    10. 2001:7f8:4::3dd6:1            0.0%    10  129.7 131.8 129.4 145.2   5.0
    11. 2001:4d78:ff01:0:3:b90:1:0   90.0%    10  126.9 126.9 126.9 126.9   0.0
    12. 2001:4d78:fe01:2:1::c         0.0%    10  128.7 128.8 128.7 128.9   0.0
    13. speedtest.london.linode.com  10.0%    10  128.7 128.7 128.5 128.8   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 mirror.i3d.net
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 2607:ff28:0:21::1             0.0%    10  191.4  80.0  18.7 191.4  49.9
      2. 2607:ff28:7001:b::1           0.0%    10    0.8  60.4   0.8 318.4  97.7
      3. 2607:ff28:7001:1::1           0.0%    10    0.3   2.2   0.3  18.6   5.8
      4. 10gigabitethernet16-6.core1.  0.0%    10    0.3   2.0   0.3  10.3   3.6
      5. 10ge15-3.core1.dal1.he.net    0.0%    10   30.7  33.1  30.6  37.9   2.8
      6. 10ge5-4.core1.atl1.he.net     0.0%    10   51.1  53.6  51.1  64.5   5.0
      7. 10ge16-5.core1.ash1.he.net    0.0%    10   58.5  62.7  58.4  89.8  10.0
      8. 100ge5-1.core1.nyc4.he.net    0.0%    10   77.9  77.9  68.6  85.5   5.9
      9. 100ge7-2.core1.lon2.he.net    0.0%    10  134.4 136.2 134.4 143.7   3.6
    10. 10ge.linx-jnpr.th-n.i3d.net   0.0%    10  134.9 136.1 134.9 142.0   2.2
    11. 20ge.cr1-lr0.smartdc.rtd.i3d  0.0%    10  140.9 143.2 137.1 148.6   4.1
    12. 80ge.br3-cr1.smartdc.rtd.i3d  0.0%    10  146.9 167.7 142.3 314.7  56.9
    13. 2a00:1630:1:13d::13d         10.0%    10  137.2 137.3 137.2 137.4   0.0
    
    ----------------------------------------------
    mtr --report --report-cycles=10 syd-au-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10   21.6  45.2   2.1 124.5  40.0
      2. 104.140.0.105                 0.0%    10    4.1  84.3   2.8 347.1 124.3
      3. 104.140.0.57                  0.0%    10    0.4   0.3   0.3   0.4   0.0
      4. 10ge16-6.core1.phx2.he.net    0.0%    10    1.1   4.6   0.4  11.0   3.5
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   10.5  15.1  10.5  47.5  11.5
      6. 10ge10-2.core1.lax1.he.net    0.0%    10   10.5  11.9  10.5  20.1   3.0
      7. 100ge15-1.core1.sjc2.he.net   0.0%    10   18.3  18.2  18.1  18.3   0.1
      8. 10ge1-4.core1.sjc1.he.net     0.0%    10   28.4  23.1  19.0  30.2   5.2
      9. vocus.gigabitethernet2-13.co  0.0%    10   22.7  22.7  22.6  23.2   0.2
    10. bundle-101.cor02.sjc01.ca.VO  0.0%    10  174.2 174.1 174.0 174.4   0.1
    11. ten-0-2-0-2.cor01.syd04.nsw.  0.0%    10  173.5 173.6 173.5 173.7   0.1
    12. ten-2-0-0.bdr03.syd04.nsw.VO  0.0%    10  176.3 176.3 176.2 176.4   0.0
    13. as17819.cust.bdr03.syd04.nsw  0.0%    10  173.5 173.4 173.3 173.5   0.1
    14. xe-1-0-0.gw102.sy3.ap.equini  0.0%    10  177.7 177.7 174.2 199.5   7.8
    15. 27.111.243.214               10.0%    10  173.8 174.0 173.6 175.3   0.6
    16. 108.61.212.117.vultr.com     10.0%    10  176.5 176.5 176.4 176.6   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 hnd-jp-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10  151.6  90.9   1.4 153.8  54.0
      2. 104.140.0.101                 0.0%    10   25.1  26.6   2.3 185.0  56.0
      3. 104.140.0.57                  0.0%    10    0.3   0.3   0.3   0.4   0.0
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10   17.0   2.2   0.5  17.0   5.2
      5. 89.149.129.2                  0.0%    10   11.9  12.4  11.9  14.3   0.9
      6. as2914.lax21.ip4.gtt.net      0.0%    10   12.5  12.5  12.3  12.8   0.1
      7. ae-2.r20.lsanca03.us.bb.gin. 10.0%    10   12.2  14.4  12.1  30.0   5.9
      8. ae-3.r21.tokyjp05.jp.bb.gin.  0.0%    10  147.8 134.3 110.2 149.7  17.2
      9. ae-19.r24.tokyjp05.jp.bb.gin  0.0%    10  147.5 152.5 146.4 173.2   8.3
    10. ae-2.r01.tokyjp03.jp.bb.gin.  0.0%    10  160.4 156.3 154.3 160.4   2.6
    11. xe-0-0-0-30.r01.tokyjp03.jp. 20.0%    10  164.1 163.4 161.3 168.7   2.3
    12. 72.ae2.sw1.tko1.jp.scnet.net  0.0%    10  152.4 152.6 151.3 154.0   0.9
    13. br1.tyo1.gameservers.com     10.0%    10  162.2 161.0 158.6 168.9   3.2
    14. 108.61.201.151.vultr.com     20.0%    10  148.0 150.4 148.0 158.7   3.5
    
    ----------------------------------------------
    mtr --report --report-cycles=10 lax-ca-us-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10   62.5  79.1  14.8 180.7  48.5
      2. 104.140.0.105                 0.0%    10   14.0  23.3   3.3 132.0  39.5
      3. 104.140.0.57                  0.0%    10    0.3   2.7   0.3  23.4   7.3
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.6   0.5   0.4   0.6   0.1
      5. xe-2-2-3.lax20.ip4.gtt.net    0.0%    10   11.3  14.6  11.3  43.9  10.3
      6. gtt-gw-cr1.lax2.ip4.gtt.net   0.0%    10   11.3  11.4  11.3  11.7   0.1
      7. as20473.xe-6-0-1.ar1.lax2.us  0.0%    10   11.6  14.5  11.6  24.7   4.7
      8. 108.61.219.200.vultr.com      0.0%    10   11.7  11.7  11.5  12.1   0.2
    
    ----------------------------------------------
    mtr --report --report-cycles=10 wa-us-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10    0.5   3.4   0.4  27.4   8.4
      2. 104.140.0.97                  0.0%    10  104.3  91.7   4.8 404.3 153.5
      3. 104.140.0.57                  0.0%    10    0.5   2.8   0.3  24.0   7.4
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   6.5   0.5  60.0  18.8
      5. xe-11-1-2.sea23.ip4.gtt.net   0.0%    10   42.4  43.2  42.4  49.3   2.1
      6. choopa-gw.ip4.gtt.net         0.0%    10   42.9  42.9  42.6  43.1   0.2
      7. 108.61.194.105.vultr.com      0.0%    10   42.7  42.7  42.5  42.8   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 tx-us-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10    0.4   4.7   0.4  38.9  12.1
      2. 104.140.0.105                 0.0%    10    3.1  97.7   3.1 764.4 237.6
      3. 104.140.0.57                  0.0%    10    0.4   3.8   0.3  31.7   9.8
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.6   3.4   0.5  28.7   8.9
      5. xe-0-0-3.dal33.ip4.gtt.net    0.0%    10   24.3  24.3  24.3  24.5   0.1
      6. gtt-gw.ip4.gtt.net            0.0%    10   24.4  24.3  24.2  24.4   0.1
      7. as20473.xe-5-1-2.cr1.dfw1.us  0.0%    10   24.6  29.7  24.5  74.9  15.9
      8. 108.61.224.175.vultr.com      0.0%    10   24.5  24.5  24.4  24.7   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 il-us-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10    0.4   5.2   0.4  47.9  15.0
      2. 104.140.0.97                  0.0%    10   59.1  43.5   2.6 255.3  76.5
      3. 104.140.0.57                  0.0%    10    0.6   3.6   0.3  31.9   9.9
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   8.0   0.4  50.2  16.8
      5. xe-4-2-0.chi12.ip4.gtt.net    0.0%    10   50.9  52.8  50.7  71.0   6.4
      6. as23352.chi12.ip4.gtt.net     0.0%    10   54.0  60.4  50.8 105.8  17.4
      7. ae4.cr1.ord6.us.scnet.net     0.0%    10   51.5  55.3  51.4  85.8  10.8
      8. ae1.ar10.ord6.us.scnet.net    0.0%    10   52.0  53.3  51.9  61.4   2.9
      9. ethernet7-1-br1.chi2.choopa.  0.0%    10   52.7  55.8  52.7  60.2   2.9
    10. 107.191.51.12.vultr.com       0.0%    10   52.4  52.5  52.4  52.8   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 ga-us-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10    0.6   7.9   0.4  68.9  21.5
      2. 104.140.0.97                  0.0%    10  250.1 129.1   7.2 671.0 205.6
      3. 104.140.0.57                  0.0%    10    0.4   0.5   0.3   1.2   0.3
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   4.4   0.4  39.9  12.5
      5. xe-9-0-0.atl12.ip4.gtt.net    0.0%    10   45.7  45.6  45.5  45.7   0.0
      6. ae7-150.cr2.atl1.ip4.gtt.net  0.0%    10   45.7  45.9  45.6  47.1   0.5
      7. as20473.xe-1-3-1.cr2.atl1.us  0.0%    10   45.9  45.9  45.8  45.9   0.0
      8. 108.61.193.166.vultr.com      0.0%    10   46.0  45.9  45.8  46.0   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 fl-us-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10    0.5   3.7   0.4  32.6  10.2
      2. 104.140.0.105                 0.0%    10    6.0  47.7   2.9 398.2 123.3
      3. 104.140.0.57                  0.0%    10    0.4   0.4   0.3   0.4   0.0
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10   20.7   4.6   0.5  20.7   7.1
      5. xe-8-0-1.mia12.ip4.gtt.net    0.0%    10   55.7  56.0  55.7  56.8   0.4
      6. as20473.ae5-1914.cr1.mia1.us  0.0%    10   56.0  56.1  56.0  56.3   0.1
      7. 104.156.244.232               0.0%    10   55.8  55.9  55.8  56.0   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 nj-us-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10    0.5   8.2   0.4  65.3  20.3
      2. 104.140.0.101                 0.0%    10    8.3  27.2   1.3  89.2  34.6
      3. 104.140.0.57                  0.0%    10    0.4   0.3   0.3   0.5   0.1
      4. 10ge16-6.core1.phx2.he.net    0.0%    10    4.5   7.2   0.3  12.6   4.4
      5. 10ge15-3.core1.dal1.he.net    0.0%    10   31.4  25.4  20.4  32.8   5.5
      6. 10ge12-6.core1.chi1.he.net    0.0%    10   48.1  53.7  48.1 100.4  16.4
      7. 100ge5-2.core1.nyc4.he.net    0.0%    10   59.2  63.0  59.0  68.9   3.5
      8. 10ge5-1.core1.nyc6.he.net     0.0%    10   61.5  64.5  59.0  70.3   3.9
      9. nyiix.gi3-6.cr1.nyc1.choopa.  0.0%    10   70.4  71.5  65.2  88.7   7.3
    10. ethernet1-49-c11-8-c6-1.pnj1  0.0%    10   65.2  65.1  65.0  65.4   0.1
    11. 108.61.149.182.vultr.com      0.0%    10   65.2  65.2  65.1  65.4   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 fra-de-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10    0.8   1.0   0.4   5.2   1.5
      2. 104.140.0.101                 0.0%    10  331.9  80.7   1.8 413.3 155.1
      3. 104.140.0.57                  0.0%    10    0.4   0.3   0.3   0.4   0.0
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   6.2   0.5  31.3  12.0
      5. xe-5-0-0.fra61.ip4.gtt.net    0.0%    10  151.1 151.2 151.0 152.0   0.3
      6. choopa-gw.ip4.gtt.net         0.0%    10  168.0 154.5 151.3 168.0   5.4
      7. 108.61.210.117.vultr.com     10.0%    10  151.3 151.3 151.2 151.4   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 ams-nl-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10    0.5  19.1   0.4 145.6  46.2
      2. 104.140.0.93                  0.0%    10  837.1 101.9   2.5 837.1 261.2
      3. 104.140.0.57                  0.0%    10    0.2   0.4   0.2   1.2   0.3
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   0.5   0.4   0.5   0.0
      5. 89.149.129.2                  0.0%    10   12.0  12.0  11.9  12.3   0.1
      6. as2914.lax21.ip4.gtt.net      0.0%    10   12.5  12.9  12.3  13.7   0.5
      7. ae-5.r21.lsanca03.us.bb.gin.  0.0%    10   12.2  12.8  12.2  18.0   1.8
      8. et-0-0-0.r22.asbnva02.us.bb.  0.0%    10   75.4  75.5  74.9  80.1   1.6
      9. ae-0.r23.asbnva02.us.bb.gin.  0.0%    10   75.0  74.9  74.8  75.1   0.1
    10. ae-6.r23.amstnl02.nl.bb.gin. 90.0%    10  170.5 170.5 170.5 170.5   0.0
    11. ae-1.r03.amstnl02.nl.bb.gin.  0.0%    10  155.2 155.5 155.1 156.9   0.5
    12. ae-3.r00.amstnl03.nl.bb.gin.  0.0%    10  155.2 155.4 155.2 156.6   0.4
    13. 81.20.72.122                 10.0%    10  154.7 155.1 154.7 156.4   0.5
    14. 108.61.198.102.vultr.com     10.0%    10  155.0 155.0 154.8 155.2   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 lon-gb-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10    0.5   6.5   0.4  45.7  14.4
      2. 104.140.0.97                  0.0%    10    5.3  23.4   2.2 166.7  50.4
      3. 104.140.0.57                  0.0%    10    0.4   1.6   0.2  12.9   3.9
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   9.3   0.5  83.3  26.1
      5. xe-2-2-3.lax20.ip4.gtt.net    0.0%    10   11.3  11.5  11.3  12.6   0.4
      6. ae7.edge1.LosAngels.Level3.n  0.0%    10   13.5  16.5  13.4  44.2   9.7
      7. ae-235-3611.edge5.london1.Le  0.0%    10  140.6 141.1 140.5 145.0   1.4
      8. ae-235-3611.edge5.london1.Le  0.0%    10  140.7 140.7 140.6 141.0   0.1
      9. CHOOPA-LLC.edge5.London1.Lev  0.0%    10  139.3 139.7 139.3 142.2   0.9
    10. 108.61.196.101.vultr.com     10.0%    10  140.3 140.4 140.2 140.5   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 par-fr-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10  100.2  31.2   0.4 100.2  44.6
      2. 104.140.0.93                  0.0%    10    7.6  37.7   2.7 182.2  57.6
      3. 104.140.0.57                  0.0%    10    0.3   0.8   0.3   4.3   1.2
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   4.8   0.5  43.3  13.5
      5. xe-7-3-1.par90.ip4.gtt.net    0.0%    10  135.6 137.2 135.4 152.2   5.3
      6. choopa-gw.ip4.gtt.net         0.0%    10  135.7 135.7 135.5 135.8   0.1
      7. 108.61.209.127.vultr.com      0.0%    10  135.7 135.7 135.6 135.8   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 VersaWeb Las Vegas
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10  167.9  59.0   1.4 167.9  44.5
      2. 104.140.0.97                  0.0%    10    8.2   6.5   1.1  11.5   3.1
      3. 104.140.0.57                  0.0%    10   49.3   5.4   0.3  49.3  15.4
      4. 10ge16-6.core1.phx2.he.net    0.0%    10    4.0   7.1   0.3  12.3   4.4
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   10.5  13.4  10.5  18.9   3.2
      6. 10ge3-1.core1.las1.he.net     0.0%    10   17.3  17.6  17.3  19.2   0.6
      7. fiberhub.10ge3-2.core1.las1.  0.0%    10   19.9  20.9  17.4  26.9   3.2
      8. te3-4.core1.las1.fiberhub.ne  0.0%    10   18.2  18.2  18.1  18.5   0.1
      9. 199.47.210.50                 0.0%    10   18.4  20.0  18.3  34.5   5.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 VersaWeb Seattle
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10  183.2  81.2   0.8 183.2  74.1
      2. 104.140.0.101                 0.0%    10    9.5  77.2   1.3 427.2 142.7
      3. 104.140.0.57                  0.0%    10   13.5   8.4   0.3  19.5   7.7
      4. 10ge16-6.core1.phx2.he.net    0.0%    10   11.2   3.4   0.2  12.8   5.1
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   22.7  14.9  11.0  22.7   3.9
      6. 10ge9-5.core1.sjc2.he.net     0.0%    10   29.1  21.3  18.7  30.6   4.6
      7. 10ge12-1.core1.sea1.he.net    0.0%    10   48.2  37.9  36.5  48.2   3.7
      8. six.core1.sea1.fiberhub.net   0.0%    10   38.1  38.3  38.1  38.6   0.2
      9. 76.164.234.1                  0.0%    10   38.6  38.7  38.4  39.4   0.3
    
    ----------------------------------------------
    mtr --report --report-cycles=10 OVH Canada
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 2607:ff28:0:21::1             0.0%    10   25.5  71.5   0.7 178.7  56.9
      2. 2607:ff28:7001:a::1           0.0%    10    1.2  68.6   1.2 609.5 190.4
      3. 2607:ff28:7001:1::1           0.0%    10    0.5   4.4   0.3  40.9  12.8
      4. 10gigabitethernet16-6.core1.  0.0%    10    0.3   3.2   0.3   8.1   3.0
      5. 10ge15-3.core1.dal1.he.net    0.0%    10   41.8  33.3  30.7  43.1   4.9
      6. 10ge12-6.core1.chi1.he.net    0.0%    10   53.3  57.1  53.2  91.5  12.1
      7. ???                          100.0    10    0.0   0.0   0.0   0.0   0.0
      8. 2607:5300::dd                 0.0%    10   69.7  70.0  69.7  70.9   0.5
      9. 2607:5300::97                 0.0%    10   71.3  71.5  71.2  72.5   0.5
    10. 2607:5300::128                0.0%    10   71.3  71.4  71.2  71.6   0.1
    11. 2607:5300:60:44a5::1          0.0%    10   70.8  71.3  70.8  71.9   0.3
    
    
    Code:
    -------------------------------------------
    Check system entropy pool availability
    -------------------------------------------
    
    entropy_avail: 152
    entropy_avail: 130
    entropy_avail: 134
    entropy_avail: 145
    
    Code:
    -------------------------------------------
    OpenSSL System Benchmark
    -------------------------------------------
    
    OpenSSL 1.0.1e-fips 11 Feb 2013
    -------------------------------------------
    openssl speed rsa4096 rsa2048 ecdsap256 sha256 sha1 md5 rc4 aes-256-cbc aes-128-cbc -multi 1
    OpenSSL 1.0.1e-fips 11 Feb 2013
    built on: Thu Nov  6 12:33:36 UTC 2014
    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 --param=ssp-buffer-size=4 -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              57405.79k   166352.19k   378986.58k   538711.04k   615489.54k
    sha1             57755.96k   159317.40k   319418.71k   447826.71k   500583.08k
    rc4             447396.68k   613310.68k   699106.56k   744388.27k   761460.05k
    aes-128 cbc     115640.66k   126212.27k   129918.55k   271484.93k   278099.29k
    aes-256 cbc      84878.87k    90019.52k    91890.69k   201143.64k   202025.64k
    sha256           47386.75k   107682.73k   182857.30k   229137.41k   242843.65k
                      sign    verify    sign/s verify/s
    rsa 2048 bits 0.001323s 0.000041s    755.9  24390.2
    rsa 4096 bits 0.009533s 0.000152s    104.9   6578.9
                                  sign    verify    sign/s verify/s
    256 bit ecdsa (nistp256)   0.0001s   0.0004s   8403.4   2262.4
    -------------------------------------------
    openssl speed -evp aes256 -multi 1
    OpenSSL 1.0.1e-fips 11 Feb 2013
    built on: Thu Nov  6 12:33:36 UTC 2014
    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 --param=ssp-buffer-size=4 -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              83027.77k    87919.57k    91426.13k   197836.46k   202517.16k
    -------------------------------------------
    openssl speed -evp aes128 -multi 1
    OpenSSL 1.0.1e-fips 11 Feb 2013
    built on: Thu Nov  6 12:33:36 UTC 2014
    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 --param=ssp-buffer-size=4 -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             110177.16k   124138.26k   125523.80k   276532.06k   278781.95k
    
    Code:
    -------------------------------------------
    Running UnixBench
    -------------------------------------------
    
       #    #  #    #  #  #    #          #####   ######  #    #   ####   #    #
       #    #  ##   #  #   #  #           #    #  #       ##   #  #    #  #    #
       #    #  # #  #  #    ##            #####   #####   # #  #  #       ######
       #    #  #  # #  #    ##            #    #  #       #  # #  #       #    #
       #    #  #   ##  #   #  #           #    #  #       #   ##  #    #  #    #
        ####   #    #  #  #    #          #####   ######  #    #   ####   #    #
    
       Version 5.1.3                      Based on the Byte Magazine Unix Benchmark
    
       Multi-CPU version                  Version 5 revisions by Ian Smith,
                                          Sunnyvale, CA, USA
       January 13, 2011                   johantheghost at yahoo period com
    
    
    1 x Dhrystone 2 using register variables  1 2 3 4 5 6 7 8 9 10
    
    1 x Double-Precision Whetstone  1 2 3 4 5 6 7 8 9 10
    
    1 x System Call Overhead  1 2 3 4 5 6 7 8 9 10
    
    1 x Pipe Throughput  1 2 3 4 5 6 7 8 9 10
    
    1 x Pipe-based Context Switching  1 2 3 4 5 6 7 8 9 10
    
    1 x Process Creation  1 2 3
    
    1 x Execl Throughput  1 2 3
    
    1 x Shell Scripts (1 concurrent)  1 2 3
    
    1 x Shell Scripts (8 concurrent)  1 2 3
    
    1 x Shell Scripts (16 concurrent)  1 2 3
    
    ========================================================================
       BYTE UNIX Benchmarks (Version 5.1.3)
    
       System: hostname: GNU/Linux
       OS: GNU/Linux -- 2.6.32-504.3.3.el6.x86_64 -- #1 SMP Wed Dec 17 01:55:02 UTC 2014
       Machine: x86_64 (x86_64)
       Language: en_US.utf8 (charmap="UTF-8", collate="UTF-8")
       CPU 0: QEMU Virtual CPU version 2.1.0 (6600.0 bogomips)
              x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
       14:29:07 up  3:13,  2 users,  load average: 1.03, 0.54, 0.20; runlevel 3
    
    ------------------------------------------------------------------------
    Benchmark Run: Thu Jan 01 2015 14:29:07 - 14:53:17
    1 CPU in system; running 1 parallel copy of tests
    
    Dhrystone 2 using register variables       35724718.8 lps   (10.0 s, 7 samples)
    Double-Precision Whetstone                     3956.4 MWIPS (9.9 s, 7 samples)
    Execl Throughput                               4857.8 lps   (29.8 s, 2 samples)
    Pipe Throughput                             2003937.7 lps   (10.0 s, 7 samples)
    Pipe-based Context Switching                 339906.6 lps   (10.0 s, 7 samples)
    Process Creation                              12787.7 lps   (30.0 s, 2 samples)
    Shell Scripts (1 concurrent)                   5545.9 lpm   (60.0 s, 2 samples)
    Shell Scripts (16 concurrent)                   366.7 lpm   (60.1 s, 2 samples)
    Shell Scripts (8 concurrent)                    742.6 lpm   (60.0 s, 2 samples)
    System Call Overhead                        2599222.0 lps   (10.0 s, 7 samples)
    
    System Benchmarks Partial Index              BASELINE       RESULT    INDEX
    Dhrystone 2 using register variables         116700.0   35724718.8   3061.2
    Double-Precision Whetstone                       55.0       3956.4    719.4
    Execl Throughput                                 43.0       4857.8   1129.7
    Pipe Throughput                               12440.0    2003937.7   1610.9
    Pipe-based Context Switching                   4000.0     339906.6    849.8
    Process Creation                                126.0      12787.7   1014.9
    Shell Scripts (1 concurrent)                     42.4       5545.9   1308.0
    Shell Scripts (16 concurrent)                     ---        366.7      ---
    Shell Scripts (8 concurrent)                      6.0        742.6   1237.7
    System Call Overhead                          15000.0    2599222.0   1732.8
                                                                       ========
    System Benchmarks Index Score (Partial Only)                         1287.1
    
    
    Code:
    -------------------------------------------
    centminmodbench.sh completed
    -------------------------------------------
    
    centminmodbench.sh Total Run Time: 6780.547054170 seconds
    

    Centmin Mod .08 beta 01 install time



    Running .08 beta 01 install with
    Code:
    curl -sL https://gist.github.com/centminmod/dbe765784e03bc4b0d40/raw/installer.sh | bash
    Finished install in 1462.864 seconds with YUM portion taking 328.69s which is pretty much inline with install times for DigitalOcean 512MB KVM VPS between ~1100-1600s install, Vultr 768MB KVM VPS ~900-1300s and Linode Xen VPS ~900-1300s.

    Code:
    ccache stats:
    cache directory                     /home/.ccache
    cache hit (direct)                   765
    cache hit (preprocessed)             303
    cache miss                          2637
    called for link                      156
    called for preprocessing             227
    compile failed                        40
    preprocessor error                    28
    bad compiler arguments                49
    unsupported source language           57
    autoconf compile/link                538
    unsupported compiler option           14
    no input file                        119
    files in cache                      5612
    cache size                         126.8 Mbytes
    max cache size                       2.0 Gbytes
    
    Total YUM Time: 328.692933128 seconds
    Total Centmin Mod Install Time: 1462.864103167 seconds
    Code:
    *************************************************
    * Post-Install Check List....
    *************************************************
    
    --------------------------------------------------------
    Check ccache Version:
    --------------------------------------------------------
    ccache version 3.1.6
    
    Copyright (C) 2002-2007 Andrew Tridgell
    Copyright (C) 2009-2011 Joel Rosdahl
    
    This program is free software; you can redistribute it and/or modify it under
    the terms of the GNU General Public License as published by the Free Software
    Foundation; either version 3 of the License, or (at your option) any later
    version.
    
    --------------------------------------------------------
    Check Nginx Version:
    --------------------------------------------------------
    nginx version: nginx/1.7.9
    built by gcc 4.4.7 20120313 (Red Hat 4.4.7-11) (GCC)
    TLS SNI support enabled
    configure arguments: --sbin-path=/usr/local/sbin/nginx --conf-path=/usr/local/nginx/conf/nginx.conf --with-http_ssl_module --with-http_gzip_static_module --with-http_stub_status_module --with-http_sub_module --with-http_addition_module --with-http_image_filter_module --with-http_secure_link_module --with-http_flv_module --with-http_realip_module --with-openssl-opt=enable-tlsext --add-module=../ngx-fancyindex-ngx-fancyindex --add-module=../ngx_cache_purge-2.3 --add-module=../headers-more-nginx-module-0.25 --add-module=../nginx-accesskey-2.0.3 --add-module=../nginx-http-concat-master --with-http_dav_module --add-module=../nginx-dav-ext-module-0.0.3 --add-module=../openresty-memc-nginx-module-1518da4 --add-module=../openresty-srcache-nginx-module-ffa9ab7 --add-module=../nginx-sticky-module-1.2.5 --add-module=../nginx_upstream_check_module-0.3.0 --with-openssl=../openssl-1.0.1j --with-libatomic --with-pcre=../pcre-8.36 --with-pcre-jit --with-http_spdy_module --add-module=../ngx_pagespeed-release-1.9.32.2-beta
    
    --------------------------------------------------------
    Check PHP-FPM Version:
    --------------------------------------------------------
    PHP 5.4.36 (cli) (built: Jan  1 2015 23:04:15)
    Copyright (c) 1997-2014 The PHP Group
    Zend Engine v2.4.0, Copyright (c) 1998-2014 Zend Technologies
    
    --------------------------------------------------------
    Check MariaDB installed RPM Versions:
    --------------------------------------------------------
    MariaDB-client-10.0.15-1.el6.x86_64
    MariaDB-devel-10.0.15-1.el6.x86_64
    MariaDB-common-10.0.15-1.el6.x86_64
    MariaDB-shared-10.0.15-1.el6.x86_64
    MariaDB-compat-10.0.15-1.el6.x86_64
    MariaDB-server-10.0.15-1.el6.x86_64
    
    --------------------------------------------------------
    Check Memcached Server Version:
    --------------------------------------------------------
    memcached 1.4.21
    
    --------------------------------------------------------
    Check CSF Firewall Version:
    --------------------------------------------------------
    csf: v7.57 (generic)
    
    --------------------------------------------------------
    Check Siege Benchmark Version:
    --------------------------------------------------------
    SIEGE 3.0.9
    
    Copyright (C) 2014 by Jeffrey Fulmer, et al.
    This is free software; see the source for copying conditions.
    There is NO warranty; not even for MERCHANTABILITY or FITNESS
    FOR A PARTICULAR PURPOSE.
    
    
    --------------------------------------------------------
    Check ngx_pagespeed Control Script:
    http://centminmod.com/nginx_ngx_pagespeed.html
    --------------------------------------------------------
    pscontrol admin
    pscontrol handler
    pscontrol edit
    pscontrol on
    pscontrol off
    pscontrol statson
    pscontrol statsoff
    
    --------------------------------------------------------
    Check mysqlreport version:
    --------------------------------------------------------
    mysqlreport v3.5-maria11 Jul 4 2013
    
    --------------------------------------------------------
    Check NSD Bind Version:
    --------------------------------------------------------
    NSD version 3.2.17
    Written by NLnet Labs.
    
    Copyright (C) 2001-2011 NLnet Labs.  This is free software.
    There is NO warranty; not even for MERCHANTABILITY or FITNESS
    FOR A PARTICULAR PURPOSE.
    
    --------------------------------------------------------
    Check YUM Repo List
    --------------------------------------------------------
    Loaded plugins: downloadonly, fastestmirror, priorities
    Loading mirror speeds from cached hostfile
    * base: repos.lax.quadranet.com
    * epel: mirror.hmc.edu
    * extras: repos.lax.quadranet.com
    * rpmforge: mirror.hmc.edu
    * updates: repos.lax.quadranet.com
    1631 packages excluded due to repository priority protections
    repo id        repo name                                             status
    base           CentOS-6 - Base                                       4,952+1,566
    *epel          Extra Packages for Enterprise Linux 6 - x86_64        8,471+2,693
    extras         CentOS-6 - Extras                                              36
    mariadb        MariaDB                                                      12+5
    rpmforge       RHEL 6 - RPMforge.net - dag                           3,169+1,549
    updates        CentOS-6 - Updates                                        405+125
    repolist: 17,045
     
    Last edited: Jan 2, 2015
  19. eva2000

    eva2000 Administrator Staff Member

    53,190
    12,113
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,649
    Local Time:
    11:53 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+

    centminmodbench.sh results AFTER Centmin Mod install



    Re-ran centminmodbench.sh tests after Centmin Mod .08 beta01 LEMP web stack is installed. There's additional tests for static OpenSSL benchmarks compiled with Nginx, parallel Axel download bandwidth speed tests, mysqlslap benchmarks for MariaDB 10 MySQL and PHP benchmarks.

    There would be differences in bandwidth tests due to Centmin Mod auto installer's applied TCP /etc/sysctl.conf tuning compared to before bandwidth tests above as well an Axel multi-threaded parallel bandwidth speed test as well.

    Notice improved Entropy availability numbers now below, they are due to Centmin Mod LEMP installing haveged

    Code:
    -------------------------------------------
    centminmodbench.sh 0.5
    http://bench.centminmod.com
    written by: George Liu (eva2000)
    http://centminmod.com
    -------------------------------------------
    
    -------------------------------------------
    System Information
    -------------------------------------------
    
    2.6.32-504.3.3.el6.x86_64
    
    CentOS release 6.6 (Final)
    
    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:                 6
    Stepping:              3
    CPU MHz:               3300.024
    BogoMIPS:              6600.04
    Hypervisor vendor:     KVM
    Virtualization type:   full
    L1d cache:             32K
    L1i cache:             32K
    L2 cache:              4096K
    NUMA node0 CPU(s):     0
    
    ----------------------------------------------
    CPU NODE SOCKET CORE L1d:L1i:L2 ONLINE
    0   0    0      0    0:0:0      yes
    
    ----------------------------------------------
                 total       used       free     shared    buffers     cached
    Mem:           490        310        179         21         13        170
    Low:           490        310        179
    High:            0          0          0
    -/+ buffers/cache:        126        363
    Swap:          991          2        989
    
    ----------------------------------------------
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/mapper/VolGroup-lv_root
                           14G  7.5G  5.1G  60% /
    tmpfs                 246M     0  246M   0% /dev/shm
    /dev/vda1             477M   47M  405M  11% /boot
    
    
    Code:
    -------------------------------------------
    disk ioping tests
    -------------------------------------------
    
    
    Running IOPing I/O benchmark...
    
    IOPing I/O: ./ioping -c 10 .
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=1 time=0.3 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=2 time=0.4 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=3 time=0.3 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=4 time=0.3 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=5 time=3.1 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=6 time=0.3 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=7 time=0.3 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=8 time=0.3 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=9 time=17.1 ms
    4096 bytes from . (ext4 /dev/mapper/VolGroup-lv_root): request=10 time=0.4 ms
    
    --- . (ext4 /dev/mapper/VolGroup-lv_root) ioping statistics ---
    10 requests completed in 9024.2 ms, 438 iops, 1.7 mb/s
    min/avg/max/mdev = 0.3/2.3/17.1/5.0 ms
    
    IOPing seek rate: ./ioping -RD .
    
    --- . (ext4 /dev/mapper/VolGroup-lv_root) ioping statistics ---
    597 requests completed in 3001.6 ms, 203 iops, 0.8 mb/s
    min/avg/max/mdev = 0.2/4.9/34.6/4.4 ms
    
    IOPing sequential: ./ioping -RL .
    
    --- . (ext4 /dev/mapper/VolGroup-lv_root) ioping statistics ---
    1166 requests completed in 3002.1 ms, 407 iops, 101.7 mb/s
    min/avg/max/mdev = 2.0/2.5/62.2/2.5 ms
    
    IOPing cached: ./ioping -RC .
    
    --- . (ext4 /dev/mapper/VolGroup-lv_root) ioping statistics ---
    37353 requests completed in 3000.0 ms, 276492 iops, 1080.0 mb/s
    min/avg/max/mdev = 0.0/0.0/0.0/0.0 ms
    
    
    Code:
    -------------------------------------------
    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.065923 s, 2.0 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.0615823 s, 2.2 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.0422688 s, 3.2 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.0510885 s, 2.6 GB/s
    
    Code:
    -------------------------------------------
    ramdisk ioping tests - memory bandwidth
    -------------------------------------------
    
    Running IOPing I/O ramdisk benchmark...
    cc -std=c99 -g -Wall -Wextra -pedantic -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DVERSION=\"0.6\" -c -o ioping.o ioping.c
    cc -o ioping ioping.o -std=c99 -g -Wall -Wextra -pedantic -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -lm
    
    IOPing I/O: ./ioping -c 10 .
    4096 bytes from . (tmpfs tmpfs): request=1 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=2 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=3 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=4 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=5 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=6 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=7 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=8 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=9 time=0.0 ms
    4096 bytes from . (tmpfs tmpfs): request=10 time=0.0 ms
    
    --- . (tmpfs tmpfs) ioping statistics ---
    10 requests completed in 9001.6 ms, 204082 iops, 797.2 mb/s
    min/avg/max/mdev = 0.0/0.0/0.0/0.0 ms
    
    IOPing seek rate: ./ioping -R .
    
    --- . (tmpfs tmpfs) ioping statistics ---
    33617 requests completed in 3000.0 ms, 332585 iops, 1299.2 mb/s
    min/avg/max/mdev = 0.0/0.0/0.1/0.0 ms
    
    IOPing sequential: ./ioping -RL .
    
    --- . (tmpfs tmpfs) ioping statistics ---
    20021 requests completed in 3000.0 ms, 27231 iops, 6807.8 mb/s
    min/avg/max/mdev = 0.0/0.0/0.1/0.0 ms
    
    IOPing cached: ./ioping -RC .
    
    --- . (tmpfs tmpfs) ioping statistics ---
    36936 requests completed in 3000.1 ms, 256174 iops, 1000.7 mb/s
    min/avg/max/mdev = 0.0/0.0/0.1/0.0 ms
    
    
    Code:
    
    -------------------------------------------
    Running bandwidth benchmark...
    -------------------------------------------
    
    ----------------------------------------------
    Download from Cachefly (http://cachefly.cachefly.net/100mb.test)
    Download Cachefly: 87.1MB/s
    
    -------------------------------------------
    USA bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Download from Linode, Atlanta, GA, USA (http://speedtest.atlanta.linode.com/100MB-atlanta.bin)
    Download Linode, Atlanta, GA, USA: 352KB/s
    ----------------------------------------------
    Download from Linode, Dallas, TX, USA (http://speedtest.dallas.linode.com/100MB-dallas.bin)
    Download Linode, Dallas, TX, USA: 35.6MB/s
    ----------------------------------------------
    Download from Leaseweb, Manassas, VA, USA (http://mirror.us.leaseweb.net/speedtest/100mb.bin)
    Download Leaseweb, Manassas, VA, USA: 17.6MB/s
    ----------------------------------------------
    Download from Softlayer, Seattle, WA, USA (http://speedtest.sea01.softlayer.com/downloads/test100.zip)
    Download Softlayer, Seattle, WA, USA: 46.4MB/s
    ----------------------------------------------
    Download from Softlayer, San Jose, CA, USA (http://speedtest.sjc01.softlayer.com/downloads/test100.zip)
    Download Softlayer, San Jose, CA, USA: 69.9MB/s
    ----------------------------------------------
    Download from Softlayer, Washington, DC, USA (http://speedtest.wdc01.softlayer.com/downloads/test100.zip)
    Download Softlayer, Washington, DC, USA: 31.3MB/s
    ----------------------------------------------
    Download from VersaWeb, Las Vegas, Nevada (http://199.47.210.50/100mbtest.bin)
    Download VersaWeb, Las Vegas, Nevada: 71.2MB/s
    ----------------------------------------------
    Download from OVH, BHS, Canada (http://bhs.proof.ovh.net/files/100Mio.dat)
    Download OVH, BHS, Canada: 139KB/s
    ----------------------------------------------
    Download from Vultr, Los Angeles, California (http://lax-ca-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Los Angeles, California: 45.4MB/s
    ----------------------------------------------
    Download from Vultr, Seattle, Washington (http://wa-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Seattle, Washington: 29.7MB/s
    ----------------------------------------------
    Download from Vultr, Dallas, Texas (http://tx-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Dallas, Texas: 41.3MB/s
    ----------------------------------------------
    Download from Vultr, Chicago, Illinois (http://il-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Chicago, Illinois: 153KB/s
    ----------------------------------------------
    Download from Vultr, Atlanta, Georgia (http://ga-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Atlanta, Georgia: 32.5MB/s
    ----------------------------------------------
    Download from Vultr, Miami, Florida (http://fl-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Miami, Florida: 26.0MB/s
    ----------------------------------------------
    Download from Vultr, New York / New Jersey (http://nj-us-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, New York / New Jersey: 21.7MB/s
    
    -------------------------------------------
    Asia bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Download from Linode, Tokyo, JP (http://speedtest.tokyo.linode.com/100MB-tokyo.bin)
    Download Linode, Tokyo, JP: 16.0MB/s
    ----------------------------------------------
    Download from Softlayer, Singapore (http://speedtest.sng01.softlayer.com/downloads/test100.zip)
    Download Softlayer, Singapore: 12.3MB/s
    ----------------------------------------------
    Download from Vultr, Tokyo, Japan (http://hnd-jp-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Tokyo, Japan: 10.5MB/s
    
    -------------------------------------------
    Europe bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Download from Linode, London, UK (http://speedtest.london.linode.com/100MB-london.bin)
    Download Linode, London, UK: 14.1MB/s
    ----------------------------------------------
    Download from OVH, Paris, France (http://proof.ovh.net/files/100Mio.dat)
    Download OVH, Paris, France: 11.2MB/s
    ----------------------------------------------
    Download from SmartDC, Rotterdam, Netherlands (http://mirror.i3d.net/100mb.bin)
    Download SmartDC, Rotterdam, Netherlands: 10.1MB/s
    ----------------------------------------------
    Download from Vultr, Amsterdam, Netherlands (http://ams-nl-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Amsterdam, Netherlands: 9.62MB/s
    ----------------------------------------------
    Download from Vultr, London, UK (http://lon-gb-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, London, UK: 9.72MB/s
    ----------------------------------------------
    Download from Vultr, Paris, France (http://par-fr-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Paris, France: 10.2MB/s
    
    -------------------------------------------
    Australia bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Download from Vultr, Sydney, Australia (http://syd-au-ping.vultr.com/vultr.com.100MB.bin)
    Download Vultr, Sydney, Australia: 3.06MB/s
    
    Code:
    
    -------------------------------------------
    Running Axel multi-threaded bandwidth benchmark...
    -------------------------------------------
    
    ----------------------------------------------
    Axel Download from Cachefly (http://cachefly.cachefly.net/100mb.test)
    Axel Download Cachefly: 59.32MB/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: 3.85MB/s
    ----------------------------------------------
    Axel Download from Linode, Dallas, TX, USA (http://speedtest.dallas.linode.com/100MB-dallas.bin)
    Axel Download Linode, Dallas, TX, USA: 53.72MB/s
    ----------------------------------------------
    Axel Download from Leaseweb, Manassas, VA, USA (http://mirror.us.leaseweb.net/speedtest/100mb.bin)
    Axel Download Leaseweb, Manassas, VA, USA: 33.68MB/s
    ----------------------------------------------
    Axel Download from Softlayer, Seattle, WA, USA (http://speedtest.sea01.softlayer.com/downloads/test100.zip)
    Axel Download Softlayer, Seattle, WA, USA: 59.54MB/s
    ----------------------------------------------
    Axel Download from Softlayer, San Jose, CA, USA (http://speedtest.sjc01.softlayer.com/downloads/test100.zip)
    Axel Download Softlayer, San Jose, CA, USA: 67.39MB/s
    ----------------------------------------------
    Axel Download from Softlayer, Washington, DC, USA (http://speedtest.wdc01.softlayer.com/downloads/test100.zip)
    Axel Download Softlayer, Washington, DC, USA: 39.81MB/s
    ----------------------------------------------
    Axel Download from VersaWeb, Las Vegas, Nevada (http://199.47.210.50/100mbtest.bin)
    Axel Download VersaWeb, Las Vegas, Nevada: 56.65MB/s
    ----------------------------------------------
    Axel Download from OVH, BHS, Canada (http://bhs.proof.ovh.net/files/100Mio.dat)
    Axel Download OVH, BHS, Canada: 17.29MB/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: 69.77MB/s
    ----------------------------------------------
    Axel Download from Vultr, Seattle, Washington (http://wa-us-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Seattle, Washington: 32.76MB/s
    ----------------------------------------------
    Axel Download from Vultr, Dallas, Texas (http://tx-us-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Dallas, Texas: 54.72MB/s
    ----------------------------------------------
    Axel Download from Vultr, Chicago, Illinois (http://il-us-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Chicago, Illinois: .52MB/s
    ----------------------------------------------
    Axel Download from Vultr, Atlanta, Georgia (http://ga-us-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Atlanta, Georgia: 31.31MB/s
    ----------------------------------------------
    Axel Download from Vultr, Miami, Florida (http://fl-us-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Miami, Florida: 25.56MB/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: 22.66MB/s
    
    -------------------------------------------
    Asia bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Axel Download from Linode, Tokyo, JP (http://speedtest.tokyo.linode.com/100MB-tokyo.bin)
    Axel Download Linode, Tokyo, JP: 17.74MB/s
    ----------------------------------------------
    Axel Download from Softlayer, Singapore (http://speedtest.sng01.softlayer.com/downloads/test100.zip)
    Axel Download Softlayer, Singapore: 15.76MB/s
    ----------------------------------------------
    Axel Download from Vultr, Tokyo, Japan (http://hnd-jp-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Tokyo, Japan: 10.39MB/s
    
    -------------------------------------------
    Europe bandwidth tests...
    -------------------------------------------
    
    ----------------------------------------------
    Axel Download from Linode, London, UK (http://speedtest.london.linode.com/100MB-london.bin)
    Axel Download Linode, London, UK: 25.71MB/s
    ----------------------------------------------
    Axel Download from OVH, Paris, France (http://proof.ovh.net/files/100Mio.dat)
    Axel Download OVH, Paris, France: 20.32MB/s
    ----------------------------------------------
    Axel Download from SmartDC, Rotterdam, Netherlands (http://mirror.i3d.net/100mb.bin)
    Axel Download SmartDC, Rotterdam, Netherlands: 19.05MB/s
    ----------------------------------------------
    Axel Download from Vultr, Amsterdam, Netherlands (http://ams-nl-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Amsterdam, Netherlands: 9.03MB/s
    ----------------------------------------------
    Axel Download from Vultr, London, UK (http://lon-gb-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, London, UK: 9.69MB/s
    ----------------------------------------------
    Axel Download from Vultr, Paris, France (http://par-fr-ping.vultr.com/vultr.com.100MB.bin)
    Axel Download Vultr, Paris, France: 10.47MB/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: 4.85MB/s
    
    Code:
    
    -------------------------------------------
    Running ping tests...
    -------------------------------------------
    
    ----------------------------------------------
    Pings (cachefly.cachefly.net):
    PING vip1.g.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=54 time=12.8 ms
    64 bytes from vip1.G-anycast1.cachefly.net (205.234.175.175): icmp_seq=2 ttl=54 time=12.9 ms
    64 bytes from vip1.G-anycast1.cachefly.net (205.234.175.175): icmp_seq=3 ttl=54 time=12.8 ms
    
    --- vip1.g.cachefly.net ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2015ms
    rtt min/avg/max/mdev = 12.845/12.900/12.997/0.115 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=50 time=176 ms
    64 bytes from 108.61.212.117.vultr.com (108.61.212.117): icmp_seq=2 ttl=50 time=176 ms
    64 bytes from 108.61.212.117.vultr.com (108.61.212.117): icmp_seq=3 ttl=50 time=176 ms
    
    --- syd-au-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2179ms
    rtt min/avg/max/mdev = 176.524/176.734/176.893/0.376 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=120 ms
    64 bytes from 108.61.201.151.vultr.com (108.61.201.151): icmp_seq=2 ttl=51 time=120 ms
    64 bytes from 108.61.201.151.vultr.com (108.61.201.151): icmp_seq=3 ttl=51 time=121 ms
    
    --- hnd-jp-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2122ms
    rtt min/avg/max/mdev = 120.557/120.935/121.345/0.514 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=57 time=11.5 ms
    64 bytes from 108.61.219.200.vultr.com (108.61.219.200): icmp_seq=2 ttl=57 time=11.5 ms
    64 bytes from 108.61.219.200.vultr.com (108.61.219.200): icmp_seq=3 ttl=57 time=11.5 ms
    
    --- lax-ca-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2015ms
    rtt min/avg/max/mdev = 11.552/11.571/11.591/0.089 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=58 time=42.5 ms
    64 bytes from 108.61.194.105.vultr.com (108.61.194.105): icmp_seq=2 ttl=58 time=42.5 ms
    64 bytes from 108.61.194.105.vultr.com (108.61.194.105): icmp_seq=3 ttl=58 time=42.5 ms
    
    --- wa-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2045ms
    rtt min/avg/max/mdev = 42.540/42.560/42.589/0.239 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=57 time=24.5 ms
    64 bytes from 108.61.224.175.vultr.com (108.61.224.175): icmp_seq=2 ttl=57 time=24.3 ms
    64 bytes from 108.61.224.175.vultr.com (108.61.224.175): icmp_seq=3 ttl=57 time=24.5 ms
    
    --- tx-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2027ms
    rtt min/avg/max/mdev = 24.377/24.481/24.552/0.148 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=48 time=76.4 ms
    64 bytes from 107.191.51.12.vultr.com (107.191.51.12): icmp_seq=2 ttl=48 time=75.9 ms
    64 bytes from 107.191.51.12.vultr.com (107.191.51.12): icmp_seq=3 ttl=48 time=77.4 ms
    
    --- il-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2079ms
    rtt min/avg/max/mdev = 75.912/76.592/77.427/0.667 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=57 time=41.9 ms
    64 bytes from 108.61.193.166.vultr.com (108.61.193.166): icmp_seq=2 ttl=57 time=41.9 ms
    64 bytes from 108.61.193.166.vultr.com (108.61.193.166): icmp_seq=3 ttl=57 time=41.9 ms
    
    --- ga-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2044ms
    rtt min/avg/max/mdev = 41.932/41.950/41.973/0.168 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: icmp_seq=1 ttl=58 time=55.7 ms
    64 bytes from 104.156.244.232: icmp_seq=2 ttl=58 time=55.8 ms
    64 bytes from 104.156.244.232: icmp_seq=3 ttl=58 time=56.1 ms
    
    --- fl-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2058ms
    rtt min/avg/max/mdev = 55.759/55.899/56.113/0.153 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=53 time=65.1 ms
    64 bytes from 108.61.149.182.vultr.com (108.61.149.182): icmp_seq=2 ttl=53 time=65.1 ms
    64 bytes from 108.61.149.182.vultr.com (108.61.149.182): icmp_seq=3 ttl=53 time=65.1 ms
    
    --- nj-us-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2066ms
    rtt min/avg/max/mdev = 65.118/65.147/65.185/0.210 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=58 time=147 ms
    64 bytes from 108.61.210.117.vultr.com (108.61.210.117): icmp_seq=2 ttl=58 time=147 ms
    64 bytes from 108.61.210.117.vultr.com (108.61.210.117): icmp_seq=3 ttl=58 time=147 ms
    
    --- fra-de-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2149ms
    rtt min/avg/max/mdev = 147.269/147.531/147.946/0.431 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=56 time=158 ms
    64 bytes from 108.61.198.102.vultr.com (108.61.198.102): icmp_seq=2 ttl=56 time=159 ms
    64 bytes from 108.61.198.102.vultr.com (108.61.198.102): icmp_seq=3 ttl=56 time=159 ms
    
    --- ams-nl-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2161ms
    rtt min/avg/max/mdev = 158.924/159.020/159.102/0.466 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=45 time=140 ms
    64 bytes from 108.61.196.101.vultr.com (108.61.196.101): icmp_seq=2 ttl=45 time=140 ms
    64 bytes from 108.61.196.101.vultr.com (108.61.196.101): icmp_seq=3 ttl=45 time=140 ms
    
    --- lon-gb-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2143ms
    rtt min/avg/max/mdev = 140.291/140.333/140.362/0.307 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=58 time=136 ms
    64 bytes from 108.61.209.127.vultr.com (108.61.209.127): icmp_seq=2 ttl=58 time=136 ms
    64 bytes from 108.61.209.127.vultr.com (108.61.209.127): icmp_seq=3 ttl=58 time=136 ms
    
    --- par-fr-ping.vultr.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2139ms
    rtt min/avg/max/mdev = 136.411/136.468/136.532/0.305 ms
    
    ----------------------------------------------
    Pings (VersaWeb Las Vegas):
    PING 199.47.210.50 (199.47.210.50) 56(84) bytes of data.
    64 bytes from 199.47.210.50: icmp_seq=1 ttl=57 time=18.6 ms
    64 bytes from 199.47.210.50: icmp_seq=2 ttl=57 time=18.2 ms
    64 bytes from 199.47.210.50: icmp_seq=3 ttl=57 time=18.3 ms
    
    --- 199.47.210.50 ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2021ms
    rtt min/avg/max/mdev = 18.277/18.419/18.681/0.242 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=56 time=38.9 ms
    64 bytes from 76.164.234.1: icmp_seq=2 ttl=56 time=38.7 ms
    64 bytes from 76.164.234.1: icmp_seq=3 ttl=56 time=38.5 ms
    
    --- 76.164.234.1 ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2041ms
    rtt min/avg/max/mdev = 38.518/38.739/38.907/0.163 ms
    
    ----------------------------------------------
    Pings (OVH Canada):
    PING bhs.proof.ovh.net (192.99.19.165) 56(84) bytes of data.
    64 bytes from ns238643.ip-192-99-19.net (192.99.19.165): icmp_seq=1 ttl=54 time=73.1 ms
    64 bytes from ns238643.ip-192-99-19.net (192.99.19.165): icmp_seq=2 ttl=54 time=73.0 ms
    64 bytes from ns238643.ip-192-99-19.net (192.99.19.165): icmp_seq=3 ttl=54 time=73.0 ms
    
    --- bhs.proof.ovh.net ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2075ms
    rtt min/avg/max/mdev = 73.032/73.072/73.134/0.044 ms
    
    
    Code:
    
    -------------------------------------------
    Running mtr tests...
    -------------------------------------------
    
    ----------------------------------------------
    mtr --report --report-cycles=10 cachefly.cachefly.net
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10  179.7 167.7 116.0 270.8  42.0
      2. 104.140.0.93                  0.0%    10    6.5 202.8   6.5 876.8 311.5
      3. 104.140.0.57                  0.0%    10    0.9   0.4   0.3   0.9   0.2
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   3.1   0.4  27.1   8.4
      5. xe-2-2-3.lax20.ip4.gtt.net    0.0%    10   11.3  11.4  11.3  11.6   0.1
      6. vip1.G-anycast1.cachefly.net  0.0%    10   13.0  13.0  12.8  13.9   0.3
    
    ----------------------------------------------
    mtr --report --report-cycles=10 speedtest.atlanta.linode.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 2607:ff28:0:21::1             0.0%    10    1.3  87.8   1.3 236.6  86.1
      2. 2607:ff28:7001:a::1           0.0%    10    0.7  88.0   0.7 518.9 178.7
      3. 2607:ff28:7001:1::1           0.0%    10    0.3   1.0   0.3   6.4   1.9
      4. 10gigabitethernet16-6.core1.  0.0%    10    0.3   2.8   0.3   7.7   2.9
      5. 10ge1-4.core1.phx1.he.net     0.0%    10    0.8   1.1   0.8   3.4   0.8
      6. 2001:478:186::14              0.0%    10    0.9   0.9   0.9   0.9   0.0
      7. ???                          100.0    10    0.0   0.0   0.0   0.0   0.0
      8. ???                          100.0    10    0.0   0.0   0.0   0.0   0.0
      9. 2001:438:fffe::a02            0.0%    10   45.0  81.7  45.0 214.5  65.1
    10. 2604:b900:1::2                0.0%    10   40.0  40.2  40.0  40.5   0.1
    11. speedtest.atlanta.linode.com  0.0%    10   39.9  40.1  39.8  41.9   0.6
    
    ----------------------------------------------
    mtr --report --report-cycles=10 speedtest.dallas.linode.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 2607:ff28:0:21::1             0.0%    10    1.9  82.5   1.9 270.8  93.8
      2. 2607:ff28:7001:a::1           0.0%    10   10.1  27.8   0.8 120.0  44.7
      3. 2607:ff28:7001:1::1           0.0%    10    1.2   3.6   0.3  14.3   5.0
      4. 10gigabitethernet16-6.core1.  0.0%    10    1.1   5.7   1.1  10.2   3.2
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   23.5  12.6  11.0  23.5   4.0
      6. 2001:504:13::210:131          0.0%    10   10.4  10.4  10.3  10.4   0.0
      7. po5.bbr01.eq01.dal01.network  0.0%    10   55.1  55.5  55.1  58.8   1.2
      8. 2607.f0d0.0002.0002.0000.000  0.0%    10   55.3  55.4  55.3  55.7   0.1
      9. 0.0.0.3-static.reverse.softl  0.0%    10   55.5  61.3  55.4 113.5  18.3
    10. 0.0.0.9-static.reverse.softl  0.0%    10   82.6  60.2  55.2  82.6  10.5
    11. 0.0.0.1-static.reverse.softl  0.0%    10   55.6  55.5  55.3  56.0   0.2
    12. speedtest.dallas.linode.com   0.0%    10   51.0  51.1  51.0  51.2   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 mirror.us.leaseweb.net
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 2607:ff28:0:21::1             0.0%    10   93.3 129.8  33.5 235.8  67.6
      2. 2607:ff28:7001:b::1           0.0%    10    6.8 129.9   3.7 890.7 279.0
      3. 2607:ff28:7001:1::1           0.0%    10    0.4   0.4   0.3   0.4   0.0
      4. 10gigabitethernet16-6.core1.  0.0%    10    0.3   3.1   0.3  11.9   3.5
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   10.5  12.3  10.5  17.4   2.2
      6. 10ge10-2.core1.lax1.he.net    0.0%    10    9.8  10.2   9.8  12.3   0.8
      7. globeinternet-as6453.gigabit  0.0%    10    9.9  11.2   9.9  22.3   3.9
      8. if-ae6.20.tcore2.LVW-Los-Ang  0.0%    10   21.4  23.5  21.4  24.6   1.2
      9. if-ae14.8.tcore2.AEQ-Ashburn  0.0%    10   63.9  63.8  63.7  63.9   0.1
    10. 2001:5a0:600:500::12          0.0%    10   85.5  85.5  85.4  85.6   0.0
    11. 2604:9a00:2010:a001:1:face:b  0.0%    10   84.8  84.8  84.7  85.0   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 speedtest.sea01.softlayer.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10  151.4 136.4  50.1 257.0  66.2
      2. 104.140.0.97                  0.0%    10   27.9  29.2   2.1 108.8  37.3
      3. 104.140.0.57                  0.0%    10    0.3   3.4   0.3  31.0   9.7
      4. 10ge16-6.core1.phx2.he.net    0.0%    10    0.3   5.7   0.3  12.2   4.9
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   23.2  15.1  11.0  23.2   4.1
      6. any2ix.coresite.com           0.0%    10   10.4  10.4  10.3  10.4   0.0
      7. ae7.bbr02.cs01.lax01.network  0.0%    10   10.8  11.0  10.6  12.5   0.6
      8. ae0.bbr02.eq01.sjc02.network  0.0%    10   18.4  19.9  18.3  29.1   3.6
      9. ae7.bbr01.eq01.sjc02.network  0.0%    10   18.3  21.9  18.3  49.0   9.6
    10. ae0.bbr02.wb01.sea02.network  0.0%    10   35.5  35.4  35.3  35.6   0.1
    11. ae1.dar01.sr01.sea01.network  0.0%    10   35.7  35.7  35.6  35.7   0.0
    12. po1.fcr01.sr01.sea01.network  0.0%    10   36.7  37.4  36.7  39.3   1.0
    13. speedtest.sea01.softlayer.co  0.0%    10   35.8  35.7  35.6  35.8   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 speedtest.sjc01.softlayer.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10  170.8  96.6  41.3 170.8  43.4
      2. 104.140.0.105                 0.0%    10    2.4  69.4   1.3 632.2 197.8
      3. 104.140.0.57                  0.0%    10    0.3   0.3   0.3   0.4   0.0
      4. 10ge16-6.core1.phx2.he.net    0.0%    10    5.9   3.1   0.3  12.5   3.8
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   21.1  16.0  11.0  21.1   3.5
      6. any2ix.coresite.com           0.0%    10   10.4  10.4  10.4  10.4   0.0
      7. ae7.bbr02.cs01.lax01.network  0.0%    10   10.6  10.8  10.6  12.3   0.5
      8. ae0.bbr02.eq01.sjc02.network  0.0%    10   18.2  18.1  18.1  18.2   0.0
      9. ae5.dar02.sr01.sjc01.network  0.0%    10   20.4  19.2  18.6  20.6   0.8
    10. po2.fcr01.sr01.sjc01.network 10.0%    10   19.3  27.1  19.3  54.8  13.0
    11. speedtest.sjc01.softlayer.co  0.0%    10   18.7  18.7  18.6  18.7   0.0
    
    ----------------------------------------------
    mtr --report --report-cycles=10 speedtest.wdc01.softlayer.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10   26.0  81.9   1.7 159.0  66.1
      2. 104.140.0.101                 0.0%    10    5.1 148.5   4.3 804.6 275.2
      3. 104.140.0.57                  0.0%    10    0.3   0.3   0.3   0.4   0.0
      4. 10ge16-6.core1.phx2.he.net    0.0%    10    0.3   3.1   0.3   7.7   2.9
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   11.0  11.9  11.0  17.8   2.2
      6. any2ix.coresite.com           0.0%    10   10.4  11.5  10.4  20.2   3.1
      7. ae19.bbr01.eq01.dal03.networ  0.0%    10   35.2  35.3  35.2  35.4   0.1
      8. ae7.bbr02.eq01.dal03.network  0.0%    10   35.2  35.5  35.2  36.3   0.4
      9. ae1.bbr01.tl01.atl01.network  0.0%    10   55.1  55.4  55.1  57.2   0.6
    10. ae0.bbr01.eq01.wdc02.network  0.0%    10   67.1  67.2  67.1  67.3   0.1
    11. ae0.dar02.sr01.wdc01.network  0.0%    10   62.9  63.0  62.9  63.2   0.1
    12. po2.fcr01.sr01.wdc01.network  0.0%    10   68.3  76.4  68.1 129.2  19.3
    13. speedtest.wdc01.softlayer.co  0.0%    10   63.0  63.1  63.0  63.3   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 speedtest.tokyo.linode.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 2607:ff28:0:21::1             0.0%    10   93.0  92.2  32.2 158.6  37.9
      2. 2607:ff28:7001:a::1           0.0%    10    7.2   8.4   1.1  22.3   6.5
      3. 2607:ff28:7001:1::1           0.0%    10    0.4   3.5   0.3  32.3  10.1
      4. 10gigabitethernet16-6.core1.  0.0%    10    0.3   1.6   0.3   5.1   1.7
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   11.0  16.4  11.0  23.4   4.3
      6. kddi-as2516.10gigabitetherne  0.0%    10   22.9  33.7  22.9 115.0  28.6
      7. 6lajbb001.int-gw.kddi.ne.jp   0.0%    10   24.9  24.9  24.9  25.0   0.0
      8. 6otejbb205.int-gw.kddi.ne.jp  0.0%    10  115.0 115.0 115.0 115.2   0.0
      9. 6cm-fcu203.int-gw.kddi.ne.jp  0.0%    10  121.1 125.1 121.1 132.8   4.3
    10. 2001:268:f702:6c::2           0.0%    10  115.8 115.8 115.8 115.9   0.1
    11. speedtest.tokyo.linode.com   10.0%    10  116.5 117.0 116.4 120.9   1.5
    
    ----------------------------------------------
    mtr --report --report-cycles=10 speedtest.sng01.softlayer.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241              20.0%    10   99.0 106.7  63.1 176.7  43.6
      2. 104.140.0.97                  0.0%    10    5.8 176.1   5.6 895.2 343.3
      3. 104.140.0.57                  0.0%    10    0.4   1.5   0.2  11.9   3.7
      4. 10ge16-6.core1.phx2.he.net    0.0%    10    0.3   2.6   0.3  12.7   5.0
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   10.5  10.6  10.5  11.2   0.2
      6. any2ix.coresite.com           0.0%    10    9.9  10.2   9.9  12.8   0.9
      7. ae0.bbr01.eq01.sng02.network  0.0%    10  187.1 187.2 187.1 187.6   0.2
      8. ae5.dar02.sr03.sng01.network  0.0%    10  194.4 194.4 194.3 194.5   0.1
      9. po2.fcr01.sr03.sng01.network  0.0%    10  190.2 203.4 187.9 319.4  41.1
    10. speedtest.sng01.softlayer.co 10.0%    10  194.9 194.9 194.9 194.9   0.0
    
    ----------------------------------------------
    mtr --report --report-cycles=10 speedtest.london.linode.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 2607:ff28:0:21::1             0.0%    10    0.5  47.4   0.4 182.3  64.5
      2. 2607:ff28:7001:a::1           0.0%    10   45.2 132.7   0.6 864.8 280.1
      3. 2607:ff28:7001:1::1           0.0%    10    0.3   0.7   0.3   3.6   1.0
      4. 10gigabitethernet16-6.core1.  0.0%    10    2.1   1.8   0.3   7.1   2.0
      5. 10ge15-3.core1.dal1.he.net    0.0%    10   33.6  32.0  25.6  33.8   2.6
      6. 10ge5-4.core1.atl1.he.net     0.0%    10   46.1  51.0  46.0  57.5   5.3
      7. 10ge16-5.core1.ash1.he.net    0.0%    10   53.3  54.5  53.3  62.3   2.9
      8. 100ge5-1.core1.nyc4.he.net    0.0%    10   63.6  68.4  63.5  74.3   5.1
      9. 100ge7-2.core1.lon2.he.net    0.0%    10  137.9 136.7 129.3 139.2   3.8
    10. 2001:7f8:4::3dd6:1            0.0%    10  189.7 137.0 129.4 189.7  18.9
    11. 2001:4d78:ff01:0:3:b90:1:0   80.0%    10  127.1 127.1 127.1 127.1   0.0
    12. 2001:4d78:fe01:2:1::c         0.0%    10  128.9 128.8 128.7 128.9   0.1
    13. speedtest.london.linode.com  10.0%    10  128.6 128.6 128.5 128.7   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 mirror.i3d.net
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 2607:ff28:0:21::1             0.0%    10    0.4  10.0   0.4  57.1  20.6
      2. 2607:ff28:7001:b::1           0.0%    10    0.6   4.8   0.6   9.1   3.1
      3. 2607:ff28:7001:1::1           0.0%    10    0.4   0.3   0.3   0.4   0.0
      4. 10gigabitethernet16-6.core1.  0.0%    10    2.8   3.4   0.3  10.2   3.3
      5. 10ge15-3.core1.dal1.he.net    0.0%    10   30.7  39.9  30.6  70.2  13.5
      6. 10ge5-4.core1.atl1.he.net     0.0%    10   58.3  56.2  51.2  60.8   4.1
      7. 10ge16-5.core1.ash1.he.net    0.0%    10   58.5  64.9  58.4  90.7  10.1
      8. 100ge5-1.core1.nyc4.he.net    0.0%    10   76.2  72.4  68.6  78.6   3.9
      9. 100ge7-2.core1.lon2.he.net    0.0%    10  139.0 139.6 134.4 143.9   3.5
    10. 10ge.linx-jnpr.th-n.i3d.net   0.0%    10  137.3 137.7 134.9 140.9   2.6
    11. 20ge.cr1-lr0.smartdc.rtd.i3d  0.0%    10  148.2 142.9 137.1 149.5   5.3
    12. 80ge.br3-cr1.smartdc.rtd.i3d  0.0%    10  151.6 171.4 144.9 304.2  49.0
    13. 2a00:1630:1:13d::13d         10.0%    10  137.3 137.2 137.2 137.3   0.0
    
    ----------------------------------------------
    mtr --report --report-cycles=10 syd-au-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10    0.4   2.2   0.4  18.6   5.8
      2. 104.140.0.105                 0.0%    10    6.8 184.1   5.9 856.5 341.4
      3. 104.140.0.57                  0.0%    10    5.1   8.4   0.3  36.1  10.9
      4. 10ge16-6.core1.phx2.he.net    0.0%    10    9.4   4.4   0.2  12.4   5.3
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   10.6  13.3  10.5  21.7   4.2
      6. 10ge10-2.core1.lax1.he.net    0.0%    10   10.5  11.8  10.5  18.2   2.7
      7. 100ge15-1.core1.sjc2.he.net   0.0%    10   18.6  22.2  18.2  27.9   3.5
      8. 10ge1-4.core1.sjc1.he.net     0.0%    10   28.1  25.1  19.0  34.5   6.6
      9. vocus.gigabitethernet2-13.co  0.0%    10   22.6  22.9  22.6  24.8   0.7
    10. bundle-101.cor02.sjc01.ca.VO  0.0%    10  174.0 174.1 174.0 174.3   0.1
    11. ten-0-2-0-2.cor01.syd04.nsw.  0.0%    10  173.6 173.6 173.5 173.8   0.1
    12. ten-2-0-0.bdr03.syd04.nsw.VO  0.0%    10  176.4 176.4 176.3 176.4   0.0
    13. as17819.cust.bdr03.syd04.nsw  0.0%    10  174.6 173.7 173.3 175.7   0.8
    14. xe-1-0-0.gw102.sy3.ap.equini  0.0%    10  174.2 192.3 174.2 275.8  35.1
    15. 27.111.243.214               10.0%    10  230.1 225.7 216.2 230.9   5.0
    16. 108.61.212.117.vultr.com     10.0%    10  232.2 230.3 221.6 236.0   4.6
    
    ----------------------------------------------
    mtr --report --report-cycles=10 hnd-jp-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10    0.3   1.0   0.3   6.5   1.9
      2. 104.140.0.101                 0.0%    10    2.0 114.4   2.0 924.1 287.6
      3. 104.140.0.57                  0.0%    10    0.3   3.4   0.3  31.6   9.9
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   9.8   0.5  60.4  20.6
      5. 89.149.129.2                  0.0%    10   13.2  12.3  11.9  13.2   0.5
      6. as2914.lax21.ip4.gtt.net      0.0%    10   12.6  12.9  12.4  14.1   0.7
      7. ae-5.r21.lsanca03.us.bb.gin. 10.0%    10   12.2  14.5  12.1  21.4   4.0
      8. ae-3.r21.tokyjp05.jp.bb.gin.  0.0%    10  116.1 114.8 110.4 118.5   3.1
      9. ae-0.r25.tokyjp05.jp.bb.gin.  0.0%    10  137.2 126.4 117.6 137.2   7.0
    10. ae-2.r01.tokyjp03.jp.bb.gin.  0.0%    10  136.6 130.6 125.8 136.6   3.1
    11. xe-0-0-0-30.r01.tokyjp03.jp.  0.0%    10  143.9 138.6 133.4 146.8   5.1
    12. 72.ae2.sw1.tko1.jp.scnet.net  0.0%    10  125.0 127.6 123.1 136.5   4.0
    13. br1.tyo1.gameservers.com      0.0%    10  137.3 133.2 130.4 137.3   2.3
    14. 108.61.201.151.vultr.com     10.0%    10  122.9 122.5 120.9 124.5   1.2
    
    ----------------------------------------------
    mtr --report --report-cycles=10 lax-ca-us-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10   69.5  16.0   0.4  69.5  24.6
      2. 104.140.0.105                 0.0%    10    1.4  23.5   1.4 124.5  37.2
      3. 104.140.0.57                  0.0%    10    0.3   0.3   0.3   0.4   0.0
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   1.4   0.5   9.6   2.9
      5. xe-2-2-3.lax20.ip4.gtt.net    0.0%    10   11.4  13.5  11.3  30.3   5.9
      6. gtt-gw-cr1.lax2.ip4.gtt.net  20.0%    10   11.4  11.6  11.3  12.0   0.2
      7. as20473.xe-6-0-1.ar1.lax2.us  0.0%    10   11.6  12.2  11.6  15.6   1.2
      8. 108.61.219.200.vultr.com      0.0%    10   11.5  11.6  11.5  11.7   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 wa-us-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10  184.7  90.7   1.8 263.5  80.4
      2. 104.140.0.97                  0.0%    10    6.1 188.3   1.6 995.1 325.0
      3. 104.140.0.57                  0.0%    10    0.3   0.3   0.3   0.4   0.0
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   5.9   0.5  36.3  12.1
      5. xe-10-0-2.sea23.ip4.gtt.net   0.0%    10   74.3  45.9  42.4  74.3  10.0
      6. choopa-gw.ip4.gtt.net         0.0%    10   42.7  43.1  42.6  45.0   0.7
      7. 108.61.194.105.vultr.com      0.0%    10   42.6  42.7  42.5  43.4   0.2
    
    ----------------------------------------------
    mtr --report --report-cycles=10 tx-us-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10   61.8  97.0   2.1 243.3  62.8
      2. 104.140.0.105                10.0%    10    7.0  25.5   3.3 176.6  56.7
      3. 104.140.0.57                  0.0%    10    0.3   0.3   0.3   0.4   0.0
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   0.6   0.5   1.5   0.3
      5. xe-0-0-3.dal33.ip4.gtt.net    0.0%    10   24.4  26.5  24.2  43.8   6.1
      6. gtt-gw.ip4.gtt.net            0.0%    10   45.8  28.9  24.3  48.1   9.5
      7. as20473.xe-5-1-2.cr1.dfw1.us 10.0%    10   24.7  51.8  24.5 181.7  56.1
      8. 108.61.224.175.vultr.com      0.0%    10   24.6  24.7  24.5  25.1   0.2
    
    ----------------------------------------------
    mtr --report --report-cycles=10 il-us-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241              10.0%    10   45.1  59.0   2.1 183.0  57.9
      2. 104.140.0.97                  0.0%    10   12.3  98.0   3.1 777.1 241.6
      3. 104.140.0.57                  0.0%    10    0.4   1.6   0.3  13.0   4.0
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.6   5.8   0.5  53.0  16.6
      5. xe-9-3-0.chi12.ip4.gtt.net    0.0%    10   52.1  55.2  51.9  78.1   8.2
      6. as23352.chi12.ip4.gtt.net     0.0%    10   54.2  52.9  51.9  56.7   1.5
      7. ae4.cr1.ord6.us.scnet.net     0.0%    10   52.9  56.0  52.6  80.1   8.6
      8. ae1.ar10.ord6.us.scnet.net    0.0%    10   52.8  53.3  52.8  55.2   0.8
      9. ethernet7-1-br1.chi2.choopa.  0.0%    10   79.7  80.3  79.3  81.7   0.8
    10. 107.191.51.12.vultr.com       0.0%    10   78.5  79.4  76.6  81.6   1.7
    
    ----------------------------------------------
    mtr --report --report-cycles=10 ga-us-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10  215.9  94.5   2.4 215.9  68.7
      2. 104.140.0.97                  0.0%    10  103.7 276.3   3.2 1221. 415.9
      3. 104.140.0.57                  0.0%    10    0.3   2.1   0.3  18.4   5.7
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   1.1   0.4   6.9   2.0
      5. xe-8-1-0.atl12.ip4.gtt.net    0.0%    10   45.6  50.1  45.5  86.1  12.7
      6. ae7-150.cr2.atl1.ip4.gtt.net  0.0%    10   46.8  46.3  45.5  49.0   1.0
      7. as20473.xe-1-3-1.cr2.atl1.us  0.0%    10   45.8  46.6  45.8  49.8   1.5
      8. 108.61.193.166.vultr.com      0.0%    10   46.1  47.0  45.7  50.3   1.6
    
    ----------------------------------------------
    mtr --report --report-cycles=10 fl-us-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10  197.5  99.3   9.6 226.0  85.4
      2. 104.140.0.105                 0.0%    10  274.4  34.6   2.6 274.4  84.4
      3. 104.140.0.57                  0.0%    10    0.4   0.3   0.3   0.4   0.0
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   0.5   0.5   0.6   0.0
      5. xe-8-0-1.mia12.ip4.gtt.net    0.0%    10   55.8  56.0  55.7  57.7   0.6
      6. as20473.ae5-1914.cr1.mia1.us  0.0%    10   56.1  56.1  56.0  56.2   0.1
      7. 104.156.244.232               0.0%    10   55.9  56.2  55.9  57.4   0.5
    
    ----------------------------------------------
    mtr --report --report-cycles=10 nj-us-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10   52.5  76.4   0.5 130.4  50.2
      2. 104.140.0.101                 0.0%    10    8.0 178.9   5.1 1150. 379.9
      3. 104.140.0.57                  0.0%    10    0.3   0.3   0.3   0.4   0.1
      4. 10ge16-6.core1.phx2.he.net    0.0%    10    0.2   1.2   0.2   3.8   1.3
      5. 10ge15-3.core1.dal1.he.net    0.0%    10   31.7  23.3  20.4  32.8   4.8
      6. 10ge12-6.core1.chi1.he.net    0.0%    10   48.2  49.3  48.1  59.7   3.6
      7. 100ge5-2.core1.nyc4.he.net    0.0%    10   58.9  60.0  58.9  69.5   3.3
      8. 10ge5-1.core1.nyc6.he.net     0.0%    10   64.7  64.3  59.0  71.1   4.8
      9. nyiix.gi3-6.cr1.nyc1.choopa.  0.0%    10   65.4  70.9  65.2 102.3  11.3
    10. ethernet1-49-c11-8-c6-1.pnj1  0.0%    10   65.1  65.3  65.1  66.2   0.3
    11. 108.61.149.182.vultr.com      0.0%    10   65.2  65.3  65.1  65.3   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 fra-de-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10   68.6  65.8   0.4 170.9  55.1
      2. 104.140.0.101                 0.0%    10   32.6 215.7   3.5 1189. 389.2
      3. 104.140.0.57                  0.0%    10    0.3   0.4   0.3   0.5   0.0
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   0.5   0.5   0.6   0.0
      5. xe-4-2-2.fra61.ip4.gtt.net    0.0%    10  147.1 147.7 147.1 150.4   1.0
      6. choopa-gw.ip4.gtt.net         0.0%    10  147.3 147.5 147.3 147.7   0.1
      7. 108.61.210.117.vultr.com     10.0%    10  147.4 147.5 147.3 147.9   0.2
    
    ----------------------------------------------
    mtr --report --report-cycles=10 ams-nl-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10  105.2 100.2   3.2 182.8  56.7
      2. 104.140.0.93                  0.0%    10   12.7   9.7   4.5  24.2   5.6
      3. 104.140.0.57                  0.0%    10    0.3   2.2   0.3  18.7   5.8
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   0.5   0.4   0.6   0.0
      5. 89.149.129.2                  0.0%    10   11.9  12.7  11.9  16.0   1.3
      6. as2914.lax21.ip4.gtt.net      0.0%    10   12.4  12.5  12.4  12.6   0.1
      7. ae-5.r21.lsanca03.us.bb.gin. 30.0%    10   12.1  12.3  12.1  12.6   0.2
      8. et-0-0-0.r22.asbnva02.us.bb.  0.0%    10   75.7  75.7  75.5  76.5   0.3
      9. ae-0.r23.asbnva02.us.bb.gin.  0.0%    10   75.5  78.8  75.5 106.8   9.8
    10. ae-6.r23.amstnl02.nl.bb.gin. 10.0%    10  158.2 159.7 158.1 167.0   3.0
    11. ae-1.r03.amstnl02.nl.bb.gin.  0.0%    10  159.1 159.3 159.1 159.7   0.2
    12. ae-3.r00.amstnl03.nl.bb.gin.  0.0%    10  159.3 159.5 159.2 159.9   0.2
    13. 81.20.72.122                 10.0%    10  159.9 160.2 158.8 165.7   2.2
    14. 108.61.198.102.vultr.com     10.0%    10  159.0 159.2 159.0 160.0   0.3
    
    ----------------------------------------------
    mtr --report --report-cycles=10 lon-gb-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10   77.6  73.5   2.0 184.7  57.0
      2. 104.140.0.97                  0.0%    10   10.5 263.1   5.1 1291. 431.2
      3. 104.140.0.57                  0.0%    10    0.3   0.3   0.3   0.5   0.1
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5  11.5   0.5  79.7  25.8
      5. xe-2-2-3.lax20.ip4.gtt.net    0.0%    10   11.5  13.8  11.3  34.9   7.4
      6. ae7.edge1.LosAngels.Level3.n  0.0%    10   13.5  16.4  13.4  43.0   9.3
      7. ae-235-3611.edge5.london1.Le  0.0%    10  140.6 140.6 140.5 141.3   0.2
      8. ae-235-3611.edge5.london1.Le  0.0%    10  140.5 141.6 140.5 149.4   2.8
      9. CHOOPA-LLC.edge5.London1.Lev  0.0%    10  139.4 139.4 139.2 139.6   0.1
    10. 108.61.196.101.vultr.com     10.0%    10  140.3 140.2 140.1 140.4   0.1
    
    ----------------------------------------------
    mtr --report --report-cycles=10 par-fr-ping.vultr.com
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10   51.5  77.7  12.9 131.3  46.7
      2. 104.140.0.93                 10.0%    10  252.7  69.3   2.7 252.7 101.4
      3. 104.140.0.57                  0.0%    10    0.3   0.3   0.3   0.4   0.0
      4. ae1-207.phx10.ip4.gtt.net     0.0%    10    0.5   0.5   0.4   0.5   0.0
      5. xe-7-3-1.par90.ip4.gtt.net    0.0%    10  137.7 136.7 135.8 140.1   1.4
      6. choopa-gw.ip4.gtt.net         0.0%    10  136.0 136.3 136.0 138.2   0.7
      7. 108.61.209.127.vultr.com      0.0%    10  136.1 136.9 135.9 139.9   1.4
    
    ----------------------------------------------
    mtr --report --report-cycles=10 VersaWeb Las Vegas
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10    0.4  51.8   0.4 228.0  84.4
      2. 104.140.0.97                  0.0%    10   10.7   7.3   1.5  13.3   3.6
      3. 104.140.0.57                  0.0%    10    0.3   0.3   0.3   0.6   0.1
      4. 10ge16-6.core1.phx2.he.net    0.0%    10   11.8   3.6   0.2  12.9   5.4
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   10.5  13.1  10.5  18.2   2.9
      6. 10ge3-1.core1.las1.he.net     0.0%    10   22.4  22.8  17.3  27.3   4.0
      7. fiberhub.10ge3-2.core1.las1.  0.0%    10   27.4  18.4  17.4  27.4   3.1
      8. te3-4.core1.las1.fiberhub.ne 10.0%    10   18.1  18.1  18.1  18.2   0.0
      9. 199.47.210.50                 0.0%    10   18.3  18.4  18.3  18.8   0.2
    
    ----------------------------------------------
    mtr --report --report-cycles=10 VersaWeb Seattle
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 107.158.252.241               0.0%    10    0.4   3.9   0.4  29.3   9.0
      2. 104.140.0.101                 0.0%    10    9.5 245.5   4.2 1363. 432.6
      3. 104.140.0.57                  0.0%    10    0.3   1.5   0.3  12.2   3.7
      4. 10ge16-6.core1.phx2.he.net    0.0%    10    4.7   7.4   0.2  12.0   4.4
      5. 10ge15-6.core1.lax2.he.net    0.0%    10   11.0  12.4  11.0  18.7   3.0
      6. 10ge9-5.core1.sjc2.he.net     0.0%    10   19.1  22.5  18.8  27.3   2.9
      7. 10ge12-1.core1.sea1.he.net    0.0%    10   36.5  39.9  36.5  46.7   3.8
      8. six.core1.sea1.fiberhub.net   0.0%    10   38.2  38.2  38.2  38.3   0.1
      9. 76.164.234.1                  0.0%    10   38.8  38.8  38.5  39.4   0.3
    
    ----------------------------------------------
    mtr --report --report-cycles=10 OVH Canada
    HOST: hostname         Loss%   Snt   Last   Avg  Best  Wrst StDev
      1. 2607:ff28:0:21::1             0.0%    10    0.6  20.7   0.4 166.8  52.5
      2. 2607:ff28:7001:a::1           0.0%    10  494.1  57.6   6.0 494.1 153.4
      3. 2607:ff28:7001:1::1           0.0%    10   15.0   1.8   0.3  15.0   4.6
      4. 10gigabitethernet16-6.core1.  0.0%    10    0.7   4.1   0.3   8.7   3.1
      5. 10ge15-3.core1.dal1.he.net    0.0%    10   34.3  37.1  30.7  42.2   4.1
      6. 10ge12-6.core1.chi1.he.net    0.0%    10   53.3  59.3  53.2 110.9  18.1
      7. ???                          100.0    10    0.0   0.0   0.0   0.0   0.0
      8. 2607:5300::dd                10.0%    10   70.8  80.6  69.7 133.3  21.5
      9. 2607:5300::97                 0.0%    10   71.4  71.5  71.2  72.4   0.5
    10. 2607:5300::128                0.0%    10   71.2  71.3  71.2  71.3   0.1
    11. 2607:5300:60:44a5::1          0.0%    10   71.8  71.7  71.1  72.0   0.2
    
    
    Code:
    -------------------------------------------
    Check system entropy pool availability
    -------------------------------------------
    
    entropy_avail: 4096
    entropy_avail: 4096
    entropy_avail: 4096
    entropy_avail: 4096
    
    Code:
    -------------------------------------------
    OpenSSL System Benchmark
    -------------------------------------------
    
    OpenSSL 1.0.1e-fips 11 Feb 2013
    -------------------------------------------
    openssl speed rsa4096 rsa2048 ecdsap256 sha256 sha1 md5 rc4 aes-256-cbc aes-128-cbc -multi 1
    OpenSSL 1.0.1e-fips 11 Feb 2013
    built on: Thu Nov  6 12:33:36 UTC 2014
    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 --param=ssp-buffer-size=4 -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              56053.38k   164337.34k   376420.61k   546276.69k   622660.27k
    sha1             56508.06k   152556.10k   322839.21k   442287.10k   447056.55k
    rc4             440437.70k   619753.73k   710543.02k   749227.69k   750736.73k
    aes-128 cbc     112370.02k   127663.03k   130262.10k   279365.97k   275092.82k
    aes-256 cbc      84536.56k    90858.22k    90688.77k   201628.33k   204920.15k
    sha256           43317.95k   100479.25k   176721.15k   210740.91k   232830.29k
                      sign    verify    sign/s verify/s
    rsa 2048 bits 0.001316s 0.000040s    759.9  25000.0
    rsa 4096 bits 0.009364s 0.000153s    106.8   6535.9
                                  sign    verify    sign/s verify/s
    256 bit ecdsa (nistp256)   0.0001s   0.0004s   8547.0   2283.1
    -------------------------------------------
    openssl speed -evp aes256 -multi 1
    OpenSSL 1.0.1e-fips 11 Feb 2013
    built on: Thu Nov  6 12:33:36 UTC 2014
    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 --param=ssp-buffer-size=4 -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              82935.53k    88377.58k    85078.02k   177346.56k   183148.54k
    -------------------------------------------
    openssl speed -evp aes128 -multi 1
    OpenSSL 1.0.1e-fips 11 Feb 2013
    built on: Thu Nov  6 12:33:36 UTC 2014
    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 --param=ssp-buffer-size=4 -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             111293.80k   118338.94k   124471.89k   269422.25k   272039.94k
    
    -------------------------------------------
    Centmin Mod Nginx static OpenSSL Benchmark
    -------------------------------------------
    
    OpenSSL 1.0.1j 15 Oct 2014
    -------------------------------------------
    openssl speed rsa4096 rsa2048 ecdsap256 sha256 sha1 md5 rc4 aes-256-cbc aes-128-cbc -multi 1
    OpenSSL 1.0.1j 15 Oct 2014
    built on: Thu Jan  1 22:55:49 UTC 2015
    options:bn(64,64) rc4(16x,int) des(idx,cisc,16,int) aes(partial) idea(int) blowfish(idx)
    md5              30675.45k   102591.79k   281179.14k   473860.10k   605325.99k
    sha1             31598.42k    95057.47k   244368.38k   395608.41k   469923.16k
    rc4             401608.49k   621080.68k   705516.37k   751504.38k   770708.82k
    aes-128 cbc     115176.03k   127018.33k   129335.89k   267890.01k   275101.01k
    aes-256 cbc      86367.56k    90929.34k    89927.92k   204432.73k   206858.92k
    sha256           47714.86k   103229.67k   183894.95k   228322.65k   229599.91k
                      sign    verify    sign/s verify/s
    rsa 2048 bits 0.001331s 0.000042s    751.3  23809.5
    rsa 4096 bits 0.009552s 0.000152s    104.7   6578.9
                                  sign    verify    sign/s verify/s
    256 bit ecdsa (nistp256)   0.0001s   0.0004s   8620.7   2358.5
    -------------------------------------------
    openssl speed -evp aes256 -multi 1
    OpenSSL 1.0.1j 15 Oct 2014
    built on: Thu Jan  1 22:55:49 UTC 2015
    options:bn(64,64) rc4(16x,int) des(idx,cisc,16,int) aes(partial) idea(int) blowfish(idx)
    evp              81549.36k    90545.77k    93229.06k   202137.60k   202817.54k
    -------------------------------------------
    openssl speed -evp aes128 -multi 1
    OpenSSL 1.0.1j 15 Oct 2014
    built on: Thu Jan  1 22:55:49 UTC 2015
    options:bn(64,64) rc4(16x,int) des(idx,cisc,16,int) aes(partial) idea(int) blowfish(idx)
    evp             110825.59k   126057.62k   129983.66k   275055.96k   275606.19k
    
    Code:
    -------------------------------------------
    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.862 seconds
            Minimum number of seconds to run all queries: 2.736 seconds
            Maximum number of seconds to run all queries: 3.095 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:
    -------------------------------------------
    System PHP Info
    -------------------------------------------
    
    CPU: 1 x QEMU Virtual CPU version 2.1.0
                 total       used       free     shared    buffers     cached
    Mem:           490        318        171         21          7        163
    Low:           490        318        171
    High:            0          0          0
    -/+ buffers/cache:        148        342
    Swap:          991          2        989
    ----------------------------------------------
    PHP 5.4.36 (cli) (built: Jan  1 2015 23:04:15)
    Copyright (c) 1997-2014 The PHP Group
    Zend Engine v2.4.0, Copyright (c) 1998-2014 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/apc.ini,
    /etc/centminmod/php.d/curlcainfo.ini,
    /etc/centminmod/php.d/igbinary.ini,
    /etc/centminmod/php.d/imagick.ini,
    /etc/centminmod/php.d/memcache.ini,
    /etc/centminmod/php.d/memcached.ini
    
    ----------------------------------------------
    [PHP Modules]
    apc
    bcmath
    bz2
    calendar
    Core
    ctype
    curl
    date
    dom
    enchant
    ereg
    exif
    filter
    ftp
    gd
    gettext
    gmp
    hash
    iconv
    igbinary
    imagick
    imap
    intl
    json
    libxml
    mbstring
    mcrypt
    memcache
    memcached
    mhash
    mysql
    mysqli
    mysqlnd
    openssl
    pcntl
    pcre
    PDO
    pdo_mysql
    pdo_sqlite
    Phar
    posix
    pspell
    readline
    Reflection
    session
    shmop
    SimpleXML
    snmp
    soap
    sockets
    SPL
    sqlite3
    standard
    sysvmsg
    sysvsem
    sysvshm
    tidy
    tokenizer
    xml
    xmlreader
    xmlrpc
    xmlwriter
    zip
    zlib
    
    [Zend Modules]
    
    ----------------------------------------------
    -------------------------------------------
    Run PHP test Zend/bench.php
    -------------------------------------------
    
    simple             0.114
    simplecall         0.131
    simpleucall        0.123
    simpleudcall       0.121
    mandel             0.262
    mandel2            0.303
    ackermann(7)       0.120
    ary(50000)         0.022
    ary2(50000)        0.017
    ary3(2000)         0.151
    fibo(30)           0.408
    hash1(50000)       0.037
    hash2(500)         0.037
    heapsort(20000)    0.092
    matrix(20)         0.095
    nestedloop(12)     0.227
    sieve(30)          0.088
    strcat(200000)     0.013
    ------------------------
    Total              2.363
    real: 2.69s user: 2.40s sys: 0.02s cpu: 90% maxmem: 132784 KB cswaits: 19
    
    simple             0.111
    simplecall         0.131
    simpleucall        0.122
    simpleudcall       0.117
    mandel             0.277
    mandel2            0.313
    ackermann(7)       0.123
    ary(50000)         0.019
    ary2(50000)        0.020
    ary3(2000)         0.147
    fibo(30)           0.401
    hash1(50000)       0.053
    hash2(500)         0.037
    heapsort(20000)    0.077
    matrix(20)         0.088
    nestedloop(12)     0.226
    sieve(30)          0.101
    strcat(200000)     0.017
    ------------------------
    Total              2.380
    real: 2.46s user: 2.41s sys: 0.02s cpu: 99% maxmem: 132784 KB cswaits: 2
    
    simple             0.112
    simplecall         0.120
    simpleucall        0.115
    simpleudcall       0.117
    mandel             0.259
    mandel2            0.296
    ackermann(7)       0.129
    ary(50000)         0.020
    ary2(50000)        0.017
    ary3(2000)         0.141
    fibo(30)           0.360
    hash1(50000)       0.039
    hash2(500)         0.037
    heapsort(20000)    0.079
    matrix(20)         0.094
    nestedloop(12)     0.227
    sieve(30)          0.086
    strcat(200000)     0.012
    ------------------------
    Total              2.261
    real: 2.33s user: 2.29s sys: 0.02s cpu: 99% maxmem: 132768 KB cswaits: 2
    
    bench.php results from 3 runs
    2.363
    2.380
    2.261
    
    bench.php avg: 2.3347
    Avg: real: 2.49s user: 2.37s sys: 0.02s cpu: 96.00% maxmem: 132778.67KB cswaits: 7.67
    created results log at /home/phpbench_logs/bench_020115-002501.log
    server PHP info log at /home/phpbench_logs/bench_phpinfo_020115-002501.log
    
    -------------------------------------------
    Run PHP test Zend/micro_bench.php
    -------------------------------------------
    
    empty_loop         0.114
    func()             0.393    0.279
    undef_func()       0.377    0.263
    int_func()         0.367    0.254
    $x = self::$x      0.235    0.121
    self::$x = 0       0.340    0.226
    isset(self::$x)    0.202    0.088
    empty(self::$x)    0.210    0.096
    $x = Foo::$x       0.208    0.095
    Foo::$x = 0        0.304    0.190
    isset(Foo::$x)     0.187    0.073
    empty(Foo::$x)     0.197    0.083
    self::f()          0.371    0.258
    Foo::f()           0.349    0.235
    $x = $this->x      0.222    0.108
    $this->x = 0       0.288    0.174
    $this->x += 2      0.206    0.092
    ++$this->x         0.187    0.073
    --$this->x         0.179    0.065
    $this->x++         0.226    0.112
    $this->x--         0.290    0.176
    isset($this->x)    0.243    0.129
    empty($this->x)    0.221    0.107
    $this->f()         0.342    0.229
    $x = Foo::TEST     0.194    0.081
    new Foo()          0.708    0.595
    $x = TEST          0.155    0.041
    $x = $_GET         0.336    0.222
    $x = $GLOBALS['v'] 0.527    0.413
    $x = $hash['v']    0.345    0.232
    $x = $str[0]       0.313    0.199
    $x = $a ?: null    0.199    0.085
    $x = $f ?: tmp     0.275    0.161
    $x = $f ? $f : $a  0.219    0.105
    $x = $f ? $f : tmp 0.274    0.160
    ------------------------
    Total              9.803
    real: 9.90s user: 9.85s sys: 0.01s cpu: 99% maxmem: 84736 KB cswaits: 3
    
    empty_loop         0.105
    func()             0.368    0.262
    undef_func()       0.367    0.262
    int_func()         0.358    0.253
    $x = self::$x      0.241    0.136
    self::$x = 0       0.328    0.223
    isset(self::$x)    0.203    0.098
    empty(self::$x)    0.212    0.107
    $x = Foo::$x       0.214    0.109
    Foo::$x = 0        0.306    0.201
    isset(Foo::$x)     0.176    0.071
    empty(Foo::$x)     0.187    0.081
    self::f()          0.321    0.216
    Foo::f()           0.296    0.191
    $x = $this->x      0.242    0.137
    $this->x = 0       0.275    0.170
    $this->x += 2      0.203    0.098
    ++$this->x         0.182    0.077
    --$this->x         0.188    0.083
    $this->x++         0.205    0.100
    $this->x--         0.278    0.173
    isset($this->x)    0.186    0.081
    empty($this->x)    0.196    0.091
    $this->f()         0.318    0.213
    $x = Foo::TEST     0.189    0.084
    new Foo()          0.631    0.526
    $x = TEST          0.144    0.039
    $x = $_GET         0.318    0.213
    $x = $GLOBALS['v'] 0.506    0.401
    $x = $hash['v']    0.335    0.230
    $x = $str[0]       0.298    0.193
    $x = $a ?: null    0.210    0.105
    $x = $f ?: tmp     0.295    0.190
    $x = $f ? $f : $a  0.220    0.114
    $x = $f ? $f : tmp 0.275    0.170
    ------------------------
    Total              9.374
    real: 9.45s user: 9.40s sys: 0.01s cpu: 99% maxmem: 84736 KB cswaits: 2
    
    empty_loop         0.118
    func()             0.374    0.256
    undef_func()       0.402    0.284
    int_func()         0.352    0.234
    $x = self::$x      0.234    0.116
    self::$x = 0       0.327    0.209
    isset(self::$x)    0.199    0.082
    empty(self::$x)    0.210    0.092
    $x = Foo::$x       0.209    0.091
    Foo::$x = 0        0.297    0.180
    isset(Foo::$x)     0.179    0.061
    empty(Foo::$x)     0.186    0.069
    self::f()          0.318    0.200
    Foo::f()           0.291    0.173
    $x = $this->x      0.221    0.103
    $this->x = 0       0.291    0.173
    $this->x += 2      0.222    0.105
    ++$this->x         0.193    0.075
    --$this->x         0.178    0.060
    $this->x++         0.212    0.094
    $this->x--         0.275    0.157
    isset($this->x)    0.194    0.076
    empty($this->x)    0.205    0.087
    $this->f()         0.334    0.216
    $x = Foo::TEST     0.201    0.083
    new Foo()          0.672    0.554
    $x = TEST          0.146    0.028
    $x = $_GET         0.318    0.200
    $x = $GLOBALS['v'] 0.513    0.396
    $x = $hash['v']    0.342    0.225
    $x = $str[0]       0.302    0.185
    $x = $a ?: null    0.201    0.084
    $x = $f ?: tmp     0.279    0.161
    $x = $f ? $f : $a  0.217    0.099
    $x = $f ? $f : tmp 0.279    0.161
    ------------------------
    Total              9.491
    real: 9.57s user: 9.52s sys: 0.01s cpu: 99% maxmem: 84736 KB cswaits: 2
    
    micro_bench.php results from 3 runs
    9.803
    9.374
    9.491
    
    micro_bench.php avg: 9.5560
    Avg: real: 9.64s user: 9.59s sys: 0.01s cpu: 99.00% maxmem: 84736.00KB cswaits: 2.33
    created results log at /home/phpbench_logs/bench_micro_020115-002501.log
    server PHP info log at /home/phpbench_logs/bench_phpinfo_020115-002501.log
    
    
    Code:
    -------------------------------------------
    Running UnixBench
    -------------------------------------------
    
       #    #  #    #  #  #    #          #####   ######  #    #   ####   #    #
       #    #  ##   #  #   #  #           #    #  #       ##   #  #    #  #    #
       #    #  # #  #  #    ##            #####   #####   # #  #  #       ######
       #    #  #  # #  #    ##            #    #  #       #  # #  #       #    #
       #    #  #   ##  #   #  #           #    #  #       #   ##  #    #  #    #
        ####   #    #  #  #    #          #####   ######  #    #   ####   #    #
    
       Version 5.1.3                      Based on the Byte Magazine Unix Benchmark
    
       Multi-CPU version                  Version 5 revisions by Ian Smith,
                                          Sunnyvale, CA, USA
       January 13, 2011                   johantheghost at yahoo period com
    
    
    1 x Dhrystone 2 using register variables  1 2 3 4 5 6 7 8 9 10
    
    1 x Double-Precision Whetstone  1 2 3 4 5 6 7 8 9 10
    
    1 x System Call Overhead  1 2 3 4 5 6 7 8 9 10
    
    1 x Pipe Throughput  1 2 3 4 5 6 7 8 9 10
    
    1 x Pipe-based Context Switching  1 2 3 4 5 6 7 8 9 10
    
    1 x Process Creation  1 2 3
    
    1 x Execl Throughput  1 2 3
    
    1 x Shell Scripts (1 concurrent)  1 2 3
    
    1 x Shell Scripts (8 concurrent)  1 2 3
    
    1 x Shell Scripts (16 concurrent)  1 2 3
    
    ========================================================================
       BYTE UNIX Benchmarks (Version 5.1.3)
    
       System: hostname: GNU/Linux
       OS: GNU/Linux -- 2.6.32-504.3.3.el6.x86_64 -- #1 SMP Wed Dec 17 01:55:02 UTC 2014
       Machine: x86_64 (x86_64)
       Language: en_US.utf8 (charmap="UTF-8", collate="UTF-8")
       CPU 0: QEMU Virtual CPU version 2.1.0 (6600.0 bogomips)
              x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
       01:16:09 up  7:00,  2 users,  load average: 5.57, 3.24, 1.31; runlevel 3
    
    ------------------------------------------------------------------------
    Benchmark Run: Fri Jan 02 2015 01:16:09 - 01:40:12
    1 CPU in system; running 1 parallel copy of tests
    
    Dhrystone 2 using register variables       35998271.9 lps   (10.0 s, 7 samples)
    Double-Precision Whetstone                     3945.6 MWIPS (9.9 s, 7 samples)
    Execl Throughput                               4420.1 lps   (29.9 s, 2 samples)
    Pipe Throughput                             1972467.3 lps   (10.0 s, 7 samples)
    Pipe-based Context Switching                 346392.0 lps   (10.0 s, 7 samples)
    Process Creation                              12749.5 lps   (30.0 s, 2 samples)
    Shell Scripts (1 concurrent)                   5593.7 lpm   (60.0 s, 2 samples)
    Shell Scripts (16 concurrent)                   371.6 lpm   (60.1 s, 2 samples)
    Shell Scripts (8 concurrent)                    740.8 lpm   (60.1 s, 2 samples)
    System Call Overhead                        2518844.5 lps   (10.0 s, 7 samples)
    
    System Benchmarks Partial Index              BASELINE       RESULT    INDEX
    Dhrystone 2 using register variables         116700.0   35998271.9   3084.7
    Double-Precision Whetstone                       55.0       3945.6    717.4
    Execl Throughput                                 43.0       4420.1   1027.9
    Pipe Throughput                               12440.0    1972467.3   1585.6
    Pipe-based Context Switching                   4000.0     346392.0    866.0
    Process Creation                                126.0      12749.5   1011.9
    Shell Scripts (1 concurrent)                     42.4       5593.7   1319.3
    Shell Scripts (16 concurrent)                     ---        371.6      ---
    Shell Scripts (8 concurrent)                      6.0        740.8   1234.7
    System Call Overhead                          15000.0    2518844.5   1679.2
                                                                       ========
    System Benchmarks Index Score (Partial Only)                         1270.8
    
    
    Code:
    -------------------------------------------
    centminmodbench.sh completed
    -------------------------------------------
    
    centminmodbench.sh Total Run Time: 4511.722012256 seconds
    
     
    Last edited: Jan 2, 2015
  20. eva2000

    eva2000 Administrator Staff Member

    53,190
    12,113
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,649
    Local Time:
    11:53 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Just setup 5x server GlusterFS 3.6.1 storage on my 5x VaporNode 512MB KVM VPS server cluster :)

    Code:
    [root@g01 ~]# gluster pool list
    UUID                                    Hostname        State
    ed80c169-8ead-46f7-a514-9d45c262837b    g02            Connected
    d0bc3e0f-4957-4793-bd8c-8d8a9ad7159e    g03            Connected
    ce9d8af7-ba58-4f53-8f09-1d3fc92fd3ec    g04            Connected
    be652076-4cec-4c19-a5ef-9ce6e8ffa937    g05            Connected
    1dda8458-01bd-4e57-9d8f-31d491f0123e    localhost       Connected
    
    Code:
    [root@g01 ~]# gluster peer status                                                 
    Number of Peers: 4
    
    Hostname: g02
    Uuid: ed80c169-8ead-46f7-a514-9d45c262837b
    State: Peer in Cluster (Connected)
    
    Hostname: g03
    Uuid: d0bc3e0f-4957-4793-bd8c-8d8a9ad7159e
    State: Peer in Cluster (Connected)
    
    Hostname: g04
    Uuid: ce9d8af7-ba58-4f53-8f09-1d3fc92fd3ec
    State: Peer in Cluster (Connected)
    
    Hostname: g05
    Uuid: be652076-4cec-4c19-a5ef-9ce6e8ffa937
    State: Peer in Cluster (Connected)