- 逆向行駛 - https://520.be/ -

VPS介紹 – CloudCone

/* ----- 1. 專屬調色盤與外層容器 ----- */ .cc-article { --bg-app: #3C3C3C; --bg-card: #242426; --bg-panel: #1e1e20; --bg-input: #2a2a2d; --text-main: #e0e0e0; --text-muted: #d0d0d8; --color-blue: #4dabf7; --color-yellow: #ffd43b; --color-orange: #ff922b; --color-green: #51cf66; --color-red: #ff6b6b; --border-light: #4a4a4d; --border-hover: #4dabf7; --gradient-btn: linear-gradient(135deg, #e07b39, #d65c14); max-width: 880px; margin: 2rem auto; font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; background-color: var(--bg-card); color: var(--text-main); line-height: 1.8; border-radius: 20px; box-shadow: 0 12px 40px rgba(0,0,0,0.5); padding: 36px 40px 48px; border: 1px solid var(--border-light); } /* ----- 2. 標題與重點排版 ----- */ .cc-article h1 { color: #ffffff; border-bottom: 2px solid #555; padding-bottom: 12px; font-size: 28px; line-height: 1.5; margin-bottom: 24px; font-weight: 700; text-align: center; } .cc-article h2 { color: var(--color-yellow); margin-top: 50px; font-size: 26px; text-align: center; font-weight: 700; background: #1a1a1c; padding: 10px; border-radius: 8px; border: 1px solid #444; } .cc-article h3 { color: var(--color-blue); font-size: 22px; margin-top: 0; margin-bottom: 16px; font-weight: 700; } .cc-quote { background: #1a1a1c; padding: 18px 24px; border-radius: 12px; margin: 24px 0; font-size: 16px; box-shadow: inset 2px 2px 8px rgba(0,0,0,0.2); border-left: 4px solid var(--color-yellow); } .hl-green { color: var(--color-green); background-color: #171717; padding: 2px 8px; border-radius: 4px; font-weight: bold; } .hl-yellow { color: var(--color-yellow); background-color: #171717; padding: 2px 8px; border-radius: 4px; font-weight: bold; } .hl-orange { color: var(--color-orange); background-color: #171717; padding: 2px 8px; border-radius: 4px; font-weight: bold; } .divider-icon { text-align: center; font-size: 24px; color: #777; letter-spacing: 6px; margin: 40px 0; border-top: 1px dashed #444; padding-top: 30px; } /* ----- 3. 連結與按鈕 ----- */ .cc-article a.text-link { color: var(--color-blue); text-decoration: none; border-bottom: 1px solid #1a3a5a; transition: 0.2s; font-weight: 500; } .cc-article a.text-link:hover { color: #7ac0ff; border-bottom-color: var(--color-blue); } .btn-buy { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--gradient-btn); color: #ffffff !important; font-weight: 700; font-size: 16px; padding: 12px 24px; border-radius: 8px; text-decoration: none !important; border: none !important; box-shadow: 0 4px 12px rgba(224,123,57,0.3); margin-top: 16px; transition: 0.3s; } .btn-buy:hover { transform: translateY(-3px); box-shadow: 0 8px 16px rgba(224,123,57,0.5); } /* ----- 4. 純 CSS 頁籤系統 ----- */ .vps-tabs-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; justify-content: center; border-bottom: 2px dashed #444; padding-bottom: 20px; } .vps-tabs-nav a { display: inline-block; padding: 10px 22px; border-radius: 30px; background: var(--bg-input); color: var(--text-muted); font-size: 15px; font-weight: 600; text-decoration: none; transition: 0.2s; border: 1px solid var(--border-light); } .vps-tabs-nav a:hover { background: var(--color-blue); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(77,171,247,0.4); border-color: var(--color-blue); } .vps-tabs-container { background: var(--bg-panel); border-radius: 16px; padding: 28px 32px; box-shadow: inset 0 2px 10px rgba(0,0,0,0.3); border-left: 5px solid var(--color-blue); min-height: 250px; margin-bottom: 30px; } .vps-tab-panel { display: none; animation: fadeIn 0.4s ease; } .vps-tab-panel:target { display: block; } /* 💡 核心魔法:為各個區塊設定對應的預設顯示頁籤 */ .perf-group:not(:has(.vps-tab-panel:target)) #perf-yabs { display: block; } .net-group:not(:has(.vps-tab-panel:target)) #net-tw { display: block; } .plan-group:not(:has(.vps-tab-panel:target)) #plan-f2 { display: block; } @keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } } /* ----- 5. 數據呈現 (Terminal Box) 與清單 ----- */ .terminal-box { background: #111111; color: #51cf66; padding: 16px 20px; border-radius: 8px; overflow-x: auto; font-family: 'Courier New', Courier, monospace; font-size: 13.5px; line-height: 1.6; border: 1px solid #333; margin-top: 10px; } .vps-list { list-style: none; padding-left: 0; margin-bottom: 20px; } .vps-list li { margin-bottom: 12px; padding-left: 30px; position: relative; color: var(--text-muted); font-size: 15px; line-height: 1.6; } .vps-list li::before { content: "✅"; position: absolute; left: 0; top: 0; font-size: 14px; } .info-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; } .info-tags a { background: var(--bg-input); padding: 6px 12px; border-radius: 20px; font-size: 13px; color: #a0c3ff; border: 1px solid #3a3a3d !important; text-decoration: none !important; transition: 0.2s; } .info-tags a:hover { background: #3a3a3d; color: #fff; border-color: var(--color-blue) !important; } .figure-center { text-align: center; margin: 30px 0; } .figure-center img { border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.4); border: 1px solid #444; max-width: 100%; height: auto; } .figure-center figcaption { margin-top: 10px; font-size: 14px; color: #888; } /* ----- 手機版微調 (RWD) ----- */ @media (max-width: 600px) { .cc-article { padding: 20px 16px; margin: 1rem; border-radius: 16px; } .cc-article h1 { font-size: 22px; } .btn-buy { font-size: 15px; padding: 12px 16px; width: 100%; text-align: center; } .vps-tabs-nav a { font-size: 13px; padding: 8px 14px; flex: 1 1 auto; text-align: center; } .vps-tabs-container { padding: 20px 16px; } .terminal-box { font-size: 12px; padding: 12px; } }

🚀 新手架站首選!CloudCone 高性價比 VPS 深度評測與推薦

🔥 一句話總結懶人包:
CloudCone [1] 是一家非常適合新手或是架站使用的 VPS!最大優點是該機房的頻寬穩定,附加功能還有我最甲意的 Snapshot (快照) 功能。雖然機器性能算是中等普普,但對於網站運行或是日常操作都綽綽有餘!

搶一個 SSD 規格的來練手非常不錯,而且我推薦的方案還包含了免費每日備份免費 AnyCast DNS。比如說 1C/1G/20GB/2TB 的規格,一個月只需 $3 美元,一年換算下來大約 $1100 台幣就能好好玩耍啦! 🐱‍👤🐱‍🚀🐱‍👓
🟩 🟩 🟩

⚙️ 系統效能深度測試

🔥 YABS 測試結果

# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2019-10-08                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Sat Nov 16 11:49:07 CST 2019

Basic System Information:
---------------------------------
Processor  : QEMU Virtual CPU version 2.5+
CPU cores  : 1 @ 2599.998 MHz
AES-NI     : ❌ Disabled
VM-x/AMD-V : ❌ Disabled
RAM        : 977M
Swap       : 1.0G
Disk       : 20G

Disk Speed Tests:
---------------------------------
       | Test 1      | Test 2      | Test 3      | Avg
       |             |             |             |
Write  | 362.00 MB/s | 353.00 MB/s | 340.00 MB/s | 351.67 MB/s
Read   | 872.94 MB/s | 869.30 MB/s | 850.31 MB/s | 864.18 MB/s

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider                  | Location (Link)           | Send Speed      | Recv Speed
                          |                           |                 |
Bouygues Telecom          | Paris, FR (10G)           | 817 Mbits/sec   | 233 Mbits/sec
Online.net                | Paris, FR (10G)           | 390 Mbits/sec   | 160 Mbits/sec
Severius                  | The Netherlands (10G)     | 783 Mbits/sec   | 283 Mbits/sec
Worldstream               | The Netherlands (10G)     | 837 Mbits/sec   | 158 Mbits/sec
wilhelm.tel               | Hamburg, DE (10G)         | 810 Mbits/sec   | 154 Mbits/sec
Biznet                    | Bogor, Indonesia (1G)     | busy            | busy
Hostkey                   | Moscow, RU (1G)           | 384 Mbits/sec   | 381 Mbits/sec
Velocity Online           | Tallahassee, FL, US (10G) | 411 Mbits/sec   | 251 Mbits/sec
Airstream Communications  | Eau Claire, WI, US (10G)  | 660 Mbits/sec   | 422 Mbits/sec
Hurricane Electric        | Fremont, CA, US (10G)     | 924 Mbits/sec   | busy

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider                  | Location (Link)           | Send Speed      | Recv Speed
                          |                           |                 |
Bouygues Telecom          | Paris, FR (10G)           | 816 Mbits/sec   | 258 Mbits/sec
Online.net                | Paris, FR (10G)           | 836 Mbits/sec   | 172 Mbits/sec
Severius                  | The Netherlands (10G)     | busy            | 193 Mbits/sec
Worldstream               | The Netherlands (10G)     | 839 Mbits/sec   | 191 Mbits/sec
wilhelm.tel               | Hamburg, DE (10G)         | 811 Mbits/sec   | 151 Mbits/sec
Airstream Communications  | Eau Claire, WI, US (10G)  | 676 Mbits/sec   | 362 Mbits/sec
Hurricane Electric        | Fremont, CA, US (10G)     | 924 Mbits/sec   | busy

Geekbench 4 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 2407
Multi Core      | 2348
Full Test       | https://browser.geekbench.com/v4/cpu/14933534
      

📊 serverreview 測試結果

$ bench.sh -a share clbin

 Benchmark started on 16-Nov-2019 12:18:46

 ## System Information

 OS Name     : CentOS Linux release 7.7.1908 (Core) N (64 bit)
 Kernel      : KVM / 5.3.9-1.el7.elrepo.x86_64
 CPU Model   : QEMU Virtual CPU version 2.5+
 CPU Cores   : 1 core @  2599.998 MHz
 CPU Cache   : 16384 KB
 Total RAM   : 977 MiB (Free 741 MiB)
 Total SWAP  : 1023 MiB (Free 1020MiB)
 Total Space : 21GB (20% used)
 Running for : 33 minutes 22 seconds

 ## CDN Speedtest

 CacheFly :  56.45 MiB/s |  451.60 Mbps  | ping   0.534ms
 Gdrive   :  23.99 MiB/s |  191.90 Mbps  | ping   7.952ms

 ## North America Speedtest

 Softlayer, Washington, USA :   8.25 MiB/s |   65.99 Mbps  | ping  57.801ms
 SoftLayer, San Jose, USA   :  50.55 MiB/s |  404.43 Mbps  | ping   9.810ms
 SoftLayer, Dallas, USA     :  14.95 MiB/s |  119.61 Mbps  | ping  30.030ms
 Vultr, New Jersey, USA     :  28.58 MiB/s |  228.64 Mbps  | ping  71.478ms
 Vultr, Seattle, USA        :  45.54 MiB/s |  364.34 Mbps  | ping  26.331ms
 Vultr, Dallas, USA         :  45.51 MiB/s |  364.08 Mbps  | ping  34.593ms
 Vultr, Los Angeles, USA    :  43.97 MiB/s |  351.77 Mbps  | ping   0.480ms
 Ramnode, New York, USA     :  33.12 MiB/s |  264.95 Mbps  | ping  68.448ms
 Ramnode, Atlanta, USA      :   9.15 MiB/s |   73.18 Mbps  | ping  52.127ms
 OVH, Beauharnois, Canada   :   3.76 MiB/s |   30.08 Mbps  | ping  67.699ms

 ## Europe Speedtest

 Vultr, London, UK            :  11.64 MiB/s |   93.16 Mbps  | ping 139.530ms
 LeaseWeb, Frankfurt, Germany :   3.83 MiB/s |   30.62 Mbps  | ping 155.228ms
 Hetzner, Germany             : 975.93 KiB/s |    7.62 Mbps  | ping 152.221ms
 Ramnode, Alblasserdam, NL    : 893.24 KiB/s |    6.98 Mbps  | ping 149.564ms
 Vultr, Amsterdam, NL         :  11.77 MiB/s |   94.17 Mbps  | ping 148.001ms
 EDIS, Stockholm, Sweden      :     312 B/s |      N/A       | ping 166.745ms
 OVH, Roubaix, France         :   4.91 MiB/s |   39.31 Mbps  | ping 131.084ms
 Online, France               :   6.02 MiB/s |   48.20 Mbps  | ping 139.153ms
 Prometeus, Milan, Italy      :     610 B/s |      N/A       | ping 157.722ms

 ## Exotic Speedtest

 Sydney, Australia     :   9.50 MiB/s |   75.98 Mbps  | ping 141.669ms
 Lagoon, New Caledonia :   5.49 MiB/s |   43.94 Mbps  | ping 168.875ms
 Hosteasy, Moldova     :   1.89 MiB/s |   15.12 Mbps  | ping 191.930ms
 Prima, Argentina      : 446.45 KiB/s |    3.49 Mbps  | ping error!

 ## Asia Speedtest

 SoftLayer, Singapore : 707.08 KiB/s |    5.52 Mbps  | ping 195.441ms
 Linode, Tokyo, Japan :   9.19 MiB/s |   73.53 Mbps  | ping 117.815ms
 Linode, Singapore    :   5.04 MiB/s |   40.29 Mbps  | ping 173.639ms
 Vultr, Tokyo, Japan  :  16.82 MiB/s |  134.55 Mbps  | ping 103.597ms

 ## IO Test

 CPU Speed:
    bzip2 512MB -  87.9 MB/s
   sha256 512MB -   155 MB/s
   md5sum 512MB -   398 MB/s

 Disk Speed (512MB):
   I/O Speed  - 566 MB/s
   I/O Direct - 328 MB/s

 RAM Speed (488MB):
   Avg. write - 2184.5 MB/s
   Avg. read  - 4608.0 MB/s

 Benchmark finished in 125 seconds

🚀 Speedtest Monster 測試結果

Speedtest Monster v.1.4.6 2019-10-29 
 Region: Global  https://bench.monster/speedtest.html
 Usage : curl -LsO bench.monster/speedtest.sh; bash speedtest.sh -Global

---------------------------------------------------------------------------
 OS           : CentOS 7.7.1908 (64 Bit)
 Virt/Kernel  : KVM / 5.3.9-1.el7.elrepo.x86_64
 CPU Model    : QEMU Virtual CPU version 2.5+
 CPU Cores    : 1 @ 2599.998 MHz x86_64 16384 KB Cache
 CPU Flags    : AES-NI Disabled & VM-x/AMD-V Disabled
 Load Average : 0.07, 0.24, 0.16
 Total Space  : 20G (4.0G ~22% used)
 Total RAM    : 84 MB / 977 MB (331 MB Buff)
 Total SWAP   : 0 MB / 1023 MB
 Uptime       : 0 days 0:20
---------------------------------------------------------------------------
 ASN & ISP     : AS35916, Multacom Corporation
 Organization : CloudCone, LLC
 Location     : Sheridan, United States / US
 Region       : Wyoming
---------------------------------------------------------------------------

 ## Geekbench v4 CPU Benchmark:

  Single Core : 2385  (GOOD)
   Multi Core : 2320

 ## IO Test

 CPU Speed:
    bzip2     :  87.9 MB/s
   sha256     : 152 MB/s
   md5sum     : 390 MB/s

 RAM Speed:
   Avg. write : 1413.7 MB/s
   Avg. read  : 3891.2 MB/s

 Disk Speed:
   1st run    : 697 MB/s
   2nd run    : 732 MB/s
   3rd run    : 921 MB/s
   -----------------------
   Average    : 783.3 MB/s

 ## Global Speedtest

 Location                       Upload           Download         Ping   
---------------------------------------------------------------------------
 Speedtest.net                  402.79 Mbit/s    472.82 Mbit/s    4.4 ms
 USA, New York (AT&T)           185.48 Mbit/s    99.04 Mbit/s     62.131 ms
 USA, Chicago (Windstream)      196.97 Mbit/s    127.04 Mbit/s    69.748 ms
 USA, Dallas (Frontier)         244.16 Mbit/s    382.46 Mbit/s    31.647 ms
 USA, Miami (Frontier)          162.24 Mbit/s    236.50 Mbit/s    69.609 ms
 USA, Los Angeles (Spectrum)    408.76 Mbit/s    457.93 Mbit/s     2.328 ms
 UK, London (Community Fibre)   121.75 Mbit/s    80.99 Mbit/s    137.475 ms
 France, Lyon (SFR)             64.10 Mbit/s     43.91 Mbit/s    146.463 ms
 Germany, Berlin (DNS:NET)      105.81 Mbit/s    107.47 Mbit/s   162.106 ms
 Spain, Madrid (Adamo)          101.42 Mbit/s    120.16 Mbit/s   175.481 ms
 Italy, Rome (Unidata)          77.43 Mbit/s     32.80 Mbit/s    179.572 ms
 Russia, Moscow (MTS)           20.79 Mbit/s     63.31 Mbit/s    257.346 ms
 Israel, Haifa (013Netvision)   56.50 Mbit/s     67.98 Mbit/s    205.940 ms
 India, New Delhi (Airtel)      22.49 Mbit/s     5.30 Mbit/s     261.091 ms
 Singapore (FirstMedia)         57.02 Mbit/s     35.64 Mbit/s    177.902 ms
 Japan, Tsukuba (SoftEther)     147.10 Mbit/s    122.95 Mbit/s   111.004 ms
 Australia, Sydney (Yes Optus)  57.32 Mbit/s     47.58 Mbit/s    216.524 ms
 RSA, Randburg (Cool Ideas)     19.38 Mbit/s     69.97 Mbit/s    298.649 ms
 Brazil, Sao Paulo (Criare)     39.55 Mbit/s     107.55 Mbit/s   179.608 ms
---------------------------------------------------------------------------

 Timestamp   : 2019-11-16 04:16:24 GMT
      
🟨 🟨 🟨

🌐 全球網速實測 (Ping & Speed)

ping.pe - 173.82.2.222 (CloudCone)
📡 ping.pe - 173.82.2.222 (CloudCone)

除了中國大陸的 PING 值不穩,其餘地區都還是很不錯的 🍻🍻🍻

🇹🇼 中華民國 節點測速

---------------------------------------------------------------------------
 ASN & ISP     : AS35916, Multacom Corporation
 組織          : CloudCone, LLC
 伺服器所在地  : Sheridan, United States / US
 地區          : Wyoming
---------------------------------------------------------------------------

 ### {中華民國}網路速度測試

 Location                           Upload           Download         Ping   
---------------------------------------------------------------------------
 臺北市 (中華電信)              77.17 Mbit/s     51.71 Mbit/s    131.165 ms
 臺北市 (是方電訊)              95.30 Mbit/s     54.17 Mbit/s    137.317 ms
 臺北市 (BGP Network)           69.96 Mbit/s     143.79 Mbit/s   147.294 ms
 臺北市 (臺灣智慧光網)          103.79 Mbit/s    105.88 Mbit/s   141.078 ms
 臺北市 (中嘉寬頻)              115.95 Mbit/s    121.70 Mbit/s   135.222 ms
 臺北市 (臺灣大寬頻)            103.73 Mbit/s    22.00 Mbit/s    135.468 ms
 臺北市 (臺灣固網)              111.46 Mbit/s    56.26 Mbit/s    146.124 ms
 臺北市 (凱擘大寬頻)            34.93 Mbit/s     22.14 Mbit/s    199.186 ms
 臺北市 (和宇寬頻)              90.52 Mbit/s     55.20 Mbit/s    ping error!
 臺北市 (北都數位)              86.88 Mbit/s     57.57 Mbit/s    150.408 ms
 桃園市 (中嘉寬頻)              119.64 Mbit/s    125.99 Mbit/s   139.603 ms
 臺中市 (中華電信)              71.95 Mbit/s     42.70 Mbit/s    148.811 ms
 臺中市 (是方電訊)              94.72 Mbit/s     53.84 Mbit/s    139.673 ms
 臺中市 (台灣寬頻 TBC)          100.87 Mbit/s    79.98 Mbit/s    148.141 ms
 臺中市 (逢甲大學)              68.73 Mbit/s     60.47 Mbit/s    173.642 ms
 高雄市 (中華電信)              86.32 Mbit/s     57.43 Mbit/s    135.140 ms
 高雄市 (是方電訊)              87.28 Mbit/s     50.60 Mbit/s    145.020 ms
 基隆市 (遠傳電信)              18.03 Mbit/s     39.64 Mbit/s    ping error!
 花蓮市 (是方電訊)              96.00 Mbit/s     57.23 Mbit/s    133.019 ms
 臺東市 (是方電訊)              86.45 Mbit/s     52.41 Mbit/s    135.268 ms
---------------------------------------------------------------------------

 Timestamp      : 2019-11-16 04:32:57 UTC

 ### 分享測試結果:

 - https://clbin.com/3do6n

🇺🇸 美國 節點測速

---------------------------------------------------------------------------
 ASN & ISP     : AS35916, Multacom Corporation
 組織          : CloudCone, LLC
 伺服器所在地  : Sheridan, United States / US
 地區          : Wyoming
---------------------------------------------------------------------------

 ### {美國}網路速度測試

 Location                           Upload           Download         Ping
---------------------------------------------------------------------------
 CA, Los Angeles (Hivelocity)   392.76 Mbit/s    453.84 Mbit/s     0.410 ms
 CA, San Diego (Cox)            404.91 Mbit/s    474.24 Mbit/s     5.066 ms
 CA, San Jose (Sprint)          334.88 Mbit/s    402.54 Mbit/s    13.199 ms
 AZ, Phoenix (Xiber LLC)        426.32 Mbit/s    380.42 Mbit/s    12.417 ms
 NV, Las Vegas (Cox)            405.86 Mbit/s    420.66 Mbit/s     5.779 ms
 WA, Seattle (Frontier)         272.59 Mbit/s    338.49 Mbit/s    26.778 ms
 OR, Medford (Spectrum)         258.50 Mbit/s    292.97 Mbit/s    40.824 ms
 CO, Centennial (Spectrum)      210.06 Mbit/s    183.54 Mbit/s    41.700 ms
 TX, Dallas (Hivelocity)        260.63 Mbit/s    253.04 Mbit/s    36.341 ms
 KS, Wichita (Cox)              221.29 Mbit/s    270.99 Mbit/s    41.151 ms
 MO, Kansas City (Xiber LLC)    224.42 Mbit/s    310.54 Mbit/s    82.361 ms
 OH, Columbus (Spectrum)        196.90 Mbit/s    115.73 Mbit/s    79.654 ms
 IL, Chicago (Verizon)          309.14 Mbit/s    142.80 Mbit/s    50.823 ms
 MI, Livonia (Spectrum)         210.32 Mbit/s    299.69 Mbit/s    63.843 ms
 NY, New York (Hivelocity)      214.97 Mbit/s    287.38 Mbit/s    63.816 ms
 VA, Ashburn (Windstream)       196.76 Mbit/s    166.06 Mbit/s    69.532 ms
 NC, Durham (Spectrum)          222.53 Mbit/s    226.98 Mbit/s    63.847 ms
 GA, Atlanta (Cox)              171.41 Mbit/s    106.05 Mbit/s    57.084 ms
 FL, Tampa (Spectrum)           220.09 Mbit/s    322.30 Mbit/s    64.128 ms
 Washington, DC (Xiber LLC)     234.75 Mbit/s    273.17 Mbit/s    55.178 ms
---------------------------------------------------------------------------

 Timestamp      : 2019-11-16 04:39:17 UTC
 測試耗費時間   : 5 min 19 sec
 紀錄檔案位置   : /root/speedtest.log

 ### 分享測試結果:

 - https://clbin.com/7tAoR

🇨🇳 中國大陸 節點測速

---------------------------------------------------------------------------
 ASN & ISP     : AS35916, Multacom Corporation
 組織          : CloudCone, LLC
 伺服器所在地  : Sheridan, United States / US
 地區          : Wyoming
---------------------------------------------------------------------------

 ### {中國大陸}網路速度測試

 Location                           Upload           Download         Ping
---------------------------------------------------------------------------
 華北, 北京市 (中國電信 5G)     10.26 Mbit/s     39.36 Mbit/s    173.188 ms
 華北, 天津市 (中國聯通 5G)     7.53 Mbit/s      45.06 Mbit/s    187.942 ms
 華東, 上海市 (中國聯通 5G)     87.54 Mbit/s     49.46 Mbit/s    179.831 ms
 華南, 廣州市 (中國電信)        83.59 Mbit/s     74.63 Mbit/s    ping error!
 華中, 鄭州市 (中國移動 5G)     23.96 Mbit/s     98.06 Mbit/s    168.093 ms
 華中, 合肥市 (中國電信 5G)     53.93 Mbit/s     65.70 Mbit/s    144.041 ms
 西北, 西安市 (中國移動)        17.28 Mbit/s     54.10 Mbit/s    207.611 ms
 西南, 成都市 (中國移動)        14.09 Mbit/s     64.27 Mbit/s    191.322 ms
---------------------------------------------------------------------------

 Timestamp      : 2019-11-16 04:43:35 UTC
 測試耗費時間   : 3 min 19 sec
 紀錄檔案位置   : /root/speedtest.log

 ### 分享測試結果:

 - https://clbin.com/rzngU
🟪 🟪 🟪

🛒 嚴選推薦方案 (Recommended Plans)

💎 TURBO-F2 基礎入門款

  • CPU: Intel Xeon E5系列 @ 1 Core
  • 記憶體: 1GB
  • 硬碟空間: 20GB SSD (RAID 10)
  • 網路流量: 2TB @ 1Gbps (10 Gbit NIC)
  • IPv4 / IPv6: 1 個 / 3 個
  • 專屬福利: 免費每日備份免費 AnyCast DNS
  • 月租費: $3 USD
🛒 前往購買 TURBO-F2 [14]

🚀 TURBO-F3 進階記憶體款

  • CPU: Intel Xeon E5系列 @ 1 Core
  • 記憶體: 2GB
  • 硬碟空間: 40GB SSD (RAID 10)
  • 網路流量: 2TB @ 1Gbps (10 Gbit NIC)
  • IPv4 / IPv6: 1 個 / 3 個
  • 專屬福利: 免費每日備份免費 AnyCast DNS
  • 月租費: $4 USD
🛒 前往購買 TURBO-F3 [15]

⚡ TURBO-F4 高效能大容量款

  • CPU: Intel Xeon E5系列 @ 2 Core
  • 記憶體: 2GB
  • 硬碟空間: 80GB SSD (RAID 10)
  • 網路流量: 3TB @ 1Gbps (10 Gbit NIC)
  • IPv4 / IPv6: 1 個 / 3 個
  • 專屬福利: 免費每日備份免費 AnyCast DNS
  • 月租費: $6.99 USD
🛒 前往購買 TURBO-F4 [16]