<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Yushum&apos;s Blog</title><description>随便写写。</description><link>https://yushum.com/</link><language>zh_CN</language><item><title>E5全局账号Rclone长期配置获取</title><link>https://yushum.com/posts/e5%E5%85%A8%E5%B1%80%E8%B4%A6%E5%8F%B7rclone%E9%95%BF%E6%9C%9F%E9%85%8D%E7%BD%AE%E8%8E%B7%E5%8F%96/</link><guid isPermaLink="true">https://yushum.com/posts/e5%E5%85%A8%E5%B1%80%E8%B4%A6%E5%8F%B7rclone%E9%95%BF%E6%9C%9F%E9%85%8D%E7%BD%AE%E8%8E%B7%E5%8F%96/</guid><pubDate>Tue, 30 Dec 2025 15:59:29 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;对于拥有 Microsoft E5 开发人员或者商业订阅的用户来说，如何高效管理组织内的大量 OneDrive 空间一直是个痛点。传统的 Rclone 配置通常基于 &quot;Delegated (委托)&quot; 权限，需要定期（通常是90天）重新授权，且每个账号都需要单独配置，维护起来非常繁琐。&lt;/p&gt;
&lt;p&gt;本文将介绍一种利用 Microsoft Graph API 的 &lt;strong&gt;Client Credentials (客户端凭据)&lt;/strong&gt; 模式进行配置的方法。其核心优势在于：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;长期有效&lt;/strong&gt;：我们可以手动申请有效甚至长达 100 年的密钥，彻底告别 periodic re-authentication。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;全组织通用&lt;/strong&gt;：只需创建一个应用（App），即可通过修改 &lt;code&gt;drive_id&lt;/code&gt; 挂载组织内任意用户的 OneDrive，无需重复申请 API。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;自动化友好&lt;/strong&gt;：非常适合服务器端的自动化备份任务，因为不需要交互式登录。&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;⚠️ 必须注意的安全风险&lt;/strong&gt;&lt;br /&gt;
本教程使用的权限是 &lt;code&gt;Files.ReadWrite.All&lt;/code&gt; (Application 级别)。这意味着获得此配置文件（Client ID 和 Secret）的人，实际上拥有&lt;strong&gt;读写该组织下所有用户 OneDrive 和 SharePoint 站点数据的最高权限&lt;/strong&gt;。&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;请务必像保管银行密码一样保管您的 &lt;code&gt;client_secret&lt;/code&gt;。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;严禁&lt;/strong&gt;将此配置文件分发给不可信的第三方。&lt;/li&gt;
&lt;li&gt;建议仅在您自己完全控制的服务器上使用此配置。&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;
&lt;hr /&gt;
&lt;h2&gt;第一步：注册应用并获取租户 ID&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;使用管理员账号登录 &lt;strong&gt;Microsoft Entra 管理中心 (原 Azure AD)&lt;/strong&gt;：&lt;br /&gt;
&lt;a href=&quot;https://entra.microsoft.com/#view/Microsoft_AAD_IAM/TenantOverview.ReactView?Microsoft_AAD_IAM_legacyAADRedirect=true&quot;&gt;https://entra.microsoft.com/#view/Microsoft_AAD_IAM/TenantOverview.ReactView&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;在“概览”页面，找到并复制 &lt;strong&gt;租户 ID (Tenant ID)&lt;/strong&gt;，保存备用。&lt;/li&gt;
&lt;li&gt;点击左侧菜单的“应用注册” -&amp;gt; “新注册”。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;名称&lt;/strong&gt;：任意填写，例如 &lt;code&gt;Rclone-Global&lt;/code&gt;。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;受支持的账户类型&lt;/strong&gt;：
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;推荐&lt;/strong&gt;：选择第一项 &lt;strong&gt;“仅此组织目录中的帐户 (单租户)”&lt;/strong&gt;。这是最标准且安全的做法。&lt;/li&gt;
&lt;li&gt;&lt;em&gt;备选&lt;/em&gt;：如果您在后续配置或使用某些特定第三方工具（如 AList/OpenList）遇到权限报错，可以尝试重新注册并选择第三项 &lt;strong&gt;“任何组织目录(任何 Microsoft Entra ID 租户)中的帐户和个人 Microsoft 帐户”&lt;/strong&gt;，这通常具有更广泛的兼容性。&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;重定向 URI&lt;/strong&gt;：留空即可。&lt;/li&gt;
&lt;li&gt;点击“注册”。&lt;/li&gt;
&lt;li&gt;注册完成后，在应用概览页面复制 &lt;strong&gt;应用程序(客户端) ID (Client ID)&lt;/strong&gt; 和 &lt;strong&gt;对象 ID (Object ID)&lt;/strong&gt;，保存备用。&lt;/li&gt;
&lt;/ol&gt;
&lt;hr /&gt;
&lt;h2&gt;第二步：申请长期密钥&lt;/h2&gt;
&lt;p&gt;普通界面创建的密钥有效期最长通常只有 24 个月。我们可以通过 Graph API 绕过此限制，申请一个自定义有效期的密钥。&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;访问 &lt;strong&gt;Graph Explorer&lt;/strong&gt; 并使用管理员账号登录：&lt;br /&gt;
&lt;a href=&quot;https://developer.microsoft.com/zh-cn/graph/graph-explorer&quot;&gt;https://developer.microsoft.com/zh-cn/graph/graph-explorer&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;将请求方式从 &lt;code&gt;GET&lt;/code&gt; 改为 &lt;code&gt;POST&lt;/code&gt;。&lt;/li&gt;
&lt;li&gt;在请求地址栏输入以下 URL（将其中的 &lt;code&gt;{id}&lt;/code&gt; 替换为您上一步复制的 &lt;strong&gt;对象 ID&lt;/strong&gt;）：&lt;br /&gt;
&lt;code&gt;https://graph.microsoft.com/v1.0/applications/{id}/addPassword&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;在下方的 &quot;Request body&quot; (请求正文) 中输入以下 JSON：&lt;br /&gt;
&lt;code&gt;{ &quot;passwordCredential&quot;: { &quot;displayName&quot;: &quot;Rclone-LongTerm&quot;, &quot;endDateTime&quot;: &quot;2125-12-30T00:00:00Z&quot; } }&lt;/code&gt;&lt;br /&gt;
&lt;em&gt;(注：这里的 &lt;code&gt;endDateTime&lt;/code&gt; 可以自定义，设为 100 年后基本等同于永久)&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;如果这是您第一次使用 Graph Explorer，可能会提示权限不足。点击 &quot;Modify permissions&quot;，搜索 &lt;code&gt;Application.ReadWrite.All&lt;/code&gt; 并点击 &quot;Consent&quot; 进行授权。&lt;/li&gt;
&lt;li&gt;点击 &lt;strong&gt;Run query&lt;/strong&gt;。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;关键步骤&lt;/strong&gt;：在下方的 &quot;Response preview&quot; (响应预览) 中，找到 &lt;code&gt;secretText&lt;/code&gt; 字段。&lt;strong&gt;立即复制并保存这个值&lt;/strong&gt;，由于安全原因，它只显示一次，这就是您的 &lt;strong&gt;客户端密钥 (Client Secret)&lt;/strong&gt;。&lt;/li&gt;
&lt;/ol&gt;
&lt;hr /&gt;
&lt;h2&gt;第三步：授予应用高等级权限&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;回到 Entra 管理中心，打开您刚刚注册的应用。&lt;/li&gt;
&lt;li&gt;点击左侧“API 权限” -&amp;gt; “添加权限” -&amp;gt; “Microsoft Graph”。&lt;/li&gt;
&lt;li&gt;选择 &lt;strong&gt;“应用程序权限” (Application permissions)&lt;/strong&gt; *(注意：不是委托权限)*。&lt;/li&gt;
&lt;li&gt;搜索并勾选以下权限：
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;Files.Read.All&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Files.ReadWrite.All&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;点击“添加权限”。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;重要&lt;/strong&gt;：添加完成后，权限状态会显示“未授予”。必须点击列表上方的 &lt;strong&gt;“代表 [您的组织名称] 授予管理员同意”&lt;/strong&gt; 按钮，并确认。状态变为绿色的“已授予”才算成功。&lt;/li&gt;
&lt;/ol&gt;
&lt;hr /&gt;
&lt;h2&gt;第四步：获取目标用户的 Drive ID&lt;/h2&gt;
&lt;p&gt;虽然我们有了全局权限，但 Rclone 需要知道具体挂载哪个用户的网盘。我们需要获取该用户的 &lt;code&gt;drive_id&lt;/code&gt;。&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;回到 &lt;strong&gt;Graph Explorer&lt;/strong&gt;，这次用&lt;strong&gt;您想要挂载网盘的那个用户账号&lt;/strong&gt;登录。&lt;/li&gt;
&lt;li&gt;将请求方式改回 &lt;code&gt;GET&lt;/code&gt;。&lt;/li&gt;
&lt;li&gt;请求地址修改为：&lt;br /&gt;
&lt;code&gt;https://graph.microsoft.com/v1.0/users/{userUPN}/drive&lt;/code&gt;&lt;br /&gt;
&lt;em&gt;(将 &lt;code&gt;{userUPN}&lt;/code&gt; 替换为目标用户的完整邮箱地址，例如 &lt;code&gt;admin@example.com&lt;/code&gt;)&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;在 &quot;Modify permissions&quot; 中同意 &lt;code&gt;Files.Read.All&lt;/code&gt;。&lt;/li&gt;
&lt;li&gt;点击 &lt;strong&gt;Run query&lt;/strong&gt;。&lt;/li&gt;
&lt;li&gt;在响应结果中，找到 &lt;code&gt;id&lt;/code&gt; 字段（通常是一串长字符串）。这就是该用户的 &lt;strong&gt;drive_id&lt;/strong&gt;。&lt;/li&gt;
&lt;/ol&gt;
&lt;hr /&gt;
&lt;h2&gt;第五步：编写 Rclone 配置文件&lt;/h2&gt;
&lt;p&gt;现在我们集齐了：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;租户 ID&lt;/strong&gt; (tenant_id)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;客户端 ID&lt;/strong&gt; (client_id)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;客户端密钥&lt;/strong&gt; (client_secret)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Drive ID&lt;/strong&gt; (drive_id)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;直接在您的 VPS 或电脑上编辑 &lt;code&gt;rclone.conf&lt;/code&gt; 文件（或使用文本编辑器新建），填入以下内容：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[onedrive-user-a]
type = onedrive
driver = onedrive
# 您的租户 ID
tenant = xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
# 您的应用程序(客户端) ID
client_id = xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
# 您获取的长期密钥
client_secret = xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
# 开启客户端凭据模式
client_credentials = true
# 账号类型通常为 business
drive_type = business
# 目标用户的 Drive ID
drive_id = xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;如何添加第二个用户？&lt;/h3&gt;
&lt;p&gt;非常简单！您不需要重新注册应用，也不需要重新申请密钥。只需要重复“第四步”获取另一个用户的 &lt;code&gt;drive_id&lt;/code&gt;，然后复制上面的配置段落，修改 &lt;code&gt;[名称]&lt;/code&gt; 和 &lt;code&gt;drive_id&lt;/code&gt; 即可：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[onedrive-user-b]
type = onedrive
... (tenant, client_id, client_secret 保持完全一致) ...
drive_id = 另一个用户的以b开头的drive_id
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;通过这种方式，您可以迅速为组织内的成百上千个账号建立索引或备份任务，极大地简化了运维成本。&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;参考来源：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://rclone.org/onedrive/&quot;&gt;Rclone OneDrive Documentation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://doc.oplist.org/guide/drivers/onedrive_app&quot;&gt;OpenList Guide&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://hostloc.com/thread-840678-1-1.html&quot;&gt;Hostloc Thread&lt;/a&gt;*&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>Scaleway STARDUST 1G硬盘安装Alpine Linux</title><link>https://yushum.com/posts/scaleway-stardust-1g%E7%A1%AC%E7%9B%98%E5%AE%89%E8%A3%85alpine-linux/</link><guid isPermaLink="true">https://yushum.com/posts/scaleway-stardust-1g%E7%A1%AC%E7%9B%98%E5%AE%89%E8%A3%85alpine-linux/</guid><pubDate>Sun, 04 Aug 2024 10:13:40 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;虽然在&lt;a href=&quot;https://yushum.com/%E5%B0%86%E6%8A%A0%E9%97%A8%E8%B4%AF%E5%BD%BB%E5%88%B0%E5%BA%95-scalewaye0-22-%E6%9C%88ipv6-only-vps%E6%89%93%E5%BC%80%E6%96%B9%E5%BC%8F/&quot;&gt;Scaleway€0.22/月IPv6 only VPS打开方式&lt;/a&gt;一文中将硬盘克扣到了3G，但既然追求刺激，就要贯彻到底咯。&lt;/p&gt;
&lt;p&gt;这次把硬盘压榨到1G，因此系统只能选择更小的Alpine Linux。&lt;/p&gt;
&lt;h2&gt;CLI创建实例&lt;/h2&gt;
&lt;p&gt;安装 &lt;a href=&quot;https://github.com/scaleway/scaleway-cli&quot;&gt;Scaleway 的命令行界面&lt;/a&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;curl -o /usr/local/bin/scw -L https://github.com/scaleway/scaleway-cli/releases/download/v2.32.1/scaleway-cli_2.32.1_linux_amd64
chmod +x /usr/local/bin/scw
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;到Scaleway的后台创建一个API Key，右上角-&amp;gt;&lt;code&gt;API Keys&lt;/code&gt;-&amp;gt;&lt;code&gt;Generate API key&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;初始化scw&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;scw init
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;创建实例前记得到 &lt;a href=&quot;https://console.scaleway.com/project/ssh-keys&quot;&gt;https://console.scaleway.com/project/ssh-keys&lt;/a&gt; 上传自己的SSH公钥&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;scw instance server create type=STARDUST1-S zone=fr-par-1 image=debian_bullseye root-volume=l:10G name=FR ip=none project-id=f09e5860-eb42-4784-8c98-*********
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;ProjectID 可以在 &lt;a href=&quot;https://console.scaleway.com/project/settings&quot;&gt;https://console.scaleway.com/project/settings&lt;/a&gt; 找到&lt;/p&gt;
&lt;h2&gt;修改硬盘&lt;/h2&gt;
&lt;p&gt;现在到 &lt;a href=&quot;https://console.scaleway.com/instance/servers&quot;&gt;Instances&lt;/a&gt; 就可以看到刚刚创建的实例，点击打开详情页面后，先点右上方的关机，然后点击 &lt;code&gt;Attached Volume&lt;/code&gt;，删除硬盘后创建一个 &lt;code&gt;Local Storage&lt;/code&gt;，修改大小为1G&lt;/p&gt;
&lt;p&gt;默认打开是 Block Storage ，比 Local Storage 贵一些。&lt;/p&gt;
&lt;p&gt;返回 &lt;code&gt;Overview&lt;/code&gt; ，点击 &lt;code&gt;Order flexible IP&lt;/code&gt; ，添加一个IPv6地址和一个IPv4地址。&lt;/p&gt;
&lt;p&gt;IPv4 仅用于启动 netboot.xyz，后面会删除&lt;/p&gt;
&lt;p&gt;点开 &lt;code&gt;Console&lt;/code&gt; ，然后开机，此时在打开的 &lt;code&gt;Console&lt;/code&gt; 页面快速连击 &lt;code&gt;Esc&lt;/code&gt; 键，即可进入 UEFI 界面。&lt;/p&gt;
&lt;p&gt;进入 &lt;code&gt;Device Manager&lt;/code&gt;-&amp;gt; &lt;code&gt;Network Device List&lt;/code&gt;-&amp;gt; 唯一的网络设备-&amp;gt; &lt;code&gt;HTTP Boot Configuration&lt;/code&gt;-&amp;gt;&lt;code&gt;Boot URI&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;输入链接&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;http://boot.netboot.xyz/ipxe/netboot.xyz.efi
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;保存并返回主页，进入 &lt;code&gt;Boot Manager&lt;/code&gt; 并选择新添加的启动选项 &lt;code&gt;UEFI HTTP&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;等待 &lt;code&gt;netboot.xyz&lt;/code&gt; 启动后，转到 &lt;code&gt;Utilities (UEFI)&lt;/code&gt;-&amp;gt;&lt;code&gt;Kernel cmdline params&lt;/code&gt; 并输入&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;console=ttyS0
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;这不仅可以让您通过串行端口查看安装程序并与之交互，而且 setup-alpine 会检测到它，并将已安装的系统配置为也使用串行控制台&lt;/p&gt;
&lt;p&gt;退出到 &lt;code&gt;netboot.xyz&lt;/code&gt; 首页，选择 &lt;code&gt;Linux Network Installs (64-bit)&lt;/code&gt;-&amp;gt;&lt;code&gt;Alpine Linux&lt;/code&gt; 开始安装 &lt;code&gt;Alpine Linux&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;安装netboot.xyz&lt;/h2&gt;
&lt;p&gt;使用 &lt;code&gt;root&lt;/code&gt; 用户登录到 &lt;code&gt;Alpine Linux&lt;/code&gt;，设置环境变量&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;export BOOT_SIZE=33
export SWAP_SIZE=0
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Boot分区默认为160M，FAT32 必须大于32M；默认会添加Swap分区，设置swap大小为0以关闭。&lt;/p&gt;
&lt;p&gt;输入 &lt;code&gt;setup-alpine&lt;/code&gt; 开始安装过程&lt;/p&gt;
&lt;p&gt;安装过程中设置网络时可以暂时设置为dhcp，安装完成后再行修改。&lt;/p&gt;
&lt;p&gt;硬盘安装模式要设置为 &lt;code&gt;sys&lt;/code&gt; 以启用上面设置的环境变量&lt;/p&gt;
&lt;p&gt;安装完成后 &lt;code&gt;reboot&lt;/code&gt; 即可&lt;/p&gt;
&lt;h2&gt;开机设置&lt;/h2&gt;
&lt;p&gt;使用密钥登陆到VPS，根据Scaleway后台Overview页面中的IPv6网络信息修改 &lt;code&gt;/etc/network/interfaces&lt;/code&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;auto lo
iface lo inet loopback

auto eth0
iface eth0 inet6 static
        address &amp;lt;ipv6_address&amp;gt;/64
        gateway &amp;lt;ipv6_gateway&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;修改 &lt;code&gt;/etc/resolv.conf&lt;/code&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;nameserver 2001:4860:4860::8888
nameserver 2606:4700:4700::1111
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;重启VPS后到 Scaleway 后台删除 IPv4 地址&lt;/p&gt;
&lt;h2&gt;优化&lt;/h2&gt;
&lt;h3&gt;添加IPv4&lt;/h3&gt;
&lt;p&gt;安装必要软件&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;apk add python3 curl
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;参考&lt;a href=&quot;https://yushum.com/%E8%8E%B7%E5%8F%96%E9%80%82%E7%94%A8%E4%BA%8Ewireguard%E7%9A%84warp-teamszero-trust%E9%85%8D%E7%BD%AE%E6%96%87%E4%BB%B6/&quot;&gt;获取适用于Wireguard的WARP Teams(Zero Trust)配置文件&lt;/a&gt;，获取后安装wireguard&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;apk add wireguard-tools-wg-quick iptables wireguard-tools-openrc
mkdir /etc/wireguard
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;在 &lt;code&gt;/etc/wireguard/warp.conf&lt;/code&gt; 创建好配置文件，下面是一个示例&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[Interface]
PrivateKey = &amp;lt;PrivateKey&amp;gt;
Address = 172.16.0.2/32
Address = &amp;lt;IPv6_Address&amp;gt;/128
MTU = 1420
[Peer]
PublicKey = bmXOC+F1FxEMF9dyiK2H5/1SUtzH0JuVo51h2wPfgyo=
AllowedIPs = 0.0.0.0/0
Endpoint = &amp;lt;IPv6_Endpoint&amp;gt;:2408
PersistentKeepalive = 25
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;修改权限&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;chmod 600 /etc/wireguard/warp.conf
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;设置开机启动&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;ln -s /etc/init.d/wg-quick /etc/init.d/wg-quick.warp
rc-update add wg-quick.warp
rc-service wg-quick.warp start
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;开启bbr&lt;/h3&gt;
&lt;p&gt;创建 &lt;code&gt;/etc/sysctl.d/99-custom.conf&lt;/code&gt; 文件&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;net.core.default_qdisc = cake
net.ipv4.tcp_congestion_control = bbr
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;结语&lt;/h2&gt;
&lt;p&gt;服务器的价格是€0.00015/h，1G硬盘的价格是€0.000044/h，所以每月仅需 (0.00015+0.000044)×24×30=0.13968欧，目前大约是1.09元。&lt;/p&gt;
&lt;p&gt;硬盘空间剩余空间576M，如下图所示&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2024/08/04/66aee8173ff6c.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;参考&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://gist.github.com/karolba/a3f1c5f8d50c67f5a19e6c8f38e53e12&quot;&gt;alpine-on-stardust-no-rescue.md&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://wiki.alpinelinux.org/wiki/Alpine_setup_scripts&quot;&gt;Alpine setup scripts&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://wiki.alpinelinux.org/wiki/Configure_a_Wireguard_interface_(wg)&quot;&gt;Configure a Wireguard interface (wg)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Design_of_the_FAT_file_system#Size_limits&quot;&gt;Size limits&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>获取适用于Wireguard的WARP Teams(Zero Trust)配置文件</title><link>https://yushum.com/posts/%E8%8E%B7%E5%8F%96%E9%80%82%E7%94%A8%E4%BA%8Ewireguard%E7%9A%84warp-teamszero-trust%E9%85%8D%E7%BD%AE%E6%96%87%E4%BB%B6/</link><guid isPermaLink="true">https://yushum.com/posts/%E8%8E%B7%E5%8F%96%E9%80%82%E7%94%A8%E4%BA%8Ewireguard%E7%9A%84warp-teamszero-trust%E9%85%8D%E7%BD%AE%E6%96%87%E4%BB%B6/</guid><pubDate>Fri, 02 Aug 2024 22:55:10 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;惊闻 &lt;a href=&quot;https://developers.cloudflare.com/warp-client/warp-modes/#warp&quot;&gt;Cloudflare 决定终止 WARP+ 推荐计划&lt;/a&gt;，但目前还可以使用 Zero Trust 的 Teams 获取 WARP+ ，遂成此文。&lt;/p&gt;
&lt;h2&gt;WARP-SH&lt;/h2&gt;
&lt;p&gt;通过 fscarmen 的网站获取token：&lt;a href=&quot;https://token.cloudflare.now.cc/&quot;&gt;Cloudflare WARP Zero Trust Token&lt;/a&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;wget -N https://gitlab.com/fscarmen/warp/-/raw/main/api.sh &amp;amp;&amp;amp; bash api.sh -r -t &amp;lt;token&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;将&lt;code&gt;&amp;lt;token&amp;gt;&lt;/code&gt;更改为上面获取到的&lt;/p&gt;
&lt;p&gt;需要 python3 和 curl&lt;/p&gt;
&lt;p&gt;此时当前目录下就出现了&lt;code&gt;warp-account.conf&lt;/code&gt;文件，可以通过命令&lt;code&gt;bash api.sh -n &amp;lt;device name&amp;gt;&lt;/code&gt;修改设备名。&lt;/p&gt;
&lt;h2&gt;Wireguard&lt;/h2&gt;
&lt;p&gt;查看&lt;code&gt;warp-account.conf&lt;/code&gt;文件即可获取所需的配置信息，下面给出适用于IPv6 only的小鸡获取IPv4的配置文件&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[Interface]
PrivateKey = xxx #warp-account.conf第5行private_key
Address = 172.16.0.2/32
Address = xxx/128 #warp-account.conf第151行v6
MTU = 1420

[Peer]
PublicKey = bmXOC+F1FxEMF9dyiK2H5/1SUtzH0JuVo51h2wPfgyo=
AllowedIPs = 0.0.0.0/0
Endpoint = #warp-account.conf第137行v6
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;注意&lt;/h2&gt;
&lt;p&gt;查看&lt;a href=&quot;https://www.cloudflarestatus.com/&quot;&gt;Cloudflare System Status&lt;/a&gt;页面可以看到有些服务器是&lt;code&gt;Re-routed&lt;/code&gt;的状态，这些地区的wireguard配置文件中需要添加&lt;code&gt;warp-account.conf&lt;/code&gt;文件中第131行的reserved项，官方的wireguard并不支持这一设置。&lt;/p&gt;
&lt;h2&gt;参考&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/fscarmen/warp-sh/blob/main/README.md&quot;&gt;【WGCF】连接CF WARP为服务器添加IPv4/IPv6网络&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>如何在三分钟内手动安装Vaultwarden</title><link>https://yushum.com/posts/vaultwarden%E5%AE%89%E8%A3%85%E8%AE%B0%E5%BD%95/</link><guid isPermaLink="true">https://yushum.com/posts/vaultwarden%E5%AE%89%E8%A3%85%E8%AE%B0%E5%BD%95/</guid><pubDate>Mon, 13 May 2024 17:29:59 GMT</pubDate><content:encoded>&lt;h1&gt;前言&lt;/h1&gt;
&lt;p&gt;从2020年&lt;a href=&quot;https://yushum.com/bitwarden_rs%E6%9C%8D%E5%8A%A1%E7%AB%AF%E6%90%AD%E5%BB%BA%EF%BC%88%E4%BD%BF%E7%94%A8mysql%E6%95%B0%E6%8D%AE%E5%BA%93%EF%BC%89/&quot;&gt;bitwarden_rs服务端搭建&lt;/a&gt;完成至今，笔者已稳定了使用4年的bitwarden，这期间bitwarden_rs更名为Vaultwarden，同时也更新了不少内容，因此重新记录一下安装过程。&lt;/p&gt;
&lt;h1&gt;环境准备&lt;/h1&gt;
&lt;p&gt;本文使用的系统为Debian 12，Vaultwarden的数据库为宿主机上的MairaDB，并通过CloudFlare Tunnel反代到公网，因此需要使用已经托管到CloudFlare的域名。&lt;/p&gt;
&lt;p&gt;安装必要软件：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;apt update &amp;amp;&amp;amp; apt install curl sudo -y
curl -fsSL https://pkg.cloudflare.com/cloudflare-main.gpg | sudo tee /usr/share/keyrings/cloudflare-main.gpg &amp;gt;/dev/null
echo &apos;deb [signed-by=/usr/share/keyrings/cloudflare-main.gpg] https://pkg.cloudflare.com/cloudflared bookworm main&apos; | sudo tee /etc/apt/sources.list.d/cloudflared.list
apt update &amp;amp;&amp;amp; apt install cloudflared docker.io docker-compose mariadb-server -y
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;其他系统的CloudFlare Tunnel安装可参考 https://pkg.cloudflare.com&lt;/p&gt;
&lt;p&gt;MariaDB安全初始设置：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;mysql_secure_installation
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;使用刚才设置的密码登录到数据库：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;mysql -u root -p
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;创建数据库和用户：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;CREATE DATABASE vaultwarden CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
GRANT ALL PRIVILEGES ON vaultwarden.* TO vaultwarden@localhost IDENTIFIED BY &apos;password&apos;;
FLUSH PRIVILEGES;
quit
&lt;/code&gt;&lt;/pre&gt;
&lt;h1&gt;安装Vaultwarden&lt;/h1&gt;
&lt;p&gt;创建并打开docker-compose配置文件：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;mkdir -p /srv/docker/vaultwarden
touch /srv/docker/vaultwarden/docker-compose.yml
vi /srv/docker/vaultwarden/docker-compose.yml
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;将下面的docker-compose.yml示例复制进去&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;services:  
    vaultwarden:  
        container_name: vaultwarden  
        restart: always  
        volumes:  
            - &apos;./data/:/data/&apos;  
            - /var/run/mysqld/mysqld.sock:/var/run/mysqld/mysqld.sock  
        ports:  
            - &apos;127.0.0.1:8080:80&apos;  
        environment:  
            - TZ=Asia/Shanghai  
            - &quot;DATABASE_URL=mysql://vaultwarden:password@localhost/vaultwarden?unix_socket=/var/run/mysqld/mysqld.sock&quot;  
            - DOMAIN=https://vaultwarden.example.com  
            - IP_HEADER=X-Forwarded-For  
            - SIGNUPS_ALLOWED=true  
        image: &apos;vaultwarden/server:latest-alpine&apos;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;注意修改环境变量&lt;code&gt;DOMAIN&lt;/code&gt;为要使用的域名&lt;/p&gt;
&lt;p&gt;其他环境变量可以按需求开启，下面是部分较为实用的功能：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/dani-garcia/vaultwarden/wiki/Enabling-Mobile-Client-push-notification&quot;&gt;Enabling Mobile Client push notification&lt;/a&gt;：移动客户端推送通知&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/dani-garcia/vaultwarden/wiki/Enabling-admin-page&quot;&gt;Enabling admin page&lt;/a&gt;：管理页面&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/dani-garcia/vaultwarden/wiki/SMTP-Configuration&quot;&gt;SMTP Configuration&lt;/a&gt;：SMTP配置&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;启动容器：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;cd /srv/docker/vaultwarden
docker-compose up -d
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;查看日志：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;docker-compose logs -f
&lt;/code&gt;&lt;/pre&gt;
&lt;h1&gt;反向代理&lt;/h1&gt;
&lt;p&gt;在CloudFlare的Zero Trust页面中创建Tunnel，按照提示在服务器上绑定隧道，然后按下图设置反代。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2024/05/13/6641d94d5833d.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;设置完成后，等待CloudFlare的SSL证书生效，即可访问 &lt;code&gt;https://vaultwarden.example.com&lt;/code&gt; 打开Vaultwarden网页客户端。&lt;/p&gt;
&lt;p&gt;如果启用了管理页面，管理页面为 https://vaultwarden.example.com/admin&lt;/p&gt;
&lt;h1&gt;演示&lt;/h1&gt;
</content:encoded></item><item><title>将抠门贯彻到底——Scaleway€0.22/月IPv6 only VPS打开方式</title><link>https://yushum.com/posts/%E5%B0%86%E6%8A%A0%E9%97%A8%E8%B4%AF%E5%BD%BB%E5%88%B0%E5%BA%95-scalewaye0-22-%E6%9C%88ipv6-only-vps%E6%89%93%E5%BC%80%E6%96%B9%E5%BC%8F/</link><guid isPermaLink="true">https://yushum.com/posts/%E5%B0%86%E6%8A%A0%E9%97%A8%E8%B4%AF%E5%BD%BB%E5%88%B0%E5%BA%95-scalewaye0-22-%E6%9C%88ipv6-only-vps%E6%89%93%E5%BC%80%E6%96%B9%E5%BC%8F/</guid><pubDate>Tue, 23 Jan 2024 18:50:29 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;Scaleway的星尘&lt;code&gt;STARDUST1-S&lt;/code&gt;因为其低廉的价格、不限制CPU以及无限流量，一直是广大MJJ最喜爱的IPv6 only VPS，但是它在2022年从每月€0.38涨到了€0.43，令我等贫民不堪重负，于是有人发现了通过缩小硬盘来节省开销的方法。&lt;/p&gt;
&lt;h2&gt;创建&lt;/h2&gt;
&lt;p&gt;打开&lt;a href=&quot;https://console.scaleway.com/instance/servers&quot;&gt;Instances&lt;/a&gt;页，点击&lt;code&gt;Create Instance&lt;/code&gt;，选择可用区（目前有三个可用区可以创建星尘，分别是&lt;code&gt;PARIS 1&lt;/code&gt; 、 &lt;code&gt;AMSTERDAM 1&lt;/code&gt; 和 &lt;code&gt;WARSAW 2&lt;/code&gt;，每个区只能开一台星尘），然后依次选择&lt;code&gt;Learning&lt;/code&gt; - &lt;code&gt;STARDUST1-S&lt;/code&gt;，系统随便选，&lt;code&gt;Volumes&lt;/code&gt;选择&lt;code&gt;Local&lt;/code&gt;，务必取消勾选&lt;code&gt;Enable public IPv4&lt;/code&gt;，这时应该可以在最下方看到估计成本为€0.00059/小时（€0.43/月），点击&lt;code&gt;Create Instance&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2024/01/23/65af8ceacc5c2.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;缩减硬盘&lt;/h2&gt;
&lt;p&gt;打开刚刚创建的VPS详情页，首先关机，点击&lt;code&gt;Attached volumes&lt;/code&gt;，删除下面的10GB硬盘，然后点击&lt;code&gt;Create volume&lt;/code&gt;，选择&lt;code&gt;Local Storage&lt;/code&gt;，名称随意，由于本人习惯使用Debian系统，因此&lt;code&gt;Volume size&lt;/code&gt;最小只能设置为3GB，如果使用Alpine还可以设置更小（未实测），最后点击下方的&lt;code&gt;Add volume&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;创建好3GB硬盘后，点击&lt;code&gt;Advanced settings&lt;/code&gt;，选择&lt;code&gt;Use rescue image&lt;/code&gt;，点击&lt;code&gt;save&lt;/code&gt;，然后开机。&lt;/p&gt;
&lt;p&gt;使用root用户和原来的密钥登录VPS，运行下列命令dd想要的系统：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# Debian 12:
curl -Lo- &quot;https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-genericcloud-amd64.raw&quot; | dd of=/dev/vda bs=1M
curl -Lo- &quot;https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-genericcloud-amd64.tar.xz&quot; | tar -xJO | dd of=/dev/vda bs=1M

# Debian 11:
curl -Lo- &quot;https://cloud.debian.org/images/cloud/bullseye/latest/debian-11-genericcloud-amd64.raw&quot; | dd of=/dev/vda bs=1M
curl -Lo- &quot;https://cloud.debian.org/images/cloud/bullseye/latest/debian-11-genericcloud-amd64.tar.xz&quot; | tar -xJO | dd of=/dev/vda bs=1M
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;如果没有问题的话运行下列命令调整磁盘分区大小：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;parted -l
# 这一步会提示 Warning: Not all of the space available to /dev/vda 【这里注意是vda，一开始先说sda，sda好像修复不了】 appears to be used, you can fix the GPT to use all of the space (an extra 1665071 blocks) or continue with the current setting? 问你fix 修复还是ignore 忽略，输入 f，也就是修复
partprobe
parted -s /dev/vda resizepart 1 100%
e2fsck -f /dev/vda1
resize2fs /dev/vda1
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;到&lt;code&gt;Advanced settings&lt;/code&gt;将&lt;code&gt;Boot mode&lt;/code&gt;修改为&lt;code&gt;Use local boot&lt;/code&gt;，点击&lt;code&gt;save&lt;/code&gt;，然后在面板重启VPS。&lt;/p&gt;
&lt;p&gt;使用debian用户和原来的密钥登陆VPS，即可正常使用。&lt;/p&gt;
&lt;h2&gt;结语&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2024/01/23/65af9713d46f0.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;如上图所示，稳定使用数月，每月仅需0.22欧（三台即0.66欧）即可拥有一台无限流量的欧洲VPS。&lt;/p&gt;
&lt;h2&gt;参考&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://hostloc.com/thread-1204279-1-1.html&quot;&gt;Scaleway IPv6 VPS 缩小硬盘到3G，实现 0.2欧/月&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>原神亚服Clash.Meta分流规则</title><link>https://yushum.com/posts/%E5%8E%9F%E7%A5%9E%E4%BA%9A%E6%9C%8Dclash-meta%E5%88%86%E6%B5%81%E8%A7%84%E5%88%99/</link><guid isPermaLink="true">https://yushum.com/posts/%E5%8E%9F%E7%A5%9E%E4%BA%9A%E6%9C%8Dclash-meta%E5%88%86%E6%B5%81%E8%A7%84%E5%88%99/</guid><pubDate>Sun, 21 Jan 2024 19:21:44 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;玩国际服游戏最发愁的就是网络问题，由于种种原因总会有丢包、高延迟的问题，而加速器的价格令我等已被消灭的贫民望而生畏，所以最好的选择是自建游戏加速，由于原版Clash的功能缺失&lt;s&gt;以及已删库&lt;/s&gt;，本人使用的客户端是Clash.Meta（mihomo）。&lt;/p&gt;
&lt;h2&gt;规则示例&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;proxy-groups:
  - name: &quot;PROXY&quot;
    type: select
    proxies:
      - 日常节点
  - name: &quot;原神&quot;
    type: select
    proxies:
      - 游戏节点
rule-providers:
  HoYoverse:
    type: http
    behavior: classical
    format: yaml
    path: ./Rules/HoYoverse.yaml 
    url: &quot;https://cdn.jsdelivr.net/gh/blackmatrix7/ios_rule_script@master/rule/Clash/HoYoverse/HoYoverse.yaml&quot;
    interval: 86400
rules:
  - AND,((DST-PORT,22101/22102),(NETWORK,udp)),原神 //用于游戏连接
  - AND,((DOMAIN,autopatchhk.yuanshen.com),(DST-PORT,443),(NETWORK,tcp)),PROXY //用于游戏更新
  - DOMAIN,osasiadispatch.yuanshen.com,PROXY //用于游戏启动
  - DOMAIN,osuspider.yuanshen.com,PROXY //用于游戏启动
  - RULE-SET,HoYoverse,PROXY //HoYoLAB必须PROXY
&lt;/code&gt;&lt;/pre&gt;
</content:encoded></item><item><title>Emby Premiere破解方法</title><link>https://yushum.com/posts/emby-premiere%E7%A0%B4%E8%A7%A3%E6%96%B9%E6%B3%95/</link><guid isPermaLink="true">https://yushum.com/posts/emby-premiere%E7%A0%B4%E8%A7%A3%E6%96%B9%E6%B3%95/</guid><pubDate>Thu, 18 Jan 2024 16:09:28 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;通过替换文件的方式破解Emby Premiere，可实现服务端Emby Premiere，具体功能可查看&lt;a href=&quot;https://emby.media/support/articles/Premiere-Feature-Matrix.html&quot;&gt;Emby Premiere Feature Matrix&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;使用方法&lt;/h2&gt;
&lt;p&gt;在&lt;code&gt;/opt/emby-server/system/&lt;/code&gt;目录替换&lt;code&gt;dll&lt;/code&gt;文件&lt;br /&gt;
在&lt;code&gt;/opt/emby-server/system/dashboard-ui/embypremiere/&lt;/code&gt;目录替换&lt;code&gt;embypremiere.js&lt;/code&gt;文件&lt;br /&gt;
在&lt;code&gt;/opt/emby-server/system/dashboard-ui/modules/emby-apiclient/&lt;/code&gt;目录替换&lt;code&gt;connectionmanager.js&lt;/code&gt;文件&lt;br /&gt;
重启emby-server后清理浏览器缓存或&lt;code&gt;CTRL+F5&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;注意&lt;/h2&gt;
&lt;p&gt;需要在&lt;code&gt;Emby Premiere 密钥&lt;/code&gt;中输入任意内容才能使用电视直播功能。&lt;/p&gt;
</content:encoded></item><item><title>BERO HOST 10欧/年IPv6 only VPS测评</title><link>https://yushum.com/posts/bero-host-10%E6%AC%A7-%E5%B9%B4ipv6-only-vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/bero-host-10%E6%AC%A7-%E5%B9%B4ipv6-only-vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Wed, 06 Dec 2023 09:27:17 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;BERO HOST的自有机房位于德国奥芬巴赫，IPv6 only VPS的去程回程之类IP相关的项目也没意义就不测了，简单跑下yabs和bench.sh吧，以下测试中的IPv4为WARP。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2023-11-30                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Mi 6. Dez 01:45:08 CET 2023

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 0 minutes
Processor  : AMD EPYC 7443P 24-Core Processor
CPU cores  : 2 @ 2844.656 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 3.8 GiB
Swap       : 1024.0 MiB
Disk       : 47.9 GiB
Distro     : Debian GNU/Linux 12 (bookworm)
Kernel     : 6.1.0-13-cloud-amd64
VM Type    : KVM
IPv4/IPv6  : ✔ Online / ✔ Online

IPv6 Network Information:
---------------------------------
ISP        : Oliver Horscht is trading as \&quot;SYNLINQ\&quot;
ASN        : AS44486 Oliver Horscht is trading as \&quot;SYNLINQ\&quot;
Host       : Rubv6
Location   : Frankfurt am Main, Hesse (HE)
Country    : Germany

fio Disk Speed Tests (Mixed R/W 50/50) (Partition /dev/sda3):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 227.40 MB/s  (56.8k) | 1.20 GB/s    (18.7k)
Write      | 228.00 MB/s  (57.0k) | 1.20 GB/s    (18.8k)
Total      | 455.40 MB/s (113.8k) | 2.40 GB/s    (37.6k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 1.57 GB/s     (3.0k) | 2.45 GB/s     (2.3k)
Write      | 1.65 GB/s     (3.2k) | 2.61 GB/s     (2.5k)
Total      | 3.22 GB/s     (6.3k) | 5.06 GB/s     (4.9k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 816 Mbits/sec   | 330 Mbits/sec   | 13.4 ms
Scaleway        | Paris, FR (10G)           | 862 Mbits/sec   | busy            | 11.9 ms
NovoServe       | North Holland, NL (40G)   | 856 Mbits/sec   | 431 Mbits/sec   | 7.87 ms
Uztelecom       | Tashkent, UZ (10G)        | 864 Mbits/sec   | 89.5 Mbits/sec  | 92.9 ms
Clouvider       | NYC, NY, US (10G)         | 824 Mbits/sec   | 350 Mbits/sec   | 90.1 ms
Clouvider       | Dallas, TX, US (10G)      | 638 Mbits/sec   | 256 Mbits/sec   | 115 ms
Clouvider       | Los Angeles, CA, US (10G) | 771 Mbits/sec   | 529 Mbits/sec   | 141 ms

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 902 Mbits/sec   | busy            | 13.3 ms
Scaleway        | Paris, FR (10G)           | busy            | busy            | 12.8 ms
NovoServe       | North Holland, NL (40G)   | 909 Mbits/sec   | 957 Mbits/sec   | 7.23 ms
Uztelecom       | Tashkent, UZ (10G)        | 809 Mbits/sec   | 40.0 Mbits/sec  | 92.9 ms
Clouvider       | NYC, NY, US (10G)         | 775 Mbits/sec   | 279 Mbits/sec   | 90.2 ms
Clouvider       | Dallas, TX, US (10G)      | busy            | busy            | 116 ms
Clouvider       | Los Angeles, CA, US (10G) | 687 Mbits/sec   | 99.7 Mbits/sec  | 141 ms

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 1200
Multi Core      | 2160
Full Test       | https://browser.geekbench.com/v5/cpu/22017908

Geekbench 6 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 1641
Multi Core      | 2766
Full Test       | https://browser.geekbench.com/v6/cpu/3867914

YABS completed in 18 min 18 sec
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2023-10-15
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : AMD EPYC 7443P 24-Core Processor
 CPU Cores          : 2 @ 2844.656 MHz
 CPU Cache          : 512 KB
 AES-NI             : ✓ Enabled
 VM-x/AMD-V         : ✓ Enabled
 Total Disk         : 48,9 GB (1,3 GB Used)
 Total Mem          : 3,8 GB (280,4 MB Used)
 Total Swap         : 1024,0 MB (0 Used)
 System uptime      : 0 days, 0 hour 26 min
 Load average       : 0.00, 0.16, 0.26
 OS                 : Debian GNU/Linux 12
 Arch               : x86_64 (64 Bit)
 Kernel             : 6.1.0-13-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 IPv4/IPv6          : ✓ Online / ✓ Online
 Organization       : AS13335 Cloudflare, Inc.
 Location           : Bielefeld / DE
 Region             : North Rhine-Westphalia
----------------------------------------------------------------------
 I/O Speed(1st run) : 791 MB/s
 I/O Speed(2nd run) : 810 MB/s
 I/O Speed(3rd run) : 739 MB/s
 I/O Speed(average) : 780,0 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    917.41 Mbps       268.16 Mbps         3.47 ms
 Los Angeles, US  474.53 Mbps       984.34 Mbps         170.01 ms
 Dallas, US       579.76 Mbps       972.42 Mbps         142.12 ms
 Paris, FR        920.82 Mbps       977.00 Mbps         10.74 ms
 Mumbai, IN       699.03 Mbps       784.99 Mbps         108.87 ms
 Tokyo, JP        352.78 Mbps       773.79 Mbps         225.81 ms
----------------------------------------------------------------------
 Finished in        : 4 min 24 sec
 Timestamp          : 2023-12-06 02:15:11 CET
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;德国机还是一如既往的高性价比。&lt;/p&gt;
</content:encoded></item><item><title>OVH美西希尔斯伯勒0.97刀/月VPS测评</title><link>https://yushum.com/posts/ovh%E7%BE%8E%E8%A5%BF%E5%B8%8C%E5%B0%94%E6%96%AF%E4%BC%AF%E5%8B%920-97%E5%88%80-%E6%9C%88vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/ovh%E7%BE%8E%E8%A5%BF%E5%B8%8C%E5%B0%94%E6%96%AF%E4%BC%AF%E5%8B%920-97%E5%88%80-%E6%9C%88vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Tue, 28 Nov 2023 10:33:31 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;这台VPS是2022年购买的，似乎溢价很高，跑个测试看看。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2023-11-24                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Tue Nov 28 09:20:17 AM CST 2023

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 2 minutes
Processor  : Intel Core Processor (Haswell, no TSX)
CPU cores  : 1 @ 2399.996 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 1.9 GiB
Swap       : 975.0 MiB
Disk       : 18.6 GiB
Distro     : Debian GNU/Linux 12 (bookworm)
Kernel     : 6.1.0-13-cloud-amd64
VM Type    : KVM
IPv4/IPv6  : ✔ Online / ✔ Online

IPv4 Network Information:
---------------------------------
ISP        : OVH SAS
ASN        : AS16276 OVH SAS
Host       : OVH US LLC
Location   : Hillsboro, Oregon (OR)
Country    : United States

fio Disk Speed Tests (Mixed R/W 50/50) (Partition /dev/sda1):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 16.02 MB/s    (4.0k) | 257.87 MB/s   (4.0k)
Write      | 16.04 MB/s    (4.0k) | 259.23 MB/s   (4.0k)
Total      | 32.06 MB/s    (8.0k) | 517.11 MB/s   (8.0k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 907.94 MB/s   (1.7k) | 833.84 MB/s    (814)
Write      | 956.18 MB/s   (1.8k) | 889.37 MB/s    (868)
Total      | 1.86 GB/s     (3.6k) | 1.72 GB/s     (1.6k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 88.5 Mbits/sec  | 43.9 Mbits/sec  | 140 ms
Scaleway        | Paris, FR (10G)           | busy            | 43.5 Mbits/sec  | 152 ms
NovoServe       | North Holland, NL (40G)   | 88.4 Mbits/sec  | 62.5 Mbits/sec  | 153 ms
Uztelecom       | Tashkent, UZ (10G)        | 80.3 Mbits/sec  | 18.1 Mbits/sec  | 241 ms
Clouvider       | NYC, NY, US (10G)         | 93.2 Mbits/sec  | 51.6 Mbits/sec  | 74.1 ms
Clouvider       | Dallas, TX, US (10G)      | 83.7 Mbits/sec  | 37.3 Mbits/sec  | 188 ms
Clouvider       | Los Angeles, CA, US (10G) | 97.4 Mbits/sec  | 82.5 Mbits/sec  | 22.1 ms

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 87.5 Mbits/sec  | 48.8 Mbits/sec  | 143 ms
Scaleway        | Paris, FR (10G)           | busy            | busy            | 156 ms
NovoServe       | North Holland, NL (40G)   | 86.5 Mbits/sec  | 55.5 Mbits/sec  | 154 ms
Uztelecom       | Tashkent, UZ (10G)        | 78.6 Mbits/sec  | 31.6 Mbits/sec  | 252 ms
Clouvider       | NYC, NY, US (10G)         | 92.6 Mbits/sec  | 73.4 Mbits/sec  | 71.0 ms
Clouvider       | Dallas, TX, US (10G)      | 93.4 Mbits/sec  | 64.8 Mbits/sec  | 57.9 ms
Clouvider       | Los Angeles, CA, US (10G) | 96.0 Mbits/sec  | 87.9 Mbits/sec  | 21.9 ms

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 468
Multi Core      | 495
Full Test       | https://browser.geekbench.com/v5/cpu/21991881

Geekbench 6 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 603
Multi Core      | 604
Full Test       | https://browser.geekbench.com/v6/cpu/3752184
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2023-10-15
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel Core Processor (Haswell, no TSX)
 CPU Cores          : 1 @ 2399.996 MHz
 CPU Cache          : 16384 KB
 AES-NI             : ✓ Enabled
 VM-x/AMD-V         : ✓ Enabled
 Total Disk         : 19.5 GB (995.5 MB Used)
 Total Mem          : 1.9 GB (165.3 MB Used)
 Total Swap         : 975.0 MB (1.0 MB Used)
 System uptime      : 0 days, 0 hour 30 min
 Load average       : 0.19, 0.55, 0.54
 OS                 : Debian GNU/Linux 12
 Arch               : x86_64 (64 Bit)
 Kernel             : 6.1.0-13-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 IPv4/IPv6          : ✓ Online / ✗ Offline
 Organization       : AS16276 OVH SAS
 Location           : Hillsboro / US
 Region             : Oregon
----------------------------------------------------------------------
 I/O Speed(1st run) : 488 MB/s
 I/O Speed(2nd run) : 690 MB/s
 I/O Speed(3rd run) : 618 MB/s
 I/O Speed(average) : 598.7 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    98.00 Mbps        98.02 Mbps          0.63 ms
 Los Angeles, US  97.89 Mbps        97.34 Mbps          26.32 ms
 Dallas, US       100.25 Mbps       98.93 Mbps          56.41 ms
 Montreal, CA     101.92 Mbps       98.78 Mbps          66.04 ms
 Paris, FR        101.45 Mbps       105.10 Mbps         162.76 ms
 Amsterdam, NL    98.57 Mbps        99.81 Mbps          144.89 ms
 Shanghai, CN     97.72 Mbps        102.45 Mbps         241.67 ms
 Chongqing, CN    11.09 Mbps        0.59 Mbps           190.45 ms
 Hongkong, CN     2.37 Mbps         0.11 Mbps           233.01 ms
 Mumbai, IN       93.00 Mbps        99.59 Mbps          255.04 ms
 Singapore, SG    95.35 Mbps        93.81 Mbps          262.35 ms
 Tokyo, JP        97.54 Mbps        100.69 Mbps         167.62 ms
----------------------------------------------------------------------
 Finished in        : 5 min 46 sec
 Timestamp          : 2023-11-28 09:54:19 CST
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;IP质量检测&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench Script By spiritlhl ---------------------
                   测评频道: https://t.me/vps_reviews
版本：2023.11.22
更新日志：IP质量测试，由频道 https://t.me/vps_reviews 原创
数据仅作参考，不代表100%准确，IP类型如果不一致请手动查询多个数据库比对
-----------------端口检测以及IP质量检测--本频道独创-------------------
以下为各数据库编号，输出结果后将自带数据库来源对应的编号
ipinfo数据库 ①  | scamalytics数据库 ②  | virustotal数据库 ③  | abuseipdb数据库 ④  | ip2location数据库   ⑤
ip-api数据库 ⑥  | ipwhois数据库     ⑦  | ipregistry数据库 ⑧  | ipdata数据库    ⑨  | ipgeolocation数据库 ⑩
IPV4 ASN : AS16276 OVH SAS
IPV4 位置: Hillsboro / Oregon / US
欺诈分数(越低越好): 69②
abuse得分(越低越好): 0④
IP类型:
  使用类型(usage_type):hosting①  Data Center/Web Hosting/Transit⑤  hosting⑧  business⑨
  公司类型(company_type):hosting①  hosting⑧
  云服务提供商(cloud_provider):  Yes⑧
  数据中心(datacenter):  Yes⑥   No⑨
  移动网络(mobile):  No⑥
  代理(proxy):  No① ② ⑥ ⑦ ⑧ ⑨ ⑩
  VPN(vpn):  No① ② ⑦ ⑧
  TOR(tor):  No① ② ⑦ ⑧ ⑨
  TOR出口(tor_exit):  No⑧
  搜索引擎机器人(search_engine_robot):②
  匿名代理(anonymous):  No⑦ ⑧ ⑨
  攻击方(attacker):  No⑧ ⑨
  滥用者(abuser):  No⑧ ⑨
  威胁(threat):  No⑧ ⑨
  iCloud中继(icloud_relay):  No① ⑧ ⑨
  未分配IP(bogon):  No⑧ ⑨
黑名单记录统计(有多少个黑名单网站有记录): 无害0 恶意0 可疑0 未检测88 ③
Google搜索可行性：YES
端口25检测:
  本地: No
  163邮箱: Yes
  gmail邮箱: Yes
  outlook邮箱: Yes
  yandex邮箱: Yes
  qq邮箱: Yes
------------------------------------------------------------------------
 总共花费        : 28 秒
 时间          : 2023-11-28 10:14:48
------------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;--------------------- A Bench Script By spiritlhl ----------------------
                   测评频道: https://t.me/vps_reviews
版本：2023.11.24
更新日志：VPS融合怪测试(集百家之长)
---------------------流媒体解锁--感谢sjlleo开源-------------------------
以下测试的解锁地区是准确的，但是不是完整解锁的判断可能有误，这方面仅作参考使用
----------------Youtube----------------
[IPv4]
连接方式: Youtube Video Server
视频缓存节点地域: IAD(IAD30S49)
Youtube识别地域: 无信息(null)
[IPv6]
连接方式: Google Global CacheCDN (ISP Cooperation)
ISP运营商: LILLIXFR
视频缓存节点地域: 法国 里尔(LIL1)
Youtube识别地域: 无信息(null)
----------------Netflix----------------
[IPv4]
Netflix在您的出口IP所在的国家不提供服务
[IPv6]
Netflix在您的出口IP所在的国家不提供服务
---------------DisneyPlus---------------
[IPv4]
当前IPv4出口解锁DisneyPlus
区域：美国区
[IPv6]
当前IPv6出口解锁DisneyPlus
区域：美国区
解锁Youtube，Netflix，DisneyPlus上面和下面进行比较，不同之处自行判断
----------------流媒体解锁--感谢RegionRestrictionCheck开源--------------
 以下为IPV4网络测试，若无IPV4网络则无输出
============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               No
 Netflix:                               No
 YouTube Premium:                       Yes
 Amazon Prime Video:                    Yes (Region: US)
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   US
 Viu.com:                               No
 YouTube CDN:                           Washington DC
 Netflix Preferred CDN:                 Failed
 Spotify Registration:                  No
 Steam Currency:                        USD
 ChatGPT:                               Yes
 Bing Region:                           US
=======================================
 以下为IPV6网络测试，若无IPV6网络则无输出
============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               No
 Disney+:                               Yes (Region: US)
 Netflix:                               No
 YouTube Premium:                       Yes
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           LILLIXFR in Lille
 Netflix Preferred CDN:                 Failed
 Spotify Registration:                  No
 Steam Currency:                        Failed (Network Connection)
 ChatGPT:                               Yes
 Bing Region:                           US
=======================================
---------------TikTok解锁--感谢lmc999的源脚本及fscarmen PR--------------
 Tiktok Region:         【US】
------------------------------------------------------------------------
 总共花费      : 18 秒
 时间          : Tue Nov 28 10:31:36 CST 2023
------------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/11/28/65654cb690044.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/11/28/65654cb70675b.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/11/28/65654cb72f9f7.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.pek-4837.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   15.204.56.1     AS16276                   美国 俄勒冈州 波特兰  ovhcloud.com
                                              0.24 ms / 0.31 ms / 0.32 ms
2   192.168.250.254 *                         RFC1918
                                              0.28 ms / 0.31 ms / 0.23 ms
3   10.142.85.126   *                         RFC1918
                                              0.54 ms / 0.50 ms / 0.51 ms
4   10.142.64.60    *                         RFC1918
                                              0.44 ms / 0.55 ms / 0.64 ms
5   10.142.64.10    *                         RFC1918
                                              0.67 ms / 0.71 ms / 0.72 ms
6   10.244.72.124   *                         RFC1918
                                              0.51 ms / 0.38 ms / 0.38 ms
7   10.244.120.68   *                         RFC1918
                                              2.83 ms / 1.83 ms / 3.29 ms
8   142.44.208.228  AS16276  [HO-2]           美国 俄勒冈州 波特兰  ovhcloud.com
    be102.pdx-prt1-sbb1-8k.oregon.us          3.08 ms / * ms / * ms
9   142.44.208.160  AS16276  [HO-2]           美国 伊利诺伊州 芝加哥  ovhcloud.com
    be105.chi-ch2-sbb2-8k.il.us               51.79 ms / * ms / * ms
10  192.99.146.140  AS16276  [OVH-ARIN]       加拿大 魁北克省 博阿努瓦  ovhcloud.com
    be103.bhs-g2-nc5.qc.ca                    117.50 ms / 65.32 ms / 65.07 ms
11  192.99.146.139  AS16276  [OVH-ARIN]       美国 纽约州 纽约  ovhcloud.com
    nyc-ny1-sbb2-8k.nj.us                     172.22 ms / 171.46 ms / * ms
12  192.99.146.132  AS16276  [OVH-ARIN]       英国 英格兰 伦敦  ovhcloud.com
    be104.lon-drch-sbb1-nc5.uk.eu             140.80 ms / 140.93 ms / 141.17 ms
13  10.200.0.141    *                         RFC1918
                                              139.90 ms / 140.23 ms / 139.71 ms
14  195.66.225.4    AS702    [LINX-PEER]      英国 英格兰 伦敦 LINX LON1 - Verizon - EMEA - 40Gbps verizon.com
    ge2-1-0.br1.lnd18.alter.net               136.10 ms / 136.31 ms / 136.11 ms
15  140.222.236.59  *        [NSFNET-T3]      德国 黑森州 美因河畔法兰克福
    0.et-10-0-2.GW3.FFT3.ALTER.NET            154.18 ms / 154.09 ms / 154.02 ms
16  *
17  219.158.15.157  AS4837   [CU169-BACKBONE] 中国 北京市   chinaunicom.cn  联通
                                              276.97 ms / 271.95 ms / 275.05 ms
18  219.158.3.145   AS4837   [CU169-BACKBONE] 中国 北京市   chinaunicom.cn  联通
                                              295.11 ms / 298.41 ms / 293.30 ms
19  219.158.18.69   AS4837   [CU169-BACKBONE] 中国 北京市   chinaunicom.cn  联通
                                              270.58 ms / * ms / * ms
20  *
21  61.51.169.178   AS4808                    中国 北京市   chinaunicom.cn  联通
                                              302.57 ms / 302.44 ms / 302.25 ms
22  *
23  *
24  *
25  123.125.96.156  AS4808   [UNICOM-BJ]      中国 北京市   chinaunicom.cn  联通
                                              272.32 ms / 272.25 ms / 272.29 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.pek-4134.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   15.204.56.1     AS16276                   美国 俄勒冈州 波特兰  ovhcloud.com
                                              0.41 ms / 0.30 ms / 0.26 ms
2   192.168.250.254 *                         RFC1918
                                              0.30 ms / 0.26 ms / 1.15 ms
3   10.142.85.126   *                         RFC1918
                                              0.41 ms / 0.40 ms / 0.53 ms
4   10.142.64.58    *                         RFC1918
                                              0.39 ms / 0.35 ms / 0.37 ms
5   10.142.64.4     *                         RFC1918
                                              0.72 ms / 0.54 ms / 0.51 ms
6   10.244.72.110   *                         RFC1918
                                              0.35 ms / 0.40 ms / 0.37 ms
7   10.244.120.66   *                         RFC1918
                                              2.47 ms / 1.80 ms / 3.20 ms
8   142.44.208.226  AS16276  [HO-2]           美国 俄勒冈州 波特兰  ovhcloud.com
    be102.pdx-pdx02-sbb1-8k.oregon.us         3.75 ms / 2.71 ms / 4.05 ms
9   10.200.1.7      *                         RFC1918
                                              1.03 ms / 0.97 ms / 1.00 ms
10  4.17.253.133    AS3356                    美国 俄勒冈州 波特兰  level3.com
                                              64.83 ms / 64.72 ms / 85.79 ms
11  *
12  4.15.125.54     AS3356                    美国 加利福尼亚州 圣何塞 Level3-CT-Peer level3.com
                                              * ms / * ms / 539.03 ms
13  *
14  202.97.85.45    AS4134   [CHINANET-BB]    中国 北京市   chinatelecom.com.cn  电信
                                              678.36 ms / 661.07 ms / * ms
15  202.97.53.113   AS4134   [CHINANET-BB]    中国 北京市   chinatelecom.com.cn  电信
                                              678.31 ms / * ms / * ms
16  *
17  *
18  36.110.6.153    AS4847                    中国 北京市  西城区 chinatelecom.cn  电信
                                              422.27 ms / 391.64 ms / 350.08 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.pek-9808.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   15.204.56.1     AS16276                   美国 俄勒冈州 波特兰  ovhcloud.com
                                              0.26 ms / 0.29 ms / 0.23 ms
2   192.168.250.254 *                         RFC1918
                                              0.23 ms / 0.34 ms / 0.83 ms
3   10.142.85.126   *                         RFC1918
                                              0.47 ms / 0.41 ms / 0.35 ms
4   10.142.64.60    *                         RFC1918
                                              0.45 ms / 0.40 ms / 0.33 ms
5   10.142.64.10    *                         RFC1918
                                              0.71 ms / 0.70 ms / 0.61 ms
6   10.244.72.124   *                         RFC1918
                                              0.35 ms / 0.36 ms / 0.44 ms
7   10.244.120.68   *                         RFC1918
                                              3.13 ms / 4.05 ms / 2.88 ms
8   142.44.208.228  AS16276  [HO-2]           美国 俄勒冈州 波特兰  ovhcloud.com
    be102.pdx-prt1-sbb1-8k.oregon.us          104.70 ms / 104.21 ms / * ms
9   142.44.208.225  AS16276  [HO-2]           美国 俄勒冈州 波特兰  ovhcloud.com
    be10.pdx-pdx02-sbb1-8k.oregon.us          1.49 ms / 3.42 ms / 2.84 ms
10  *
11  10.200.3.193    *                         RFC1918
                                              17.34 ms / 118.91 ms / * ms
12  206.223.116.118 AS58453  [EQUINIX-IX]     美国 加利福尼亚州 圣何塞 Equinix San Jose - China Mobile International - 30Gbps cmi.chinamobile.com
    eqix-ix-sv1.chinamobile.com               71.74 ms / 71.74 ms / 71.60 ms
13  223.120.6.225   AS58453  [CMI-INT]        美国 加利福尼亚州 圣何塞  cmi.chinamobile.com  移动
                                              83.59 ms / 83.63 ms / 83.90 ms
14  223.120.12.34   AS58453  [CMI-INT]        中国 北京市   cmi.chinamobile.com  移动
                                              244.36 ms / 244.19 ms / 244.18 ms
15  221.183.55.110  AS9808   [CMNET]          中国 北京市  回国到达层 chinamobile.com  移动
                                              245.93 ms / 245.59 ms / 245.62 ms
16  221.183.25.201  AS9808   [CMNET]          中国 北京市   chinamobile.com  移动
                                              247.13 ms / 247.08 ms / 247.07 ms
17  221.183.89.122  AS9808   [CMNET]          中国 北京市   chinamobile.com  移动
                                              244.99 ms / 244.98 ms / 244.98 ms
18  *
19  211.136.66.129  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              248.98 ms / 249.06 ms / 249.08 ms
20  211.136.67.166  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              252.39 ms / 252.44 ms / 252.40 ms
21  211.136.95.226  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              250.68 ms / 250.34 ms / 250.22 ms
22  *
23  *
24  211.136.25.153  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              307.89 ms / 307.91 ms / 309.18 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.sha-4837.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   15.204.56.1     AS16276                   美国 俄勒冈州 波特兰  ovhcloud.com
                                              0.28 ms / 0.24 ms / 0.36 ms
2   192.168.250.254 *                         RFC1918
                                              0.23 ms / 0.32 ms / 0.22 ms
3   10.142.85.126   *                         RFC1918
                                              0.45 ms / 0.42 ms / 0.55 ms
4   10.142.64.58    *                         RFC1918
                                              0.50 ms / 0.42 ms / 0.60 ms
5   10.142.64.4     *                         RFC1918
                                              0.78 ms / 0.72 ms / 0.85 ms
6   10.244.72.112   *                         RFC1918
                                              0.40 ms / 0.39 ms / 0.42 ms
7   10.244.120.66   *                         RFC1918
                                              2.84 ms / 1.67 ms / 2.67 ms
8   142.44.208.226  AS16276  [HO-2]           美国 俄勒冈州 波特兰  ovhcloud.com
                                              2.94 ms / 2.13 ms / 3.02 ms
9   10.200.1.3      *                         RFC1918
                                              7.03 ms / 6.61 ms / 5.58 ms
10  206.81.80.232   AS1239   [SEATTLEIX-V4]   美国 华盛顿州 西雅图 SIX Seattle - Sprint - 100Gbps sprint.net
                                              4.50 ms / 8.90 ms / 4.69 ms
11  144.232.8.159   AS1239   [SPRINT-INNET9]  美国 华盛顿州 塔科马  sprint.net
    sl-crs1-tac-be16.sprintlink.net           12.18 ms / 15.75 ms / 11.25 ms
12  144.232.15.88   AS1239   [SPRINT-INNET9]  美国 加利福尼亚州 奥罗维尔  sprint.net
    sl-crs1-oro-be1.sprintlink.net            28.32 ms / 23.39 ms / 26.19 ms
13  144.232.15.237  AS1239   [SPRINT-INNET9]  瑞典 斯德哥尔摩省 斯德哥尔摩  sprint.net
    sl-crs1-stk-be2.sprintlink.net            24.25 ms / 27.39 ms / 22.57 ms
14  144.232.22.176  AS1239   [SPRINT-INNET9]  美国 加利福尼亚州 圣何塞  sprint.net
    sl-crs1-sj-be3.sprintlink.net             26.77 ms / 22.43 ms / 25.39 ms
15  144.232.2.100   AS1239   [SPRINT-INNET9]  美国 加利福尼亚州 圣何塞  sprint.net
    sl-mst50-sj2-ae22-0.sprintlink.net        22.87 ms / 22.02 ms / 21.97 ms
16  144.223.242.30  AS1239   [SPRINT-INNET]   美国 加利福尼亚州 帕洛阿尔托 / 圣何塞  sprint.net
    sl-china17-604705-0.sprintlink.net        224.93 ms / 224.26 ms / 224.02 ms
17  219.158.116.233 AS4837   [CU169-BACKBONE] 中国 上海市   chinaunicom.cn  联通
                                              251.92 ms / 254.92 ms / 258.21 ms
18  219.158.19.86   AS4837   [CU169-BACKBONE] 中国 上海市   chinaunicom.cn  联通
                                              256.44 ms / 260.10 ms / 263.50 ms
19  219.158.19.81   AS4837   [CU169-BACKBONE] 中国 上海市   chinaunicom.cn  联通
                                              267.64 ms / 268.05 ms / 267.81 ms
20  *
21  139.226.4.1     AS17621  [UNICOM-SH]      中国 上海市  黄浦区 chinaunicom.cn  联通
                                              292.11 ms / 291.92 ms / 292.59 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.sha-4134.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   15.204.56.1     AS16276                   美国 俄勒冈州 波特兰  ovhcloud.com
                                              0.28 ms / 0.25 ms / 0.22 ms
2   192.168.250.254 *                         RFC1918
                                              0.35 ms / 0.27 ms / 2.16 ms
3   10.142.85.126   *                         RFC1918
                                              0.35 ms / 0.48 ms / 0.37 ms
4   10.142.64.58    *                         RFC1918
                                              0.42 ms / 0.43 ms / 0.51 ms
5   10.142.64.4     *                         RFC1918
                                              0.78 ms / 0.51 ms / 0.69 ms
6   10.244.72.118   *                         RFC1918
                                              0.40 ms / 0.38 ms / 0.42 ms
7   10.244.120.68   *                         RFC1918
                                              2.99 ms / 1.56 ms / 3.15 ms
8   *
9   10.200.1.5      *                         RFC1918
                                              0.96 ms / 1.00 ms / 1.03 ms
10  *
11  62.115.142.88   AS1299   [ARELION-NET]    美国 俄勒冈州 波特兰  arelion.com
    port-b3-link.ip.twelve99.net              0.99 ms / 0.95 ms / 1.01 ms
12  62.115.115.24   AS1299   [ARELION-NET]    美国 加利福尼亚州 帕洛阿托  arelion.com
    palo-b24-link.ip.twelve99.net             15.78 ms / 18.20 ms / 15.84 ms
    [MPLS: Lbl 416020, TC 0, S 1, TTL 1]
13  62.115.115.217  AS1299   [ARELION-NET]    美国 加利福尼亚州 圣何塞  arelion.com
    sjo-b23-link.ip.twelve99.net              16.80 ms / 16.73 ms / 16.79 ms
14  218.30.54.181   AS4134   [CHINANET-US]    美国 加利福尼亚州 圣何塞 Cogent/Telia-CT-PoP chinatelecom.com.cn  电信
                                              18.82 ms / 17.19 ms / 18.58 ms
15  *
16  *
17  *
18  61.152.26.45    AS4812   [CHINANET-SH]    中国 上海市   chinatelecom.cn  电信
                                              * ms / 160.42 ms / * ms
19  101.95.41.162   AS4812   [CHINANET-SH]    中国 上海市   chinatelecom.cn  电信
                                              165.18 ms / 164.42 ms / 163.63 ms
20  202.101.21.178  AS4812   [CHINANET-SH]    中国 上海市  浦东新区 chinatelecom.cn  电信
                                              162.41 ms / 167.17 ms / 162.92 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.sha-9808.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   15.204.56.1     AS16276                   美国 俄勒冈州 波特兰  ovhcloud.com
                                              0.20 ms / 0.25 ms / 0.24 ms
2   192.168.250.254 *                         RFC1918
                                              0.27 ms / 0.30 ms / 0.25 ms
3   10.142.85.126   *                         RFC1918
                                              0.48 ms / 0.37 ms / 0.58 ms
4   10.142.64.58    *                         RFC1918
                                              0.62 ms / 0.45 ms / 0.40 ms
5   10.142.64.6     *                         RFC1918
                                              0.66 ms / 0.62 ms / 1.23 ms
6   10.244.72.114   *                         RFC1918
                                              0.42 ms / 0.52 ms / 0.98 ms
7   10.244.120.66   *                         RFC1918
                                              2.73 ms / 1.91 ms / 2.36 ms
8   142.44.208.226  AS16276  [HO-2]           美国 俄勒冈州 波特兰  ovhcloud.com
                                              4.07 ms / 3.23 ms / 2.09 ms
9   *
10  10.200.3.193    *                         RFC1918
                                              18.30 ms / 17.76 ms / 17.40 ms
11  206.223.116.118 AS58453  [EQUINIX-IX]     美国 加利福尼亚州 圣何塞 Equinix San Jose - China Mobile International - 30Gbps cmi.chinamobile.com
                                              73.43 ms / 71.61 ms / 71.67 ms
12  223.120.6.69    AS58453  [CMI-INT]        美国 加利福尼亚州 圣何塞  cmi.chinamobile.com  移动
                                              74.00 ms / 74.21 ms / 74.45 ms
13  223.120.12.142  AS58453  [CMI-INT]        中国 上海市   cmi.chinamobile.com  移动
                                              303.45 ms / 303.64 ms / 303.55 ms
14  221.183.89.174  AS9808   [CMNET]          中国 上海市  回国到达层 chinamobile.com  移动
                                              283.01 ms / 282.63 ms / 282.67 ms
15  221.183.89.69   AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              280.28 ms / 280.35 ms / * ms
16  221.183.89.50   AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              286.28 ms / 387.01 ms / * ms
17  221.183.39.138  AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              385.16 ms / * ms / * ms
18  120.204.34.85   AS24400  [APNIC-AP]       中国 上海市   chinamobile.com  移动
                                              283.01 ms / 282.99 ms / 283.07 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.can-4837.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   15.204.56.1     AS16276                   美国 俄勒冈州 波特兰  ovhcloud.com
                                              0.19 ms / 0.22 ms / 0.35 ms
2   192.168.250.254 *                         RFC1918
                                              0.27 ms / 0.28 ms / 0.25 ms
3   10.142.85.126   *                         RFC1918
                                              0.39 ms / 0.45 ms / 0.45 ms
4   10.142.64.60    *                         RFC1918
                                              0.49 ms / 0.46 ms / 0.39 ms
5   10.142.64.10    *                         RFC1918
                                              0.86 ms / 0.66 ms / 0.81 ms
6   10.244.72.122   *                         RFC1918
                                              0.48 ms / 0.37 ms / 0.40 ms
7   10.244.120.68   *                         RFC1918
                                              4.32 ms / 3.39 ms / 4.76 ms
8   142.44.208.228  AS16276  [HO-2]           美国 俄勒冈州 波特兰  ovhcloud.com
                                              205.45 ms / * ms / * ms
9   10.200.1.1      *                         RFC1918
                                              5.98 ms / 5.57 ms / 6.28 ms
10  206.81.80.232   AS1239   [SEATTLEIX-V4]   美国 华盛顿州 西雅图 SIX Seattle - Sprint - 100Gbps sprint.net
                                              6.97 ms / 4.38 ms / 5.60 ms
11  144.232.8.155   AS1239   [SPRINT-INNET9]  美国 华盛顿州 塔科马  sprint.net
                                              10.41 ms / 6.06 ms / 9.11 ms
12  144.232.15.90   AS1239   [SPRINT-INNET9]  美国 加利福尼亚州 奥罗维尔  sprint.net
                                              20.93 ms / 24.64 ms / 19.91 ms
13  144.232.15.239  AS1239   [SPRINT-INNET9]  瑞典 斯德哥尔摩省 斯德哥尔摩  sprint.net
                                              19.58 ms / 23.69 ms / 27.01 ms
14  144.232.22.178  AS1239   [SPRINT-INNET9]  美国 加利福尼亚州 圣何塞  sprint.net
                                              25.23 ms / 20.53 ms / 23.84 ms
15  144.232.2.102   AS1239   [SPRINT-INNET9]  美国 加利福尼亚州 圣何塞  sprint.net
                                              19.48 ms / 19.18 ms / 20.48 ms
16  144.223.242.26  AS1239   [SPRINT-INNET]   美国 加利福尼亚州 帕洛阿尔托 / 圣何塞  sprint.net
                                              276.16 ms / 276.42 ms / 276.26 ms
17  219.158.116.237 AS4837   [CU169-BACKBONE] 中国 上海市   chinaunicom.cn  联通
                                              268.67 ms / 271.98 ms / 266.97 ms
18  219.158.8.181   AS4837   [CU169-BACKBONE] 中国 上海市   chinaunicom.cn  联通
                                              249.59 ms / 244.82 ms / 247.85 ms
19  *
20  219.158.100.202 AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              266.07 ms / 266.33 ms / * ms
21  112.97.0.94     AS17816  [APNIC-AP]       中国 广东省 广州市  chinaunicom.cn  联通
                                              243.84 ms / 245.38 ms / 244.40 ms
22  221.4.4.74      AS17816  [UNICOM-GD]      中国 广东省 广州市  chinaunicom.cn  联通
                                              242.86 ms / 246.67 ms / 242.20 ms
23  221.4.1.77      AS17816  [UNICOM-GD]      中国 广东省 广州市  chinaunicom.cn  联通
                                              258.95 ms / 252.76 ms / 254.01 ms
24  58.254.255.1    AS17816                   中国 广东省 广州市 黄埔区 chinaunicom.cn  联通
                                              261.94 ms / 262.00 ms / 261.97 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.can-4134.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   15.204.56.1     AS16276                   美国 俄勒冈州 波特兰  ovhcloud.com
                                              0.22 ms / 0.26 ms / 0.18 ms
2   192.168.250.254 *                         RFC1918
                                              0.30 ms / 0.26 ms / 0.36 ms
3   10.142.85.126   *                         RFC1918
                                              0.39 ms / 0.43 ms / 0.31 ms
4   10.142.64.60    *                         RFC1918
                                              0.50 ms / 0.49 ms / 0.41 ms
5   10.142.64.10    *                         RFC1918
                                              0.86 ms / 0.61 ms / 0.83 ms
6   10.244.72.124   *                         RFC1918
                                              0.51 ms / 0.32 ms / 0.34 ms
7   10.244.120.68   *                         RFC1918
                                              2.12 ms / 3.21 ms / 2.30 ms
8   142.44.208.228  AS16276  [HO-2]           美国 俄勒冈州 波特兰  ovhcloud.com
    be102.pdx-prt1-sbb1-8k.oregon.us          2.24 ms / * ms / * ms
9   142.44.208.160  AS16276  [HO-2]           美国 伊利诺伊州 芝加哥  ovhcloud.com
    be105.chi-ch2-sbb2-8k.il.us               * ms / 52.05 ms / 51.96 ms
10  192.99.146.140  AS16276  [OVH-ARIN]       加拿大 魁北克省 博阿努瓦  ovhcloud.com
                                              67.17 ms / 66.82 ms / 66.99 ms
11  192.99.146.139  AS16276  [OVH-ARIN]       美国 纽约州 纽约  ovhcloud.com
                                              174.54 ms / 175.52 ms / * ms
12  192.99.146.132  AS16276  [OVH-ARIN]       英国 英格兰 伦敦  ovhcloud.com
                                              145.28 ms / 145.36 ms / 145.44 ms
13  10.200.0.141    *                         RFC1918
                                              144.30 ms / 144.74 ms / 144.42 ms
14  195.66.225.54   AS4134   [LINX-PEER]      英国 英格兰 伦敦 LINX LON1 - China Telecom - 100Gbps chinatelecom.com.cn
                                              204.55 ms / 323.39 ms / * ms
15  202.97.70.38    AS4134   [CHINANET-BB]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              286.29 ms / 280.74 ms / 286.13 ms
16  202.97.12.6     AS4134   [CHINANET-BB]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              425.40 ms / 413.17 ms / * ms
17  202.97.82.65    AS4134   [CHINANET-BB]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              529.79 ms / * ms / * ms
18  113.96.4.222    AS4134   [CHINANET-GD]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              * ms / * ms / 541.88 ms
19  121.14.50.82    AS4134   [CHINANET-GD]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              326.30 ms / 316.37 ms / 306.74 ms
20  125.88.170.62   AS4134   [CHINANET-GD]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              326.48 ms / 337.24 ms / 320.16 ms
21  14.116.225.60   AS4134                    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              332.19 ms / 332.25 ms / 331.52 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.can-9808.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   15.204.56.1     AS16276                   美国 俄勒冈州 波特兰  ovhcloud.com
                                              0.23 ms / 0.26 ms / 0.23 ms
2   192.168.250.254 *                         RFC1918
                                              0.24 ms / 0.31 ms / 0.25 ms
3   10.142.85.126   *                         RFC1918
                                              0.53 ms / 0.59 ms / 0.48 ms
4   10.142.64.60    *                         RFC1918
                                              0.52 ms / 0.55 ms / 0.40 ms
5   10.142.64.8     *                         RFC1918
                                              0.58 ms / 0.59 ms / 0.60 ms
6   10.244.72.110   *                         RFC1918
                                              0.35 ms / 0.34 ms / 0.34 ms
7   10.244.120.66   *                         RFC1918
                                              2.30 ms / 2.79 ms / 2.40 ms
8   142.44.208.226  AS16276  [HO-2]           美国 俄勒冈州 波特兰  ovhcloud.com
                                              3.88 ms / 3.36 ms / 2.66 ms
9   *
10  10.200.3.193    *                         RFC1918
                                              18.04 ms / 18.03 ms / 17.11 ms
11  206.223.116.118 AS58453  [EQUINIX-IX]     美国 加利福尼亚州 圣何塞 Equinix San Jose - China Mobile International - 30Gbps cmi.chinamobile.com
                                              71.80 ms / 71.85 ms / 71.72 ms
12  223.120.6.69    AS58453  [CMI-INT]        美国 加利福尼亚州 圣何塞  cmi.chinamobile.com  移动
                                              74.14 ms / 74.51 ms / 74.21 ms
13  223.120.13.222  AS58453  [CMI-INT]        中国 广东省 广州市  cmi.chinamobile.com  移动
                                              274.47 ms / 277.88 ms / 274.38 ms
14  221.183.55.58   AS9808   [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              266.74 ms / 266.46 ms / 266.43 ms
15  221.183.92.21   AS9808   [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              264.96 ms / 265.10 ms / 265.14 ms
16  *
17  *
18  120.198.205.86  AS56040  [APNIC-AP]       中国 广东省 广州市  chinamobile.com  移动
                                              268.98 ms / 269.36 ms / 269.69 ms
19  183.235.226.122 AS56040  [APNIC-AP]       中国 广东省 广州市  chinamobile.com  移动
                                              268.94 ms / 268.76 ms / 268.67 ms
20  183.235.228.58  AS56040  [APNIC-AP]       中国 广东省 广州市  chinamobile.com  移动
                                              273.23 ms / 273.48 ms / 273.28 ms
21  183.235.228.26  AS56040  [APNIC-AP]       中国 广东省 广州市  chinamobile.com  移动
                                              276.86 ms / 276.97 ms / 276.94 ms
22  120.198.26.254  AS56040  [APNIC-AP]       中国 广东省 广州市  chinamobile.com  移动
                                              280.59 ms / 280.52 ms / 280.38 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;各方面都很一般，优点是抗D和无限流量，可以随便折腾。&lt;/p&gt;
</content:encoded></item><item><title>Naranja.tech黑五18刀/年荷兰德龙滕VPS测评</title><link>https://yushum.com/posts/naranja-tech%E9%BB%91%E4%BA%9418%E5%88%80-%E5%B9%B4%E8%8D%B7%E5%85%B0%E5%BE%B7%E9%BE%99%E6%BB%95vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/naranja-tech%E9%BB%91%E4%BA%9418%E5%88%80-%E5%B9%B4%E8%8D%B7%E5%85%B0%E5%BE%B7%E9%BE%99%E6%BB%95vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Fri, 24 Nov 2023 13:18:05 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;Naranja也是老商家了，每年黑五都是这个价格，今年更换了新的CPU，测试一下性能如何。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2023-09-06                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Thu Nov 23 10:54:50 PM EST 2023

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 8 minutes
Processor  : AMD EPYC 9554P 64-Core Processor
CPU cores  : 1 @ 3099.998 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 1.9 GiB
Swap       : 0.0 KiB
Disk       : 49.1 GiB
Distro     : Debian GNU/Linux 12 (bookworm)
Kernel     : 6.1.0-13-cloud-amd64
VM Type    : KVM
IPv4/IPv6  : ✔ Online / ✔ Online

IPv6 Network Information:
---------------------------------
ISP        : NextGenWebs, S.L.
ASN        : AS41608 NextGenWebs, S.L.
Host       : NextGenWebs, S.L.
Location   : Amsterdam, North Holland (NH)
Country    : Netherlands

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 393.09 MB/s  (98.2k) | 4.22 GB/s    (66.0k)
Write      | 394.12 MB/s  (98.5k) | 4.24 GB/s    (66.3k)
Total      | 787.21 MB/s (196.8k) | 8.47 GB/s   (132.3k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 13.89 GB/s   (27.1k) | 10.97 GB/s   (10.7k)
Write      | 14.63 GB/s   (28.5k) | 11.70 GB/s   (11.4k)
Total      | 28.53 GB/s   (55.7k) | 22.67 GB/s   (22.1k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 2.48 Gbits/sec  | 2.33 Gbits/sec  | 7.67 ms
Scaleway        | Paris, FR (10G)           | busy            | busy            | 10.5 ms
NovoServe       | North Holland, NL (40G)   | 2.50 Gbits/sec  | 2.32 Gbits/sec  | --
Uztelecom       | Tashkent, UZ (10G)        | 1.59 Gbits/sec  | 601 Mbits/sec   | 89.0 ms
Clouvider       | NYC, NY, US (10G)         | 2.01 Gbits/sec  | 736 Mbits/sec   | 76.3 ms
Clouvider       | Dallas, TX, US (10G)      | 319 Mbits/sec   | 143 Mbits/sec   | 132 ms
Clouvider       | Los Angeles, CA, US (10G) | busy            | 647 Mbits/sec   | 154 ms

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 2.48 Gbits/sec  | 2.20 Gbits/sec  | 7.68 ms
Scaleway        | Paris, FR (10G)           | 2.48 Gbits/sec  | 1.32 Gbits/sec  | 12.2 ms
NovoServe       | North Holland, NL (40G)   | 2.37 Gbits/sec  | 2.11 Gbits/sec  | 2.21 ms
Uztelecom       | Tashkent, UZ (10G)        | 1.57 Gbits/sec  | 1.89 Gbits/sec  | 87.6 ms
Clouvider       | NYC, NY, US (10G)         | 2.01 Gbits/sec  | 232 Mbits/sec   | 76.3 ms
Clouvider       | Dallas, TX, US (10G)      | 1.37 Gbits/sec  | 563 Mbits/sec   | 120 ms
Clouvider       | Los Angeles, CA, US (10G) | 986 Mbits/sec   | 73.7 Mbits/sec  | 154 ms

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 1540
Multi Core      | 1549
Full Test       | https://browser.geekbench.com/v5/cpu/21978129

Geekbench 6 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 2092
Multi Core      | 2051
Full Test       | https://browser.geekbench.com/v6/cpu/3685472
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2023-10-15
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : AMD EPYC 9554P 64-Core Processor
 CPU Cores          : 1 @ 3099.998 MHz
 CPU Cache          : 1024 KB
 AES-NI             : ✓ Enabled
 VM-x/AMD-V         : ✓ Enabled
 Total Disk         : 49.1 GB (999.0 MB Used)
 Total Mem          : 1.9 GB (205.5 MB Used)
 System uptime      : 0 days, 0 hour 35 min
 Load average       : 0.00, 0.07, 0.11
 OS                 : Debian GNU/Linux 12
 Arch               : x86_64 (64 Bit)
 Kernel             : 6.1.0-13-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 IPv4/IPv6          : ✓ Online / ✓ Online
 Organization       : AS41608 NextGenWebs, S.L.
 Location           : Dronten / NL
 Region             : Flevoland
----------------------------------------------------------------------
 I/O Speed(1st run) : 2.0 GB/s
 I/O Speed(2nd run) : 2.0 GB/s
 I/O Speed(3rd run) : 2.0 GB/s
 I/O Speed(average) : 2048.0 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    1764.91 Mbps      2229.51 Mbps        26.21 ms
 Los Angeles, US  578.56 Mbps       1628.40 Mbps        138.63 ms
 Dallas, US       745.44 Mbps       1636.60 Mbps        110.53 ms
 Montreal, CA     569.59 Mbps       877.88 Mbps         81.96 ms
 Paris, FR        2417.75 Mbps      2329.68 Mbps        13.29 ms
 Amsterdam, NL    2491.94 Mbps      2352.22 Mbps        2.70 ms
 Shanghai, CN     489.90 Mbps       1546.49 Mbps        160.92 ms
 Chongqing, CN    0.46 Mbps         0.46 Mbps           259.13 ms
 Mumbai, IN       692.16 Mbps       2336.53 Mbps        123.42 ms
 Singapore, SG    195.75 Mbps       1745.45 Mbps        328.12 ms
 Tokyo, JP        359.38 Mbps       1900.14 Mbps        220.16 ms
----------------------------------------------------------------------
 Finished in        : 5 min 4 sec
 Timestamp          : 2023-11-23 23:26:29 EST
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;IP质量检测&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench Script By spiritlhl ---------------------
                   测评频道: https://t.me/vps_reviews
版本：2023.11.22
更新日志：IP质量测试，由频道 https://t.me/vps_reviews 原创
数据仅作参考，不代表100%准确，IP类型如果不一致请手动查询多个数据库比对
-----------------端口检测以及IP质量检测--本频道独创-------------------
以下为各数据库编号，输出结果后将自带数据库来源对应的编号
ipinfo数据库 ①  | scamalytics数据库 ②  | virustotal数据库 ③  | abuseipdb数据库 ④  | ip2location数据库   ⑤
ip-api数据库 ⑥  | ipwhois数据库     ⑦  | ipregistry数据库 ⑧  | ipdata数据库    ⑨  | ipgeolocation数据库 ⑩
IPV4 ASN : AS41608 NextGenWebs, S.L.
IPV4 位置: Dronten / Flevoland / NL
IPV6 ASN : AS41608 Nextgenwebs, S.L.
IPV6 位置: Apeldoorn / NL-GE
欺诈分数(越低越好): 0②
abuse得分(越低越好): 0④
IP类型:
  使用类型(usage_type):hosting①  Data Center/Web Hosting/Transit⑤  hosting⑧  business⑨
  公司类型(company_type):hosting①
  云服务提供商(cloud_provider):  Yes⑧
  数据中心(datacenter):  No⑥ ⑨
  移动网络(mobile):  No⑥
  代理(proxy):  No① ② ⑥ ⑦ ⑧ ⑨
  VPN(vpn):  No① ② ⑦ ⑧
  TOR(tor):  No① ② ⑦ ⑧ ⑨
  TOR出口(tor_exit):  No⑧
  搜索引擎机器人(search_engine_robot):②
  匿名代理(anonymous):  No⑦ ⑧ ⑨
  攻击方(attacker):  No⑧ ⑨
  滥用者(abuser):  No⑧ ⑨
  威胁(threat):  No⑧ ⑨
  iCloud中继(icloud_relay):  No① ⑧ ⑨
  未分配IP(bogon):  No⑧ ⑨
Google搜索可行性：YES
端口25检测:
  本地: No
  163邮箱: Yes
  gmail邮箱: Yes
  outlook邮箱: Yes
  yandex邮箱: Yes
  qq邮箱: Yes
------以下为IPV6检测------
欺诈分数(越低越好): 0②
abuse得分(越低越好): 0④
IP类型: Data Center/Web Hosting/Transit⑤
------------------------------------------------------------------------
 总共花费        : 21 秒
 时间          : 2023-11-23 23:28:02
------------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;--------------------- A Bench Script By spiritlhl ----------------------
                   测评频道: https://t.me/vps_reviews
版本：2023.11.22
更新日志：VPS融合怪测试(集百家之长)
---------------------流媒体解锁--感谢sjlleo开源-------------------------
以下测试的解锁地区是准确的，但是不是完整解锁的判断可能有误，这方面仅作参考使用
----------------Youtube----------------
[IPv4]
连接方式: Youtube Video Server
视频缓存节点地域: 荷兰阿姆斯特丹(AMS17S06)
Youtube识别地域: 无信息(null)
[IPv6]
连接方式: Youtube Video Server
视频缓存节点地域: 荷兰阿姆斯特丹(AMS17S06)
Youtube识别地域: 无信息(null)
----------------Netflix----------------
[IPv4]
您的出口IP完整解锁Netflix，支持非自制剧的观看
NF所识别的IP地域信息：荷兰
[IPv6]
您的出口IP完整解锁Netflix，支持非自制剧的观看
NF所识别的IP地域信息：荷兰
---------------DisneyPlus---------------
[IPv4]
当前IPv4出口解锁DisneyPlus
区域：荷兰区
[IPv6]
当前IPv6出口解锁DisneyPlus
区域：荷兰区
解锁Youtube，Netflix，DisneyPlus上面和下面进行比较，不同之处自行判断
----------------流媒体解锁--感谢RegionRestrictionCheck开源--------------
 以下为IPV4网络测试，若无IPV4网络则无输出
============[ Multination ]============
 Dazn:                                  Yes (Region: ES)
 HotStar:                               No
 Disney+:                               Yes (Region: NL)
 Netflix:                               Yes (Region: NL)
 YouTube Premium:                       Failed
 Amazon Prime Video:                    Yes (Region: NL)
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   INTL
 Viu.com:                               No
 YouTube CDN:                           Amsterdam
 Netflix Preferred CDN:                 Associated with [RU VDS] in [Budapest ]
 Spotify Registration:                  No
 Steam Currency:                        EUR
 ChatGPT:                               Yes
=======================================
 以下为IPV6网络测试，若无IPV6网络则无输出
============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               No
 Disney+:                               Yes (Region: ES)
 Netflix:                               Yes (Region: NL)
 YouTube Premium:                       Failed
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           Amsterdam
 Netflix Preferred CDN:                 Associated with [RU VDS] in [Budapest ]
 Spotify Registration:                  No
 Steam Currency:                        Failed (Network Connection)
 ChatGPT:                               Yes
=======================================
---------------TikTok解锁--感谢lmc999的源脚本及fscarmen PR--------------
 Tiktok Region:         Failed
------------------------------------------------------------------------
 总共花费      : 13 秒
 时间          : Thu Nov 23 23:30:36 EST 2023
------------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/11/24/656031cf33bc2.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/11/24/656031cea9957.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/11/24/656031cf3ffaa.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.pek-4837.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   185.213.175.2   AS41608  [ES-NEXTGENWEBS] 荷兰 南荷兰 鹿特丹  NextGenWebs, S.L.
                                              0.26 ms / 0.22 ms / 0.38 ms
2   5.255.66.194    AS50673                   荷兰 弗莱福兰省 德龙滕  serverius.net
                                              1.83 ms / 0.56 ms / 0.55 ms
3   185.8.179.33    AS50673  [NL-SERVERIUS]   荷兰 德伦特省 梅珀尔  serverius.net
                                              1.27 ms / 1.27 ms / 1.20 ms
4   *
5   130.117.1.9     AS174    [COGENT-BONE]    荷兰 北荷兰省 阿姆斯特丹  cogentco.com
    be3457.ccr41.ams03.atlas.cogentco.com     3.17 ms / 3.38 ms / 3.35 ms
6   130.117.0.122   AS174    [COGENT-BONE]    德国 黑森州 美因河畔法兰克福  cogentco.com
    be2813.ccr41.fra03.atlas.cogentco.com     34.11 ms / 9.81 ms / 9.75 ms
7   130.117.0.2     AS174    [COGENT-BONE]    德国 黑森州 美因河畔法兰克福  cogentco.com
    be3186.agr41.fra03.atlas.cogentco.com     9.61 ms / 9.91 ms / 9.88 ms
8   *
9   219.158.24.217  AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              144.55 ms / 140.11 ms / 143.78 ms
10  219.158.9.238   AS4837   [CU169-BACKBONE] 中国 北京市   chinaunicom.cn  联通
                                              148.86 ms / 152.32 ms / 148.42 ms
11  *
12  *
13  61.51.169.142   AS4808                    中国 北京市   chinaunicom.cn  联通
                                              168.75 ms / 168.79 ms / 168.79 ms
14  *
15  *
16  *
17  123.125.96.156  AS4808   [UNICOM-BJ]      中国 北京市   chinaunicom.cn  联通
                                              168.49 ms / 168.40 ms / 168.32 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.pek-4134.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   185.213.175.2   AS41608  [ES-NEXTGENWEBS] 荷兰 南荷兰 鹿特丹  NextGenWebs, S.L.
                                              0.21 ms / 0.23 ms / 0.22 ms
2   5.255.66.194    AS50673                   荷兰 弗莱福兰省 德龙滕  serverius.net
                                              0.79 ms / 1.15 ms / 0.60 ms
3   185.8.179.33    AS50673  [NL-SERVERIUS]   荷兰 德伦特省 梅珀尔  serverius.net
                                              1.26 ms / 1.47 ms / 1.55 ms
4   *
5   154.54.39.185   AS174    [COGENT-BONE]    荷兰 北荷兰省 阿姆斯特丹  cogentco.com
    be3458.ccr42.ams03.atlas.cogentco.com     3.57 ms / 3.28 ms / 3.60 ms
6   130.117.0.142   AS174    [COGENT-BONE]    德国 黑森州 美因河畔法兰克福  cogentco.com
    be2814.ccr42.fra03.atlas.cogentco.com     10.90 ms / 9.91 ms / 9.82 ms
7   130.117.1.117   AS174    [COGENT-BONE]    德国 黑森州 美因河畔法兰克福  cogentco.com
    be3187.agr41.fra03.atlas.cogentco.com     10.73 ms / 10.27 ms / 10.48 ms
8   149.14.159.114  AS174    [COGENT-149]     德国 黑森州 美因河畔法兰克福 Cogent-CT-Peer cogentco.com
    chinatelecom.demarc.cogentco.com          38.64 ms / 34.48 ms / 37.68 ms
9   202.97.43.33    AS4134   [CHINANET-BB]    中国 北京市  X-I chinatelecom.com.cn  电信
                                              204.30 ms / * ms / * ms
10  *
11  *
12  *
13  36.112.223.49   AS4847                    中国 北京市   chinatelecom.cn  电信
                                              248.37 ms / * ms / * ms
14  36.110.6.153    AS4847                    中国 北京市  西城区 chinatelecom.cn  电信
    153.6.110.36.static.bjtelecom.net         210.15 ms / 208.64 ms / 210.36 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.pek-9808.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   185.213.175.2   AS41608  [ES-NEXTGENWEBS] 荷兰 南荷兰 鹿特丹  NextGenWebs, S.L.
                                              0.19 ms / 0.23 ms / 0.30 ms
2   5.255.66.194    AS50673                   荷兰 弗莱福兰省 德龙滕  serverius.net
                                              0.64 ms / 0.61 ms / 0.61 ms
3   185.8.179.33    AS50673  [NL-SERVERIUS]   荷兰 德伦特省 梅珀尔  serverius.net
                                              2.10 ms / 1.47 ms / 1.25 ms
4   5.56.20.169     AS201011                  荷兰 北荷兰省 阿姆斯特丹  core-backbone.com
    ae22-404.ams10.core-backbone.com          2.93 ms / 3.00 ms / 2.97 ms
5   80.249.208.40   *                         荷兰 北荷兰省 阿姆斯特丹
                                              119.39 ms / 119.50 ms / * ms
6   223.118.18.173  AS58453  [CMI-INT]        英国 英格兰 伦敦  cmi.chinamobile.com  移动
                                              18.19 ms / 18.34 ms / 18.32 ms
7   223.120.22.18   AS58453  [CMI-INT]        中国 广东省 广州市 北京-广州 cmi.chinamobile.com  移动
                                              202.54 ms / 210.44 ms / 202.59 ms
8   221.183.55.106  AS9808   [CMNET]          中国 北京市  回国到达层 chinamobile.com  移动
                                              262.48 ms / 362.95 ms / * ms
9   221.183.46.250  AS9808   [CMNET]          中国 北京市   chinamobile.com  移动
                                              263.01 ms / 262.92 ms / 263.33 ms
10  221.183.89.102  AS9808   [CMNET]          中国 北京市   chinamobile.com  移动
                                              261.89 ms / 262.41 ms / 261.75 ms
11  *
12  211.136.66.125  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              366.31 ms / 366.00 ms / * ms
13  211.136.63.66   AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              364.19 ms / 363.89 ms / * ms
14  211.136.95.226  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              365.59 ms / 365.20 ms / * ms
15  *
16  *
17  211.136.25.153  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              265.42 ms / 365.44 ms / * ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.sha-4837.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   185.213.175.2   AS41608  [ES-NEXTGENWEBS] 荷兰 南荷兰 鹿特丹  NextGenWebs, S.L.
                                              0.28 ms / 0.31 ms / 0.28 ms
2   5.255.66.194    AS50673                   荷兰 弗莱福兰省 德龙滕  serverius.net
                                              0.64 ms / 0.58 ms / 0.61 ms
3   185.8.179.33    AS50673  [NL-SERVERIUS]   荷兰 德伦特省 梅珀尔  serverius.net
                                              1.25 ms / 1.76 ms / 1.61 ms
4   *
5   154.54.39.185   AS174    [COGENT-BONE]    荷兰 北荷兰省 阿姆斯特丹  cogentco.com
                                              3.40 ms / 3.47 ms / 3.46 ms
6   130.117.0.142   AS174    [COGENT-BONE]    德国 黑森州 美因河畔法兰克福  cogentco.com
                                              9.88 ms / 9.75 ms / 9.97 ms
7   154.54.37.30    AS174    [COGENT-BONE]    德国 黑森州 美因河畔法兰克福  cogentco.com
                                              10.10 ms / 10.48 ms / 10.91 ms
8   154.25.2.166    AS174    [COGENT-BONE]    德国 黑森州 美因河畔法兰克福  cogentco.com
                                              11.22 ms / 11.28 ms / 11.55 ms
9   149.11.84.218   AS174    [COGENT-149]     德国 黑森州 美因河畔法兰克福  cogentco.com
                                              9.42 ms / 9.77 ms / 9.36 ms
10  219.158.5.173   AS4837   [CU169-BACKBONE] 中国 香港   chinaunicom.cn  联通
                                              154.89 ms / 158.41 ms / 153.58 ms
11  219.158.3.185   AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              180.58 ms / 184.12 ms / 179.20 ms
12  219.158.3.81    AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              160.27 ms / 161.04 ms / 159.36 ms
13  219.158.6.253   AS4837   [CU169-BACKBONE] 中国 上海市   chinaunicom.cn  联通
                                              158.60 ms / 158.29 ms / 158.23 ms
14  *
15  139.226.4.1     AS17621  [UNICOM-SH]      中国 上海市  黄浦区 chinaunicom.cn  联通
                                              161.51 ms / 161.50 ms / 161.42 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.sha-4134.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   185.213.175.2   AS41608  [ES-NEXTGENWEBS] 荷兰 南荷兰 鹿特丹  NextGenWebs, S.L.
                                              0.20 ms / 0.31 ms / 0.31 ms
2   5.255.66.194    AS50673                   荷兰 弗莱福兰省 德龙滕  serverius.net
                                              0.53 ms / 0.56 ms / 0.62 ms
3   185.8.179.33    AS50673  [NL-SERVERIUS]   荷兰 德伦特省 梅珀尔  serverius.net
                                              1.42 ms / 1.32 ms / 2.05 ms
4   *
5   130.117.1.9     AS174    [COGENT-BONE]    荷兰 北荷兰省 阿姆斯特丹  cogentco.com
    be3457.ccr41.ams03.atlas.cogentco.com     3.34 ms / 3.43 ms / 3.65 ms
6   130.117.0.122   AS174    [COGENT-BONE]    德国 黑森州 美因河畔法兰克福  cogentco.com
    be2813.ccr41.fra03.atlas.cogentco.com     10.11 ms / 10.13 ms / 10.05 ms
7   130.117.0.2     AS174    [COGENT-BONE]    德国 黑森州 美因河畔法兰克福  cogentco.com
    be3186.agr41.fra03.atlas.cogentco.com     9.93 ms / 9.81 ms / 9.88 ms
8   149.14.159.114  AS174    [COGENT-149]     德国 黑森州 美因河畔法兰克福 Cogent-CT-Peer cogentco.com
                                              40.87 ms / 46.35 ms / 50.26 ms
9   202.97.43.37    AS4134   [CHINANET-BB]    中国 上海市   chinatelecom.com.cn  电信
                                              454.93 ms / * ms / * ms
10  *
11  202.97.71.29    AS4134   [CHINANET-BB]    中国 上海市   chinatelecom.com.cn  电信
                                              340.49 ms / * ms / * ms
12  *
13  101.95.89.114   AS4812   [CHINANET-SH]    中国 上海市   chinatelecom.cn  电信
                                              * ms / 253.81 ms / * ms
14  101.95.41.106   AS4812   [CHINANET-SH]    中国 上海市   chinatelecom.cn  电信
                                              254.87 ms / 254.47 ms / 254.03 ms
15  202.101.21.178  AS4812   [CHINANET-SH]    中国 上海市  浦东新区 chinatelecom.cn  电信
                                              233.48 ms / 240.24 ms / 250.67 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.sha-9808.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   185.213.175.2   AS41608  [ES-NEXTGENWEBS] 荷兰 南荷兰 鹿特丹  NextGenWebs, S.L.
                                              0.23 ms / 0.28 ms / 0.37 ms
2   5.255.66.194    AS50673                   荷兰 弗莱福兰省 德龙滕  serverius.net
                                              0.60 ms / 0.72 ms / 0.49 ms
3   185.8.179.33    AS50673  [NL-SERVERIUS]   荷兰 德伦特省 梅珀尔  serverius.net
                                              1.39 ms / 1.22 ms / 4.55 ms
4   *
5   154.54.39.185   AS174    [COGENT-BONE]    荷兰 北荷兰省 阿姆斯特丹  cogentco.com
                                              3.39 ms / 3.36 ms / 3.38 ms
6   130.117.0.142   AS174    [COGENT-BONE]    德国 黑森州 美因河畔法兰克福  cogentco.com
                                              9.73 ms / 10.00 ms / 9.82 ms
7   154.54.38.169   AS174    [COGENT-BONE]    德国 黑森州 美因河畔法兰克福  cogentco.com
    be3375.rcr21.b019066-1.fra03.atlas.cogentco.com   11.13 ms / 11.12 ms / 10.82 ms
8   149.29.9.162    AS174    [COGENT-149]     德国 黑森州 美因河畔法兰克福  cogentco.com
    chinamobile.demarc.cogentco.com           10.42 ms / 10.11 ms / 11.06 ms
9   223.120.10.85   AS58453  [CMI-INT]        德国 黑森州 美茵河畔法兰克福  cmi.chinamobile.com  移动
                                              9.57 ms / 9.79 ms / 9.73 ms
10  223.120.16.222  AS58453  [CMI-INT]        中国 香港   cmi.chinamobile.com  移动
                                              223.68 ms / 224.07 ms / * ms
11  221.183.89.178  AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              232.24 ms / 232.26 ms / * ms
12  221.183.89.33   AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              229.14 ms / 229.23 ms / 229.13 ms
13  221.183.89.10   AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              230.74 ms / 230.75 ms / 231.27 ms
14  221.183.39.130  AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              338.00 ms / * ms / * ms
15  120.204.34.85   AS24400  [APNIC-AP]       中国 上海市   chinamobile.com  移动
                                              230.65 ms / 230.68 ms / 230.62 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.can-4837.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   185.213.175.2   AS41608  [ES-NEXTGENWEBS] 荷兰 南荷兰 鹿特丹  NextGenWebs, S.L.
                                              0.24 ms / 0.34 ms / 0.30 ms
2   5.255.66.194    AS50673                   荷兰 弗莱福兰省 德龙滕  serverius.net
                                              0.59 ms / 0.59 ms / 0.55 ms
3   185.8.179.33    AS50673  [NL-SERVERIUS]   荷兰 德伦特省 梅珀尔  serverius.net
                                              1.61 ms / 1.64 ms / 1.75 ms
4   80.231.80.65    AS6453                    荷兰 北荷兰省 阿姆斯特丹  tatacommunications.com
                                              2.70 ms / 2.61 ms / 2.74 ms
5   80.231.80.57    AS6453                    荷兰 北荷兰省 阿姆斯特丹  tatacommunications.com
    if-ae-7-3.tcore1.av2-amsterdam.as6453.net   8.77 ms / 8.78 ms / 9.02 ms
    [MPLS: Lbl 122589, TC 0, S 1, TTL 1]
6   195.219.194.150 AS6453   [AMSTDM-AV2]     德国 黑森州 美因河畔法兰克福  tatacommunications.com
                                              8.94 ms / 9.69 ms / 9.04 ms
    [MPLS: Lbl 48542, TC 0, S 1, TTL 1]
7   *
8   *
9   219.158.96.210  AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              179.16 ms / 182.54 ms / 178.36 ms
10  219.158.8.121   AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              159.05 ms / 258.87 ms / * ms
11  112.97.0.102    AS17816  [APNIC-AP]       中国 广东省 广州市  chinaunicom.cn  联通
                                              186.70 ms / 186.32 ms / 189.61 ms
12  221.4.4.70      AS17816  [UNICOM-GD]      中国 广东省 广州市  chinaunicom.cn
                                              160.76 ms / 163.98 ms / 160.32 ms
13  221.4.1.77      AS17816  [UNICOM-GD]      中国 广东省 广州市  chinaunicom.cn  联通
                                              161.16 ms / 161.27 ms / 158.71 ms
14  58.254.255.1    AS17816                   中国 广东省 广州市 黄埔区 chinaunicom.cn  联通
                                              174.63 ms / 174.62 ms / 174.64 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.can-4134.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   185.213.175.2   AS41608  [ES-NEXTGENWEBS] 荷兰 南荷兰 鹿特丹  NextGenWebs, S.L.
                                              0.22 ms / 0.51 ms / 0.29 ms
2   5.255.66.194    AS50673                   荷兰 弗莱福兰省 德龙滕  serverius.net
                                              0.62 ms / 0.54 ms / 0.64 ms
3   185.8.179.33    AS50673  [NL-SERVERIUS]   荷兰 德伦特省 梅珀尔  serverius.net
                                              0.69 ms / 0.64 ms / 0.80 ms
4   *
5   154.54.39.185   AS174    [COGENT-BONE]    荷兰 北荷兰省 阿姆斯特丹  cogentco.com
                                              3.32 ms / 3.93 ms / 3.50 ms
6   130.117.0.142   AS174    [COGENT-BONE]    德国 黑森州 美因河畔法兰克福  cogentco.com
                                              9.86 ms / 9.83 ms / 9.88 ms
7   130.117.1.117   AS174    [COGENT-BONE]    德国 黑森州 美因河畔法兰克福  cogentco.com
                                              10.02 ms / 9.80 ms / 9.94 ms
8   149.14.159.114  AS174    [COGENT-149]     德国 黑森州 美因河畔法兰克福 Cogent-CT-Peer cogentco.com
                                              687.91 ms / 682.88 ms / * ms
9   *
10  202.97.94.97    AS4134   [CHINANET-BB]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              201.98 ms / 202.69 ms / 201.94 ms
11  202.97.71.253   AS4134   [CHINANET-BB]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              406.51 ms / * ms / * ms
12  113.96.4.218    AS4134   [CHINANET-GD]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              307.54 ms / * ms / * ms
13  121.14.50.174   AS4134   [CHINANET-GD]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              212.83 ms / 208.03 ms / 263.58 ms
14  125.88.170.62   AS4134   [CHINANET-GD]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              217.43 ms / 215.94 ms / 215.02 ms
15  14.116.225.60   AS4134                    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              210.81 ms / 205.72 ms / 202.24 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.can-9808.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   185.213.175.2   AS41608  [ES-NEXTGENWEBS] 荷兰 南荷兰 鹿特丹  NextGenWebs, S.L.
                                              0.51 ms / 0.35 ms / 0.49 ms
2   5.255.66.194    AS50673                   荷兰 弗莱福兰省 德龙滕  serverius.net
                                              0.48 ms / 0.59 ms / 0.55 ms
3   185.8.179.33    AS50673  [NL-SERVERIUS]   荷兰 德伦特省 梅珀尔  serverius.net
                                              1.26 ms / 1.38 ms / 2.28 ms
4   *
5   130.117.1.9     AS174    [COGENT-BONE]    荷兰 北荷兰省 阿姆斯特丹  cogentco.com
                                              3.41 ms / 3.45 ms / 3.51 ms
6   130.117.0.122   AS174    [COGENT-BONE]    德国 黑森州 美因河畔法兰克福  cogentco.com
                                              10.00 ms / 10.25 ms / 9.82 ms
7   154.54.37.249   AS174    [COGENT-BONE]    德国 黑森州 美因河畔法兰克福  cogentco.com
    be3374.rcr21.b019066-1.fra03.atlas.cogentco.com   9.78 ms / 9.79 ms / 9.77 ms
8   149.29.9.162    AS174    [COGENT-149]     德国 黑森州 美因河畔法兰克福  cogentco.com
                                              9.69 ms / 9.84 ms / 9.90 ms
9   223.120.10.85   AS58453  [CMI-INT]        德国 黑森州 美茵河畔法兰克福  cmi.chinamobile.com  移动
                                              14.78 ms / 10.11 ms / 15.49 ms
10  223.120.15.226  AS58453  [CMI-INT]        德国 黑森州 美因河畔法兰克福  cmi.chinamobile.com  移动
                                              205.39 ms / 206.38 ms / 205.38 ms
11  221.183.55.82   AS9808   [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              207.14 ms / 207.24 ms / 207.18 ms
12  221.183.92.21   AS9808   [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              206.41 ms / 206.49 ms / 206.49 ms
13  221.183.89.246  AS9808   [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              208.58 ms / * ms / * ms
14  *
15  211.136.204.238 AS56040  [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              209.99 ms / 210.06 ms / 209.22 ms
16  211.136.208.242 AS56040  [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              212.90 ms / 216.54 ms / 212.87 ms
17  183.235.228.2   AS56040  [APNIC-AP]       中国 广东省 广州市  chinamobile.com  移动
                                              214.51 ms / 214.34 ms / 218.57 ms
18  183.235.228.26  AS56040  [APNIC-AP]       中国 广东省 广州市  chinamobile.com  移动
                                              220.11 ms / 219.54 ms / 219.59 ms
19  120.198.26.254  AS56040  [APNIC-AP]       中国 广东省 广州市  chinamobile.com  移动
                                              221.81 ms / 222.73 ms / 222.74 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;1C2G，性能强劲，18刀/年，抗投诉，无限流量（流量用尽后限速100Mbps），还要什么自行车。&lt;/p&gt;
</content:encoded></item><item><title>netcup月付0.84欧VPS piko G11s测评</title><link>https://yushum.com/posts/netcup%E6%9C%88%E4%BB%980-84%E6%AC%A7vps-piko-g11s%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/netcup%E6%9C%88%E4%BB%980-84%E6%AC%A7vps-piko-g11s%E6%B5%8B%E8%AF%84/</guid><pubDate>Fri, 17 Nov 2023 21:22:52 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;本来以为netcup已经放弃低端用户了，没想到突然推出低配VPS，最低配是月付0.84欧（有一年的合约期，一年后按月延长合约）。&lt;a href=&quot;https://forum.netcup.de/information/announcements-surveys/17518-sortimentserweiterung-pre-release-unserer-neuen-kleinen-vps/&quot;&gt;出处&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;虽然说每个人可以买五台，但现在没货了，不知后续情况如何。这里简单测试一下最低配的性能。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2023-09-06                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Fri Nov 17 07:54:56 PM CST 2023

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 1 minutes
Processor  : QEMU Virtual CPU version 2.5+
CPU cores  : 1 @ 2294.604 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 973.3 MiB
Swap       : 976.0 MiB
Disk       : 28.4 GiB
Distro     : Debian GNU/Linux 12 (bookworm)
Kernel     : 6.1.0-13-cloud-amd64
VM Type    : KVM
IPv4/IPv6  : ✔ Online / ✔ Online

IPv6 Network Information:
---------------------------------
ISP        : netcup GmbH
ASN        : AS197540 netcup GmbH
Host       : NETCUP-GMBH
Location   : Karlsruhe, Baden-Wurttemberg (BW)
Country    : Germany

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 25.49 MB/s    (6.3k) | 347.39 MB/s   (5.4k)
Write      | 25.52 MB/s    (6.3k) | 349.22 MB/s   (5.4k)
Total      | 51.01 MB/s   (12.7k) | 696.61 MB/s  (10.8k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 983.09 MB/s   (1.9k) | 882.03 MB/s    (861)
Write      | 1.03 GB/s     (2.0k) | 940.78 MB/s    (918)
Total      | 2.01 GB/s     (3.9k) | 1.82 GB/s     (1.7k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 976 Mbits/sec   | 702 Mbits/sec   | 20.6 ms
Scaleway        | Paris, FR (10G)           | busy            | busy            | 18.1 ms
NovoServe       | North Holland, NL (40G)   | 985 Mbits/sec   | 934 Mbits/sec   | 10.8 ms
Uztelecom       | Tashkent, UZ (10G)        | 866 Mbits/sec   | 455 Mbits/sec   | 84.1 ms
Clouvider       | NYC, NY, US (10G)         | 798 Mbits/sec   | 231 Mbits/sec   | 92.4 ms
Clouvider       | Dallas, TX, US (10G)      | 567 Mbits/sec   | 72.0 Mbits/sec  | 127 ms
Clouvider       | Los Angeles, CA, US (10G) | 582 Mbits/sec   | 127 Mbits/sec   | 150 ms

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 980 Mbits/sec   | 788 Mbits/sec   | 20.5 ms
Scaleway        | Paris, FR (10G)           | busy            | busy            | 23.8 ms
NovoServe       | North Holland, NL (40G)   | 981 Mbits/sec   | 910 Mbits/sec   | 10.8 ms
Uztelecom       | Tashkent, UZ (10G)        | 874 Mbits/sec   | 188 Mbits/sec   | 83.9 ms
Clouvider       | NYC, NY, US (10G)         | 799 Mbits/sec   | 158 Mbits/sec   | 92.4 ms
Clouvider       | Dallas, TX, US (10G)      | 640 Mbits/sec   | 135 Mbits/sec   | 127 ms
Clouvider       | Los Angeles, CA, US (10G) | 572 Mbits/sec   | 106 Mbits/sec   | 150 ms

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 471
Multi Core      | 457
Full Test       | https://browser.geekbench.com/v5/cpu/21957707

Geekbench 6 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 375
Multi Core      | 318
Full Test       | https://browser.geekbench.com/v6/cpu/3587449

YABS completed in 41 min 28 sec
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2023-10-15
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : QEMU Virtual CPU version 2.5+
 CPU Cores          : 1 @ 2294.604 MHz
 CPU Cache          : 16384 KB
 AES-NI             : ✓ Enabled
 VM-x/AMD-V         : ✗ Disabled
 Total Disk         : 29.4 GB (1.0 GB Used)
 Total Mem          : 973.3 MB (157.9 MB Used)
 Total Swap         : 976.0 MB (18.1 MB Used)
 System uptime      : 0 days, 0 hour 44 min
 Load average       : 0.38, 0.83, 0.87
 OS                 : Debian GNU/Linux 12
 Arch               : x86_64 (64 Bit)
 Kernel             : 6.1.0-13-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 IPv4/IPv6          : ✓ Online / ✓ Online
 Organization       : AS197540 netcup GmbH
 Location           : Karlsruhe / DE
 Region             : Baden-Wurttemberg
----------------------------------------------------------------------
 I/O Speed(1st run) : 316 MB/s
 I/O Speed(2nd run) : 355 MB/s
 I/O Speed(3rd run) : 449 MB/s
 I/O Speed(average) : 373.3 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    944.39 Mbps       942.00 Mbps         0.39 ms
 Los Angeles, US  538.01 Mbps       885.29 Mbps         153.23 ms
 Dallas, US       663.93 Mbps       746.99 Mbps         125.29 ms
 Montreal, CA     595.99 Mbps       909.15 Mbps         90.66 ms
 Paris, FR        994.04 Mbps       958.34 Mbps         22.10 ms
 Amsterdam, NL    989.33 Mbps       819.59 Mbps         13.88 ms
 Shanghai, CN     156.06 Mbps       515.07 Mbps         269.15 ms
 Chongqing, CN    0.70 Mbps         0.31 Mbps           253.11 ms
 Mumbai, IN       708.56 Mbps       885.45 Mbps         116.88 ms
 Singapore, SG    469.16 Mbps       935.65 Mbps         174.97 ms
 Tokyo, JP        387.62 Mbps       798.98 Mbps         213.33 ms
----------------------------------------------------------------------
 Finished in        : 5 min 18 sec
 Timestamp          : 2023-11-17 20:42:41 CST
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;IP质量检测&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench Script By spiritlhl ---------------------
                   测评频道: https://t.me/vps_reviews
版本：2023.09.18
更新日志：IP质量测试，由频道 https://t.me/vps_reviews 原创
数据仅作参考，不代表100%准确，IP类型如果不一致请手动查询多个数据库比对
-----------------端口检测以及IP质量检测--本频道独创-------------------
以下为各数据库编号，输出结果后将自带数据库来源对应的编号
ipinfo数据库 ①  | scamalytics数据库 ②  | virustotal数据库 ③  | abuseipdb数据库 ④  | ip2location数据库   ⑤
ip-api数据库 ⑥  | ipwhois数据库     ⑦  | ipregistry数据库 ⑧  | ipdata数据库    ⑨  | ipgeolocation数据库 ⑩
IPV4 ASN : AS197540 netcup GmbH
IPV4 位置: Karlsruhe / Baden-Wurttemberg / DE
IPV6 ASN : AS197540 netcup
IPV6 位置: Nuremberg / Bavaria
欺诈分数(越低越好): 19②
abuse得分(越低越好): 0④
IP类型:
  使用类型(usage_type):hosting①  Data Center/Web Hosting/Transit⑤  hosting⑧  business⑨
  公司类型(company_type):hosting①  hosting⑧
  云服务提供商(cloud_provider):  Yes⑧
  数据中心(datacenter):  Yes② ⑥   No⑨
  移动网络(mobile):  No⑥
  代理(proxy):  No① ② ⑥ ⑦ ⑧ ⑨
  VPN(vpn):  No① ② ⑦ ⑧
  TOR(tor):  No① ② ⑦ ⑧ ⑨
  TOR出口(tor_exit):  No⑧
  搜索引擎机器人(search_engine_robot):  No②
  匿名代理(anonymous):  No⑦ ⑧ ⑨
  攻击方(attacker):  No⑧ ⑨
  滥用者(abuser):  No⑧ ⑨
  威胁(threat):  No⑧ ⑨
  iCloud中继(icloud_relay):  No① ⑧ ⑨
  未分配IP(bogon):  No⑧ ⑨
黑名单记录统计(有多少个黑名单网站有记录): 无害0 恶意0 可疑0 未检测88 ③
Google搜索可行性：YES
端口25检测:
  本地: No
  163邮箱：No
------以下为IPV6检测------
欺诈分数(越低越好): 20②
abuse得分(越低越好): 0④
IP类型: Data Center/Web Hosting/Transit⑤
------------------------------------------------------------------------
 总共花费        : 30 秒
 时间          : 2023-11-17 20:57:57
------------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ---------------------流媒体解锁--感谢sjlleo开源-------------------------
以下测试的解锁地区是准确的，但是不是完整解锁的判断可能有误，这方面仅作参考使用
----------------Youtube----------------
[IPv4]
连接方式: Google Global CacheCDN (ISP Cooperation)
ISP运营商: ANEXIAAT
视频缓存节点地域: 奥地利维也纳(VIE1)
Youtube识别地域: 无信息(null)
[IPv6]
连接方式: Google Global CacheCDN (ISP Cooperation)
ISP运营商: ANEXIAAT
视频缓存节点地域: 奥地利维也纳(VIE1)
Youtube识别地域: 无信息(null)
----------------Netflix----------------
[IPv4]
您的出口IP可以使用Netflix，但仅可看Netflix自制剧
NF所识别的IP地域信息：德国
[IPv6]
您的出口IP可以使用Netflix，但仅可看Netflix自制剧
NF所识别的IP地域信息：德国
---------------DisneyPlus---------------
[IPv4]
当前IPv4出口解锁DisneyPlus
区域：德国区
[IPv6]
当前IPv6出口解锁DisneyPlus
区域：德国区
解锁Youtube，Netflix，DisneyPlus上面和下面进行比较，不同之处自行判断
&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;----------------流媒体解锁--感谢RegionRestrictionCheck开源--------------
** 测试时间: Fri Nov 17 08:45:29 PM CST 2023

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: netcup (45.157.*.*)


============[ Multination ]============
 Dazn:                                  Yes (Region: DE)
 HotStar:                               No
 Disney+:                               No
 Netflix:                               Originals Only
 YouTube Premium:                       Failed
 Amazon Prime Video:                    Yes (Region: DE)
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   DE
 Viu.com:                               No
 YouTube CDN:                           ANEXIAAT in Vienna
 Netflix Preferred CDN:                 Associated with [ANEXIA Internetdienstleistungs] in [Vienna ]
 Spotify Registration:                  Yes (Region: DE)
 Steam Currency:                        EUR
 ChatGPT:                               Yes
=======================================
===============[ Europe ]==============
 Rakuten TV:                            Yes
 Funimation:                            Failed
 SkyShowTime:                           No
 HBO Max:                               No
 Maths Spot:                            Failed
 ---GB---
 Sky Go:                                Yes
 BritBox:                               Yes
 ITV Hub:                               No
 Channel 4:                             No
 Channel 5:                             No
 BBC iPLAYER:                           No
 Discovery+ UK:                         No
 ---FR---
 Salto:                                 Failed (Network Connection)
 Canal+:                                Yes
 Molotov:                               No
 ---DE---
 Joyn:                                  Yes
 Sky:                                   Yes
 ZDF:                                   Yes
 ---NL---
 NLZIET:                                Failed
 videoland:                             Failed (Network Connection)
 NPO Start Plus:                        No
 ---ES---
 PANTAYA:                               Failed (Network Connection)
 ---IT---
 Rai Play:                              Yes
 ---RU---
 Amediateka:                            Yes
=======================================


 ** 正在测试IPv6解锁情况
--------------------------------
 ** 您的网络为: netcup (2a03:4000:4b:*:*)


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               No
 Disney+:                               Yes (Region: DE)
 Netflix:                               Originals Only
 YouTube Premium:                       Failed
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           ANEXIAAT in Vienna
 Netflix Preferred CDN:                 Associated with [ANEXIA Internetdienstleistungs] in [Vienna ]
 Spotify Registration:                  Yes (Region: DE)
 Steam Currency:                        Failed (Network Connection)
 ChatGPT:                               Yes
=======================================
===============[ Europe ]==============
 Rakuten TV:                            Failed (Network Connection)
 Funimation:                            IPv6 Not Support
 SkyShowTime:                           No
 HBO Max:                               Failed (Network Connection)
 Maths Spot:                            IPv6 Not Support
 ---GB---
 Sky Go:                                Failed (Network Connection)
 BritBox:                               Yes
 ITV Hub:                               Failed (Network Connection)
 Channel 4:                             Failed (Network Connection)
 Channel 5:                             IPv6 Not Support
 BBC iPLAYER:                           Failed
 Discovery+ UK:                         IPv6 Not Support
 ---FR---
 Salto:                                 Failed (Network Connection)
 Canal+:                                Failed (Network Connection)
 Molotov:                               No
 ---DE---
 Joyn:                                  Failed (Network Connection)
 Sky:                                   Failed (Network Connection)
 ZDF:                                   Failed (Network Connection)
 ---NL---
 NLZIET:                                Failed
 videoland:                             Failed (Network Connection)
 NPO Start Plus:                        Failed (Network Connection)
 ---ES---
 PANTAYA:                               Failed (Network Connection)
 ---IT---
 Rai Play:                              Failed (Network Connection)
 ---RU---
 Amediateka:                            Failed (Network Connection)
=======================================
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/11/17/655765d6e1ccd.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/11/17/655765d68e6a9.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/11/17/655765d6e14e8.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.pek-4837.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   45.157.176.3    AS197540                  德国 巴伐利亚州 纽伦堡  netcup.de
                                              0.53 ms / 0.96 ms / 0.71 ms
2   94.16.25.76     AS47147  [ANX-NET]        德国 黑森州 美因河畔法兰克福  anexia.com
                                              0.87 ms / 25.78 ms / 0.81 ms
3   62.115.46.182   AS1299   [ARELION-NET]    德国 巴伐利亚州 纽伦堡  arelion.com
    nug-b2-link.ip.twelve99.net               0.70 ms / 0.86 ms / 4.08 ms
4   62.115.140.202  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-bb1-link.ip.twelve99.net              4.01 ms / 3.96 ms / 5.61 ms
    [MPLS: Lbl 410540, TC 0, S 1, TTL 1]
5   62.115.132.209  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-b14-link.ip.twelve99.net              6.33 ms / 5.48 ms / 5.75 ms
6   *
7   219.158.15.157  AS4837   [CU169-BACKBONE] 中国 北京市   chinaunicom.cn  联通
                                              220.56 ms / 215.69 ms / 218.92 ms
8   219.158.9.214   AS4837   [CU169-BACKBONE] 中国 北京市   chinaunicom.cn  联通
                                              256.00 ms / 251.55 ms / 254.70 ms
9   *
10  *
11  61.51.169.178   AS4808                    中国 北京市   chinaunicom.cn  联通
                                              229.97 ms / 228.58 ms / * ms
12  *
13  *
14  *
15  123.125.96.156  AS4808   [UNICOM-BJ]      中国 北京市   chinaunicom.cn  联通
                                              251.92 ms / 251.76 ms / 252.02 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.pek-4134.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   45.157.176.3    AS197540                  德国 巴伐利亚州 纽伦堡  netcup.de
                                              0.72 ms / 0.76 ms / 0.77 ms
2   94.16.25.76     AS47147  [ANX-NET]        德国 黑森州 美因河畔法兰克福  anexia.com
                                              0.91 ms / 0.91 ms / 0.83 ms
3   62.115.46.182   AS1299   [ARELION-NET]    德国 巴伐利亚州 纽伦堡  arelion.com
    nug-b2-link.ip.twelve99.net               0.61 ms / 0.92 ms / 1.89 ms
4   62.115.140.202  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-bb1-link.ip.twelve99.net              3.96 ms / 4.10 ms / 4.90 ms
    [MPLS: Lbl 404160, TC 0, S 1, TTL 1]
5   62.115.136.213  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-b5-link.ip.twelve99.net               3.96 ms / 3.94 ms / 3.86 ms
6   118.85.205.81   AS4134   [CHINANET-BB]    德国 黑森州 美因河畔法兰克福 Telia-CTEuro-PoP chinatelecom.com.cn  电信
                                              5.55 ms / 4.69 ms / 6.53 ms
7   202.97.43.33    AS4134   [CHINANET-BB]    中国 北京市  X-I chinatelecom.com.cn  电信
                                              247.53 ms / * ms / * ms
8   202.97.85.37    AS4134   [CHINANET-BB]    中国 北京市   chinatelecom.com.cn  电信
                                              150.48 ms / 149.64 ms / 149.38 ms
9   *
10  *
11  36.110.6.153    AS4847                    中国 北京市  西城区 chinatelecom.cn  电信
                                              301.79 ms / 301.10 ms / * ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.pek-9808.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   45.157.176.3    AS197540                  德国 巴伐利亚州 纽伦堡  netcup.de
                                              0.45 ms / 0.96 ms / 0.68 ms
2   94.16.25.76     AS47147  [ANX-NET]        德国 黑森州 美因河畔法兰克福  anexia.com
                                              0.83 ms / 2.91 ms / 2.20 ms
3   62.115.46.182   AS1299   [ARELION-NET]    德国 巴伐利亚州 纽伦堡  arelion.com
    nug-b2-link.ip.twelve99.net               0.72 ms / 0.96 ms / 0.89 ms
4   62.115.112.214  AS1299   [ARELION-NET]    法国 法兰西岛大区 巴黎  arelion.com
    prs-bb2-link.ip.twelve99.net              16.37 ms / 16.38 ms / 16.39 ms
    [MPLS: Lbl 412930, TC 0, S 1, TTL 1]
5   62.115.122.159  AS1299   [ARELION-NET]    美国 华盛顿哥伦比亚特区 华盛顿  arelion.com
    rest-bb1-link.ip.twelve99.net             94.19 ms / 93.93 ms / 93.99 ms
    [MPLS: Lbl 412930, TC 0, S 1, TTL 1]
6   62.115.114.86   AS1299   [ARELION-NET]    美国 加利福尼亚州 洛杉矶  arelion.com
    lax-b22-link.ip.twelve99.net              149.02 ms / 148.77 ms / 148.40 ms
7   62.115.171.219  AS1299   [ARELION-NET]    美国 加利福尼亚州 洛杉矶  arelion.com
                                              146.14 ms / 146.36 ms / 146.54 ms
8   223.120.6.22    AS58453  [CMI-INT]        美国 加利福尼亚州 洛杉矶  cmi.chinamobile.com  移动
                                              146.78 ms / 146.22 ms / 146.33 ms
9   223.120.12.214  AS58453  [CMI-INT]        中国 上海市  CMI-CM-Peer cmi.chinamobile.com  移动
                                              236.07 ms / 235.91 ms / 236.02 ms
10  221.183.55.106  AS9808   [CMNET]          中国 北京市  回国到达层 chinamobile.com  移动
                                              295.73 ms / 295.42 ms / 295.71 ms
11  221.183.46.250  AS9808   [CMNET]          中国 北京市   chinamobile.com  移动
                                              236.75 ms / 236.60 ms / 235.90 ms
12  221.183.89.102  AS9808   [CMNET]          中国 北京市   chinamobile.com  移动
                                              298.32 ms / 297.94 ms / 297.46 ms
13  *
14  211.136.66.121  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              * ms / 440.81 ms / * ms
15  221.179.171.41  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              238.98 ms / 239.18 ms / 239.16 ms
16  211.136.63.66   AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              239.94 ms / 240.46 ms / 248.92 ms
17  211.136.95.226  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              299.61 ms / 298.70 ms / 298.81 ms
18  *
19  *
20  211.136.25.153  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              239.19 ms / 239.32 ms / 239.12 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.sha-4837.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   45.157.176.3    AS197540                  德国 巴伐利亚州 纽伦堡  netcup.de
                                              1.93 ms / 6.18 ms / 0.77 ms
2   94.16.25.76     AS47147  [ANX-NET]        德国 黑森州 美因河畔法兰克福  anexia.com
                                              41.87 ms / 0.77 ms / 0.83 ms
3   62.115.46.182   AS1299   [ARELION-NET]    德国 巴伐利亚州 纽伦堡  arelion.com
                                              1.09 ms / 0.74 ms / 0.61 ms
4   62.115.140.202  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
                                              3.91 ms / 3.93 ms / 3.78 ms
    [MPLS: Lbl 403020, TC 0, S 1, TTL 1]
5   *
6   219.158.41.97   AS4837   [CU169-BACKBONE] 德国 黑森州 美茵河畔法兰克福  chinaunicom.cn  联通
                                              339.66 ms / * ms / * ms
7   219.158.7.209   AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              275.17 ms / 268.49 ms / 272.44 ms
8   219.158.4.49    AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              253.18 ms / 256.16 ms / 251.16 ms
9   219.158.3.57    AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              250.42 ms / 250.23 ms / 251.74 ms
10  219.158.6.253   AS4837   [CU169-BACKBONE] 中国 上海市   chinaunicom.cn  联通
                                              277.59 ms / 278.63 ms / 276.37 ms
11  *
12  139.226.4.1     AS17621  [UNICOM-SH]      中国 上海市  黄浦区 chinaunicom.cn  联通
                                              253.47 ms / 253.58 ms / 253.45 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.sha-4134.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   45.157.176.3    AS197540                  德国 巴伐利亚州 纽伦堡  netcup.de
                                              0.53 ms / 0.64 ms / 0.79 ms
2   94.16.25.76     AS47147  [ANX-NET]        德国 黑森州 美因河畔法兰克福  anexia.com
                                              1.17 ms / 10.78 ms / 1.91 ms
3   62.115.46.182   AS1299   [ARELION-NET]    德国 巴伐利亚州 纽伦堡  arelion.com
                                              1.12 ms / 0.57 ms / 0.68 ms
4   62.115.140.202  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
                                              4.03 ms / 3.94 ms / 4.07 ms
    [MPLS: Lbl 404160, TC 0, S 1, TTL 1]
5   62.115.136.213  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
                                              4.08 ms / 4.36 ms / 3.87 ms
6   118.85.205.81   AS4134   [CHINANET-BB]    德国 黑森州 美因河畔法兰克福 Telia-CTEuro-PoP chinatelecom.com.cn  电信
                                              4.84 ms / 6.59 ms / 6.09 ms
7   *
8   202.97.91.25    AS4134   [CHINANET-BB]    中国 上海市   chinatelecom.com.cn  电信
                                              197.33 ms / 197.32 ms / 211.96 ms
9   202.97.24.209   AS4134   [CHINANET-BB]    中国 上海市   chinatelecom.com.cn  电信
                                              184.25 ms / 188.04 ms / * ms
10  101.95.89.37    AS4812   [CHINANET-SH]    中国 上海市   chinatelecom.cn  电信
                                              * ms / * ms / 385.07 ms
11  101.95.89.46    AS4812   [CHINANET-SH]    中国 上海市   chinatelecom.cn  电信
                                              * ms / * ms / 421.37 ms
12  *
13  61.152.87.174   AS4812   [CHINANET-SH]    中国 上海市   chinatelecom.cn  电信
                                              202.59 ms / 198.18 ms / 201.15 ms
14  202.101.21.178  AS4812   [CHINANET-SH]    中国 上海市  浦东新区 chinatelecom.cn  电信
                                              201.27 ms / 201.13 ms / 201.96 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.sha-9808.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   45.157.176.3    AS197540                  德国 巴伐利亚州 纽伦堡  netcup.de
                                              0.61 ms / 0.58 ms / 0.60 ms
2   94.16.25.76     AS47147  [ANX-NET]        德国 黑森州 美因河畔法兰克福  anexia.com
                                              1.10 ms / 0.99 ms / 4.08 ms
3   62.115.46.182   AS1299   [ARELION-NET]    德国 巴伐利亚州 纽伦堡  arelion.com
                                              0.82 ms / 0.89 ms / 0.70 ms
4   62.115.140.202  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
                                              4.79 ms / 4.07 ms / 3.86 ms
    [MPLS: Lbl 404160, TC 0, S 1, TTL 1]
5   62.115.114.89   AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-b5-link.ip.twelve99.net               4.10 ms / 4.12 ms / 3.98 ms
6   62.115.47.45    AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福 Telia-CM-Cust arelion.com
    chinamobile-ic-355891.ip.twelve99-cust.net   4.59 ms / 4.55 ms / 4.63 ms
7   223.120.10.85   AS58453  [CMI-INT]        德国 黑森州 美茵河畔法兰克福  cmi.chinamobile.com  移动
                                              4.94 ms / 5.25 ms / 16.83 ms
8   223.120.12.194  AS58453  [CMI-INT]        中国 上海市   cmi.chinamobile.com  移动
                                              279.01 ms / 293.11 ms / 300.59 ms
9   221.183.89.182  AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              261.79 ms / 264.17 ms / 262.01 ms
10  221.183.89.69   AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              263.69 ms / * ms / * ms
11  221.183.89.46   AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              364.90 ms / * ms / * ms
12  221.183.39.130  AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              297.41 ms / * ms / * ms
13  120.204.34.85   AS24400  [APNIC-AP]       中国 上海市   chinamobile.com  移动
                                              288.08 ms / 299.19 ms / 308.97 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.can-4837.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   45.157.176.3    AS197540                  德国 巴伐利亚州 纽伦堡  netcup.de
                                              0.49 ms / 0.72 ms / 0.66 ms
2   94.16.25.76     AS47147  [ANX-NET]        德国 黑森州 美因河畔法兰克福  anexia.com
                                              2.01 ms / 0.99 ms / 1.48 ms
3   62.115.46.182   AS1299   [ARELION-NET]    德国 巴伐利亚州 纽伦堡  arelion.com
                                              0.65 ms / 0.69 ms / 0.69 ms
4   62.115.140.202  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
                                              4.10 ms / 4.10 ms / 4.01 ms
    [MPLS: Lbl 403020, TC 0, S 1, TTL 1]
5   62.115.124.117  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
                                              4.59 ms / * ms / * ms
6   219.158.43.25   AS4837   [CU169-BACKBONE] 德国 黑森州 美因河畔法兰克福  chinaunicom.cn  联通
                                              253.69 ms / 254.79 ms / 253.42 ms
7   219.158.20.173  AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              255.14 ms / 258.10 ms / 256.96 ms
8   219.158.103.29  AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              285.81 ms / 289.27 ms / 283.71 ms
9   *
10  112.97.0.86     AS17816  [APNIC-AP]       中国 广东省 广州市  chinaunicom.cn  联通
                                              260.19 ms / 261.23 ms / 258.40 ms
11  221.4.4.70      AS17816  [UNICOM-GD]      中国 广东省 广州市  chinaunicom.cn
                                              258.32 ms / 257.96 ms / 257.98 ms
12  221.4.1.77      AS17816  [UNICOM-GD]      中国 广东省 广州市  chinaunicom.cn  联通
                                              256.02 ms / 256.15 ms / 255.84 ms
13  58.254.255.1    AS17816                   中国 广东省 广州市 黄埔区 chinaunicom.cn  联通
                                              195.25 ms / 195.38 ms / 195.30 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.can-4134.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   45.157.176.3    AS197540                  德国 巴伐利亚州 纽伦堡  netcup.de
                                              0.40 ms / 0.60 ms / 0.76 ms
2   94.16.25.76     AS47147  [ANX-NET]        德国 黑森州 美因河畔法兰克福  anexia.com
                                              15.45 ms / 1.23 ms / 1.04 ms
3   62.115.46.182   AS1299   [ARELION-NET]    德国 巴伐利亚州 纽伦堡  arelion.com
                                              0.60 ms / 0.62 ms / 1.56 ms
4   62.115.140.202  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
                                              4.25 ms / 4.18 ms / 3.94 ms
    [MPLS: Lbl 404160, TC 0, S 1, TTL 1]
5   62.115.114.89   AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-b5-link.ip.twelve99.net               4.22 ms / 4.13 ms / 5.00 ms
6   118.85.205.81   AS4134   [CHINANET-BB]    德国 黑森州 美因河畔法兰克福 Telia-CTEuro-PoP chinatelecom.com.cn  电信
                                              5.65 ms / 5.13 ms / 4.78 ms
7   *
8   202.97.12.30    AS4134   [CHINANET-BB]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              196.96 ms / 197.15 ms / 197.13 ms
9   202.97.82.61    AS4134   [CHINANET-BB]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              415.57 ms / * ms / * ms
10  *
11  121.14.50.190   AS4134   [CHINANET-GD]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              207.48 ms / 207.51 ms / 207.40 ms
12  125.88.170.66   AS4134   [CHINANET-GD]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              210.43 ms / 210.30 ms / 210.28 ms
13  14.116.225.60   AS4134                    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              205.68 ms / 205.53 ms / 205.62 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.can-9808.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   45.157.176.3    AS197540                  德国 巴伐利亚州 纽伦堡  netcup.de
                                              2.35 ms / 0.53 ms / 0.63 ms
2   94.16.25.76     AS47147  [ANX-NET]        德国 黑森州 美因河畔法兰克福  anexia.com
                                              1.08 ms / 1.10 ms / 1.43 ms
3   62.115.46.182   AS1299   [ARELION-NET]    德国 巴伐利亚州 纽伦堡  arelion.com
                                              0.93 ms / 0.63 ms / 0.68 ms
4   62.115.140.202  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
                                              4.27 ms / 4.15 ms / 4.06 ms
    [MPLS: Lbl 404160, TC 0, S 1, TTL 1]
5   62.115.114.89   AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
                                              3.95 ms / 3.95 ms / 4.06 ms
6   62.115.47.45    AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福 Telia-CM-Cust arelion.com
                                              4.75 ms / 4.69 ms / 4.86 ms
7   223.120.10.41   AS58453  [CMI-INT]        德国 黑森州 美茵河畔法兰克福  cmi.chinamobile.com  移动
                                              4.73 ms / 4.95 ms / 4.95 ms
8   223.120.15.162  AS58453  [CMI-INT]        中国 广东省 广州市  cmi.chinamobile.com  移动
                                              212.27 ms / 205.69 ms / 209.25 ms
9   221.183.68.125  AS9808   [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              205.16 ms / 204.78 ms / 204.87 ms
10  221.183.92.21   AS9808   [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              205.09 ms / 204.81 ms / 204.90 ms
11  221.183.89.246  AS9808   [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              401.91 ms / * ms / * ms
12  *
13  211.136.208.110 AS56040  [CMNET]          中国 广东省 深圳市  chinamobile.com  移动
                                              200.34 ms / 200.44 ms / 200.41 ms
14  211.136.208.166 AS56040  [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              204.24 ms / 204.10 ms / 204.34 ms
15  211.136.241.242 AS56040  [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              211.09 ms / 210.91 ms / 211.03 ms
16  183.235.228.158 AS56040  [APNIC-AP]       中国 广东省 广州市  chinamobile.com  移动
                                              210.31 ms / 210.21 ms / 209.99 ms
17  120.198.26.254  AS56040  [APNIC-AP]       中国 广东省 广州市  chinamobile.com  移动
                                              214.66 ms / 214.50 ms / 214.73 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;GB6跑了半个小时，性能属实拉跨。除了无限流量，口子够大以外，没什么优点。&lt;/p&gt;
</content:encoded></item><item><title>HostingViet越南河内VPS再次测评</title><link>https://yushum.com/posts/hostingviet%E8%B6%8A%E5%8D%97%E6%B2%B3%E5%86%85vps%E5%86%8D%E6%AC%A1%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/hostingviet%E8%B6%8A%E5%8D%97%E6%B2%B3%E5%86%85vps%E5%86%8D%E6%AC%A1%E6%B5%8B%E8%AF%84/</guid><pubDate>Fri, 10 Nov 2023 20:04:05 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;更新：最近已经封禁udp协议出站，包括dns使用的53端口，因此无法正常使用，不建议购买。&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;s&gt;HostingViet这家之前做过测评&lt;a href=&quot;https://yushum.com/archives/395&quot;&gt;HostingViet越南河内VPS测评&lt;/a&gt;，似乎很重视国人市场，促销邮件都以中文发的。但是由于线路一直调整，所以时隔多日再次测试看看。&lt;/s&gt;&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2023-09-06                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Fri Nov 10 06:32:17 PM CST 2023

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 9 minutes
Processor  : Intel(R) Xeon(R) CPU E5-2673 v4 @ 2.30GHz
CPU cores  : 1 @ 2299.988 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 1.9 GiB
Swap       : 975.0 MiB
Disk       : 18.6 GiB
Distro     : Debian GNU/Linux 12 (bookworm)
Kernel     : 6.1.0-13-cloud-amd64
VM Type    : KVM
IPv4/IPv6  : ✔ Online / ❌ Offline

IPv4 Network Information:
---------------------------------
ISP        : MOCLAMESOUL
ASN        : AS140825 Thien Quang Digital technology joint stock company
Host       : MOC LAM Trading and Services Joint Stock Company
Location   : Quận Long Biên, Hanoi (HN)
Country    : Vietnam

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 60.82 MB/s   (15.2k) | 819.61 MB/s  (12.8k)
Write      | 60.94 MB/s   (15.2k) | 823.92 MB/s  (12.8k)
Total      | 121.76 MB/s  (30.4k) | 1.64 GB/s    (25.6k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 1.09 GB/s     (2.1k) | 798.41 MB/s    (779)
Write      | 1.15 GB/s     (2.2k) | 851.58 MB/s    (831)
Total      | 2.24 GB/s     (4.3k) | 1.65 GB/s     (1.6k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | busy            | busy            | 232 ms
Scaleway        | Paris, FR (10G)           | busy            | busy            | 207 ms
NovoServe       | North Holland, NL (40G)   | 150 Mbits/sec   | busy            | 221 ms
Uztelecom       | Tashkent, UZ (10G)        | 152 Mbits/sec   | 9.21 Mbits/sec  | 158 ms
Clouvider       | NYC, NY, US (10G)         | 142 Mbits/sec   | 45.3 Mbits/sec  | 246 ms
Clouvider       | Dallas, TX, US (10G)      | busy            | 38.4 Mbits/sec  | 323 ms
Clouvider       | Los Angeles, CA, US (10G) | 150 Mbits/sec   | 51.5 Mbits/sec  | 183 ms

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 572
Multi Core      | 548
Full Test       | https://browser.geekbench.com/v5/cpu/21932067

Geekbench 6 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 683
Multi Core      | 694
Full Test       | https://browser.geekbench.com/v6/cpu/3480707

YABS completed in 24 min 52 sec
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2023-10-15
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) CPU E5-2673 v4 @ 2.30GHz
 CPU Cores          : 1 @ 2299.988 MHz
 CPU Cache          : 16384 KB
 AES-NI             : ✓ Enabled
 VM-x/AMD-V         : ✓ Enabled
 Total Disk         : 19.5 GB (991.6 MB Used)
 Total Mem          : 1.9 GB (199.0 MB Used)
 Total Swap         : 975.0 MB (2.8 MB Used)
 System uptime      : 0 days, 0 hour 46 min
 Load average       : 0.00, 0.05, 0.24
 OS                 : Debian GNU/Linux 12
 Arch               : x86_64 (64 Bit)
 Kernel             : 6.1.0-13-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 IPv4/IPv6          : ✓ Online / ✗ Offline
 Organization       : AS140825 Thien Quang Digital technology joint stock company
 Location           : Lâm / VN
 Region             : Nam Định
----------------------------------------------------------------------
 I/O Speed(1st run) : 481 MB/s
 I/O Speed(2nd run) : 576 MB/s
 I/O Speed(3rd run) : 606 MB/s
 I/O Speed(average) : 554.3 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    158.39 Mbps       152.25 Mbps         9.53 ms
 Los Angeles, US  169.38 Mbps       157.59 Mbps         174.45 ms
 Dallas, US       165.67 Mbps       155.37 Mbps         203.07 ms
 Montreal, CA     167.49 Mbps       145.36 Mbps         241.35 ms
 Paris, FR        167.19 Mbps       156.15 Mbps         221.27 ms
 Amsterdam, NL    167.76 Mbps       157.91 Mbps         242.72 ms
 Shanghai, CN     157.50 Mbps       154.49 Mbps         251.46 ms
 Chongqing, CN    27.17 Mbps        30.30 Mbps          116.67 ms
 Hongkong, CN     159.26 Mbps       152.24 Mbps         20.07 ms
 Mumbai, IN       163.75 Mbps       158.90 Mbps         100.09 ms
 Singapore, SG    163.65 Mbps       160.10 Mbps         50.55 ms
 Tokyo, JP        162.85 Mbps       151.69 Mbps         60.13 ms
----------------------------------------------------------------------
 Finished in        : 5 min 59 sec
 Timestamp          : 2023-11-10 19:15:28 CST
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Fri Nov 10 07:30:01 PM CST 2023

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Thien Quang Digital technology joint stock company (103.12.*.*)


============[ Multination ]============
 Dazn:                                  Yes (Region: VN)
 HotStar:                               No
 Disney+:                               Failed
 Netflix:                               Yes (Region: VN)
 YouTube Premium:                       Yes (Region: VN)
 Amazon Prime Video:                    Yes (Region: VN)
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   VN
 Viu.com:                               No
 YouTube CDN:                           FPT in
 Netflix Preferred CDN:                 Hong Kong
 Spotify Registration:                  Yes (Region: VN)
 Steam Currency:                        VND
 ChatGPT:                               Yes
=======================================
==========[ SouthEastAsia ]============
 HBO GO Asia:                           No
 B-Global SouthEastAsia:                Yes
 ---SG---
 MeWatch:                               Yes
 ---TH---
 AIS Play:                              No
 B-Global Thailand Only:                No
 ---ID---
 B-Global Indonesia Only:               No
 ---VN---
 K+:                                    Yes
 B-Global Việt Nam Only:                Yes
=======================================
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/11/10/654e18cfaec02.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/11/10/654e18cf48d9a.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/11/10/654e18cfbd70f.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.pek-4837.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   103.12.76.2     AS140825                  越南 Nam Dinh Lâm  vnnic.vn
                                              5.18 ms / 11.15 ms / 0.74 ms
2   42.112.4.25     AS18403  [FPT-BACKBONE]   越南 河内市   fpt.vn
                                              0.95 ms / 1.35 ms / 0.83 ms
    [MPLS: Lbl 183136, TC 0, S 1, TTL 1]
3   1.53.123.85     AS18403                   越南 河内市   fpt.vn
                                              1.21 ms / 1.24 ms / 2.34 ms
    [MPLS: Lbl 120906, TC 0, S 1, TTL 1]
4   118.69.253.73   AS18403  [FPT-NET]        中国 香港   fpt.vn
                                              18.50 ms / 18.77 ms / 19.53 ms
5   157.238.227.36  AS2914                    中国 香港   ntt.net
    ae-23.a02.tkokhk01.hk.bb.gin.ntt.net      19.38 ms / 19.69 ms / 19.53 ms
6   *
7   129.250.2.42    AS2914   [NTT-BACKBONE]   日本 大阪府 大阪  ntt.net
    ae-4.r26.osakjp02.jp.bb.gin.ntt.net       74.71 ms / 73.75 ms / 74.35 ms
    [MPLS: Lbl 300, TC 0, S 1, TTL 1]
8   129.250.7.31    AS2914   [NTT-BACKBONE]   日本 大阪府 大阪  ntt.net
    ae-1.r03.osakjp02.jp.bb.gin.ntt.net       70.92 ms / 70.63 ms / 70.63 ms
9   219.158.34.153  AS4837   [CU169-BACKBONE] 中国 北京市   chinaunicom.cn  联通
                                              165.65 ms / 161.76 ms / 164.77 ms
10  219.158.3.181   AS4837   [CU169-BACKBONE] 中国 北京市   chinaunicom.cn  联通
                                              155.28 ms / 254.35 ms / * ms
11  219.158.5.153   AS4837   [CU169-BACKBONE] 中国 北京市   chinaunicom.cn  联通
                                              361.13 ms / * ms / * ms
12  124.65.194.38   AS4808   [UNICOM-BJ]      中国 北京市   chinaunicom.cn  联通
                                              256.59 ms / 259.23 ms / * ms
13  219.232.11.202  AS4808   [BGTELECOM]      中国 北京市   chinaunicom.cn  联通
                                              155.54 ms / 154.50 ms / 154.40 ms
14  *
15  *
16  *
17  123.125.96.156  AS4808   [UNICOM-BJ]      中国 北京市   chinaunicom.cn  联通
                                              157.46 ms / 157.17 ms / 157.69 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.pek-4134.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   103.12.76.2     AS140825                  越南 Nam Dinh Lâm  vnnic.vn
                                              0.68 ms / 0.88 ms / 0.80 ms
2   42.112.2.6      AS18403  [FPT-BACKBONE]   越南 河内 河内市  fpt.vn
                                              1.16 ms / 1.05 ms / 1.00 ms
    [MPLS: Lbl 2076, TC 0, S 1, TTL 1]
3   42.112.2.37     AS18403  [FPT-BACKBONE]   越南 河内市   fpt.vn
                                              101.80 ms / 101.94 ms / * ms
    [MPLS: Lbl 121485, TC 0, S 1, TTL 1]
4   *
5   118.69.247.64   AS18403  [FPT-NET]        新加坡    fpt.vn
                                              33.00 ms / 32.90 ms / 32.62 ms
6   *
7   62.115.141.126  AS1299   [ARELION-NET]    美国 加利福尼亚州 圣何塞  arelion.com
    sjo-b23-link.ip.twelve99.net              182.73 ms / 182.72 ms / 182.95 ms
8   218.30.54.181   AS4134   [CHINANET-US]    美国 加利福尼亚州 圣何塞 Cogent/Telia-CT-PoP chinatelecom.com.cn  电信
                                              184.13 ms / 183.40 ms / 187.22 ms
9   *
10  *
11  *
12  *
13  *
14  36.110.6.153    AS4847                    中国 北京市  西城区 chinatelecom.cn  电信
    153.6.110.36.static.bjtelecom.net         417.21 ms / 413.22 ms / * ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.pek-9808.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   103.12.76.2     AS140825                  越南 Nam Dinh Lâm  vnnic.vn
                                              0.91 ms / 11.45 ms / 5.28 ms
2   42.112.4.25     AS18403  [FPT-BACKBONE]   越南 河内市   fpt.vn
                                              1.14 ms / 1.39 ms / * ms
    [MPLS: Lbl 183576, TC 0, S 1, TTL 1]
3   1.53.123.85     AS18403                   越南 河内市   fpt.vn
                                              1.52 ms / 1.08 ms / 6.62 ms
    [MPLS: Lbl 121493, TC 0, S 1, TTL 1]
4   118.69.253.73   AS18403  [FPT-NET]        中国 香港   fpt.vn
                                              37.98 ms / 22.03 ms / 22.39 ms
    [MPLS: Lbl 1140, TC 0, S 1, TTL 1]
5   118.69.184.73   AS18403  [FPT-NET]        中国 香港  FPT-Telia-Peer fpt.vn
                                              22.76 ms / 22.26 ms / 22.24 ms
6   62.115.35.126   AS1299   [ARELION-NET]    中国 香港   arelion.com
    hnk-b1-link.ip.twelve99.net               22.34 ms / 22.34 ms / 22.08 ms
7   62.115.135.143  AS1299   [ARELION-NET]    中国 香港   arelion.com
    hnk-b4-link.ip.twelve99.net               23.13 ms / 22.74 ms / 29.15 ms
8   *
9   62.115.123.140  AS1299   [ARELION-NET]    美国 加利福尼亚州 圣何塞  arelion.com
    sjo-b23-link.ip.twelve99.net              * ms / * ms / 377.88 ms
10  62.115.171.215  AS1299   [ARELION-NET]    美国 加利福尼亚州 圣何塞 Telia-CMI-Peer arelion.com
    chinamobile-ic-342121.ip.twelve99-cust.net   224.66 ms / 224.00 ms / 224.56 ms
11  223.120.6.225   AS58453  [CMI-INT]        美国 加利福尼亚州 圣何塞  cmi.chinamobile.com  移动
                                              227.98 ms / 227.27 ms / * ms
12  223.120.12.34   AS58453  [CMI-INT]        中国 北京市   cmi.chinamobile.com  移动
                                              245.18 ms / 244.55 ms / 263.50 ms
13  221.183.55.106  AS9808   [CMNET]          中国 北京市  回国到达层 chinamobile.com  移动
                                              266.63 ms / 265.29 ms / 265.99 ms
14  221.183.46.250  AS9808   [CMNET]          中国 北京市   chinamobile.com  移动
                                              246.23 ms / 246.03 ms / 246.68 ms
15  221.183.89.98   AS9808   [CMNET]          中国 北京市   chinamobile.com  移动
                                              252.73 ms / 352.71 ms / * ms
16  *
17  211.136.66.129  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              250.56 ms / 250.30 ms / 251.46 ms
18  211.136.67.166  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              275.03 ms / 275.34 ms / 274.66 ms
19  211.136.95.226  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              252.10 ms / 250.72 ms / 251.74 ms
20  *
21  *
22  211.136.25.153  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              254.00 ms / 249.75 ms / 250.36 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.sha-4837.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   103.12.76.2     AS140825                  越南 Nam Dinh Lâm  vnnic.vn
                                              1.68 ms / 0.82 ms / 0.88 ms
2   42.112.2.6      AS18403  [FPT-BACKBONE]   越南 河内 河内市  fpt.vn
                                              1.19 ms / 0.96 ms / 0.83 ms
    [MPLS: Lbl 2084, TC 0, S 1, TTL 1]
3   42.112.2.37     AS18403  [FPT-BACKBONE]   越南 河内市   fpt.vn
                                              1.28 ms / * ms / * ms
    [MPLS: Lbl 121493, TC 0, S 1, TTL 1]
4   118.69.253.73   AS18403  [FPT-NET]        中国 香港   fpt.vn
                                              22.34 ms / 22.45 ms / 22.22 ms
    [MPLS: Lbl 1140, TC 0, S 1, TTL 1]
5   118.69.184.73   AS18403  [FPT-NET]        中国 香港  FPT-Telia-Peer fpt.vn
                                              24.01 ms / 22.26 ms / 22.49 ms
6   62.115.35.126   AS1299   [ARELION-NET]    中国 香港   arelion.com
    hnk-b1-link.ip.twelve99.net               22.34 ms / 22.12 ms / 22.14 ms
7   *
8   62.115.122.27   AS1299   [ARELION-NET]    法国 普罗旺斯-阿尔卑斯-蓝色海岸大区 马赛  arelion.com
    mei-b4-link.ip.twelve99.net               217.92 ms / 218.94 ms / 217.92 ms
    [MPLS: Lbl 403020, TC 0, S 1, TTL 1]
9   62.115.114.202  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-bb2-link.ip.twelve99.net              235.97 ms / 235.25 ms / 235.66 ms
    [MPLS: Lbl 403020, TC 0, S 1, TTL 1]
10  62.115.124.119  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-b11-link.ip.twelve99.net              * ms / * ms / 426.60 ms
11  219.158.43.25   AS4837   [CU169-BACKBONE] 德国 黑森州 美因河畔法兰克福  chinaunicom.cn  联通
                                              293.44 ms / 293.33 ms / 293.26 ms
12  219.158.14.153  AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              262.69 ms / 262.67 ms / 261.56 ms
13  219.158.3.165   AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              266.70 ms / 270.12 ms / 273.18 ms
14  219.158.3.17    AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              265.46 ms / 265.27 ms / 263.95 ms
15  219.158.6.253   AS4837   [CU169-BACKBONE] 中国 上海市   chinaunicom.cn  联通
                                              270.18 ms / 271.09 ms / 270.29 ms
16  *
17  139.226.4.1     AS17621  [UNICOM-SH]      中国 上海市  黄浦区 chinaunicom.cn  联通
                                              274.82 ms / 274.98 ms / 274.74 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.sha-4134.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   103.12.76.2     AS140825                  越南 Nam Dinh Lâm  vnnic.vn
                                              0.64 ms / 0.75 ms / 0.70 ms
2   42.112.4.25     AS18403  [FPT-BACKBONE]   越南 河内市   fpt.vn
                                              1.05 ms / 1.17 ms / 1.09 ms
    [MPLS: Lbl 270, TC 0, S 1, TTL 1]
3   *
4   42.112.2.193    AS18403  [FPT-BACKBONE]   越南 河内市   fpt.vn
                                              102.08 ms / 101.94 ms / * ms
    [MPLS: Lbl 183568, TC 0, S 1, TTL 1]
5   *
6   *
7   118.69.247.64   AS18403  [FPT-NET]        新加坡    fpt.vn
                                              33.04 ms / 32.72 ms / 32.73 ms
8   *
9   62.115.141.126  AS1299   [ARELION-NET]    美国 加利福尼亚州 圣何塞  arelion.com
                                              183.05 ms / 183.13 ms / 182.85 ms
10  218.30.54.181   AS4134   [CHINANET-US]    美国 加利福尼亚州 圣何塞 Cogent/Telia-CT-PoP chinatelecom.com.cn  电信
                                              184.37 ms / 183.38 ms / 183.43 ms
11  202.97.43.113   AS4134   [CHINANET-BB]    中国 上海市  X-I chinatelecom.com.cn  电信
                                              * ms / 216.51 ms / * ms
12  *
13  *
14  61.152.26.89    AS4812   [CHINANET-SH]    中国 上海市   chinatelecom.cn  电信
                                              213.31 ms / 216.84 ms / 211.77 ms
15  *
16  *
17  202.101.21.178  AS4812   [CHINANET-SH]    中国 上海市  浦东新区 chinatelecom.cn  电信
                                              215.19 ms / 214.93 ms / 247.48 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.sha-9808.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   103.12.76.2     AS140825                  越南 Nam Dinh Lâm  vnnic.vn
                                              1.11 ms / 0.72 ms / 0.76 ms
2   42.112.4.25     AS18403  [FPT-BACKBONE]   越南 河内市   fpt.vn
                                              102.13 ms / * ms / * ms
    [MPLS: Lbl 183136, TC 0, S 1, TTL 1]
3   1.53.123.85     AS18403                   越南 河内市   fpt.vn
                                              1.50 ms / 1.16 ms / 1.14 ms
    [MPLS: Lbl 120906, TC 0, S 1, TTL 1]
4   118.69.253.73   AS18403  [FPT-NET]        中国 香港   fpt.vn
                                              20.86 ms / 20.75 ms / 20.64 ms
5   223.119.80.85   AS58453  [CMI-INT]        中国 香港   cmi.chinamobile.com  移动
                                              248.79 ms / * ms / * ms
6   223.120.2.117   AS58453  [CMI-INT]        中国 香港   cmi.chinamobile.com  移动
                                              46.84 ms / 47.34 ms / 47.22 ms
7   223.120.3.194   AS58453  [CMI-INT]        中国 上海市   cmi.chinamobile.com  移动
                                              173.05 ms / 173.18 ms / * ms
8   221.183.89.182  AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              98.40 ms / 98.21 ms / 98.36 ms
9   221.183.89.69   AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              78.24 ms / 78.60 ms / 73.27 ms
10  221.183.89.46   AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              75.28 ms / 74.60 ms / * ms
11  *
12  120.204.34.85   AS24400  [APNIC-AP]       中国 上海市   chinamobile.com  移动
                                              82.56 ms / 195.31 ms / * ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.can-4837.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   103.12.76.2     AS140825                  越南 Nam Dinh Lâm  vnnic.vn
                                              1.02 ms / 9.32 ms / 0.66 ms
2   42.112.4.25     AS18403  [FPT-BACKBONE]   越南 河内市   fpt.vn
                                              1.15 ms / * ms / * ms
    [MPLS: Lbl 183136, TC 0, S 1, TTL 1]
3   1.53.123.85     AS18403                   越南 河内市   fpt.vn
                                              2.07 ms / 1.39 ms / 1.16 ms
    [MPLS: Lbl 120906, TC 0, S 1, TTL 1]
4   118.69.253.73   AS18403  [FPT-NET]        中国 香港   fpt.vn
                                              20.68 ms / 20.87 ms / 20.57 ms
5   157.238.227.36  AS2914                    中国 香港   ntt.net
                                              21.81 ms / 21.51 ms / 21.65 ms
6   *
7   *
8   129.250.2.42    AS2914   [NTT-BACKBONE]   日本 大阪府 大阪  ntt.net
                                              176.30 ms / 177.89 ms / * ms
    [MPLS: Lbl 7653, TC 0, S 0, TTL 1]
    [MPLS: Lbl 499, TC 0, S 1, TTL 2]
9   129.250.7.78    AS2914   [NTT-BACKBONE]   日本 东京都 东京  ntt.net
    ae-22.r32.tokyjp05.jp.bb.gin.ntt.net      71.83 ms / * ms / * ms
    [MPLS: Lbl 499, TC 0, S 1, TTL 1]
10  129.250.5.7     AS2914   [NTT-BACKBONE]   日本 东京都 东京  ntt.net
    ae-1.r03.tokyjp05.jp.bb.gin.ntt.net       73.42 ms / 73.31 ms / 73.21 ms
11  129.250.66.162  AS2914   [NTT-BACKBONE]   日本 东京都 东京  ntt.net
    xe-2.cnc-g.tokyjp05.jp.bb.gin.ntt.net     169.17 ms / 171.86 ms / 167.92 ms
12  219.158.96.206  AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              283.66 ms / 283.91 ms / * ms
13  *
14  112.97.0.86     AS17816  [APNIC-AP]       中国 广东省 广州市  chinaunicom.cn  联通
                                              185.96 ms / 184.86 ms / 189.75 ms
15  221.4.4.70      AS17816  [UNICOM-GD]      中国 广东省 广州市  chinaunicom.cn
                                              180.79 ms / 180.53 ms / 179.72 ms
16  221.4.1.77      AS17816  [UNICOM-GD]      中国 广东省 广州市  chinaunicom.cn  联通
                                              179.63 ms / 178.68 ms / 177.65 ms
17  58.254.255.1    AS17816                   中国 广东省 广州市 黄埔区 chinaunicom.cn  联通
                                              111.33 ms / 111.18 ms / 112.03 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.can-4134.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   103.12.76.2     AS140825                  越南 Nam Dinh Lâm  vnnic.vn
                                              1.86 ms / 0.78 ms / 5.35 ms
2   42.112.4.25     AS18403  [FPT-BACKBONE]   越南 河内市   fpt.vn
                                              2.46 ms / 2.69 ms / 1.23 ms
    [MPLS: Lbl 270, TC 0, S 1, TTL 1]
3   42.112.2.192    AS18403  [FPT-BACKBONE]   越南 河内市   fpt.vn
                                              0.74 ms / * ms / * ms
4   42.112.2.193    AS18403  [FPT-BACKBONE]   越南 河内市   fpt.vn
                                              1.48 ms / 102.47 ms / * ms
    [MPLS: Lbl 153099, TC 0, S 1, TTL 1]
5   118.69.249.26   AS18403  [FPT-NET]        中国 香港  FPT-HK-PoP fpt.vn
                                              20.34 ms / 20.46 ms / 20.47 ms
6   203.215.232.177 AS4134   [CHINANET-FJ]    中国 香港  FPT-CTG-Peer chinatelecom.com.cn  电信
                                              81.07 ms / 76.14 ms / 79.51 ms
7   202.97.22.125   AS4134   [CHINANET-BB]    中国 广东省 广州市 X-I chinatelecom.com.cn  电信
                                              77.88 ms / 80.94 ms / 77.71 ms
8   202.97.12.18    AS4134   [CHINANET-BB]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              179.68 ms / * ms / * ms
9   202.97.82.21    AS4134   [CHINANET-BB]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              88.95 ms / 88.86 ms / * ms
10  *
11  113.108.209.98  AS4134   [CHINANET-GD]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              88.53 ms / 88.82 ms / 88.11 ms
12  125.88.170.66   AS4134   [CHINANET-GD]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              122.03 ms / 91.03 ms / 91.57 ms
13  14.116.225.60   AS4134                    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              100.51 ms / 201.55 ms / * ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.can-9808.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   103.12.76.2     AS140825                  越南 Nam Dinh Lâm  vnnic.vn
                                              0.96 ms / 0.96 ms / 0.87 ms
2   42.112.2.6      AS18403  [FPT-BACKBONE]   越南 河内 河内市  fpt.vn
                                              1.21 ms / 0.86 ms / 1.69 ms
    [MPLS: Lbl 2019, TC 0, S 1, TTL 1]
3   42.112.2.37     AS18403  [FPT-BACKBONE]   越南 河内市   fpt.vn
                                              101.83 ms / 101.24 ms / * ms
    [MPLS: Lbl 120906, TC 0, S 1, TTL 1]
4   118.69.253.73   AS18403  [FPT-NET]        中国 香港   fpt.vn
                                              20.47 ms / 20.50 ms / 21.52 ms
5   *
6   223.120.2.117   AS58453  [CMI-INT]        中国 香港   cmi.chinamobile.com  移动
                                              47.01 ms / * ms / * ms
7   223.120.2.102   AS58453  [CMI-INT]        中国 广东省 广州市  cmi.chinamobile.com  移动
                                              63.96 ms / 56.92 ms / 52.20 ms
8   221.183.55.82   AS9808   [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              78.08 ms / 78.04 ms / 66.50 ms
9   221.183.92.21   AS9808   [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              54.89 ms / 54.83 ms / 59.92 ms
10  *
11  *
12  183.235.226.194 AS56040  [APNIC-AP]       中国 广东省 广州市  chinamobile.com  移动
                                              73.61 ms / 65.51 ms / 61.56 ms
13  183.235.228.6   AS56040  [APNIC-AP]       中国 广东省 广州市  chinamobile.com  移动
                                              66.60 ms / 64.52 ms / 62.64 ms
14  183.235.228.158 AS56040  [APNIC-AP]       中国 广东省 广州市  chinamobile.com  移动
                                              67.20 ms / 89.72 ms / 65.49 ms
15  120.198.26.254  AS56040  [APNIC-AP]       中国 广东省 广州市  chinamobile.com  移动
                                              96.78 ms / 97.18 ms / 96.21 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;去程：电信联通绕日，移动绕新加坡。&lt;/p&gt;
&lt;p&gt;回程：&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;回程路由&lt;/td&gt;
&lt;td&gt;北京&lt;/td&gt;
&lt;td&gt;上海&lt;/td&gt;
&lt;td&gt;广州&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;电信&lt;/td&gt;
&lt;td&gt;绕美&lt;/td&gt;
&lt;td&gt;绕美&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;直连&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;联通&lt;/td&gt;
&lt;td&gt;绕日&lt;/td&gt;
&lt;td&gt;绕欧洲&lt;/td&gt;
&lt;td&gt;绕日&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;移动&lt;/td&gt;
&lt;td&gt;绕美&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;直连&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;直连&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;只有南方移动可以用，而且由于路由经常变动，不建议直连使用。网络和性能较差，IP比较干净，可以落地使用。&lt;/p&gt;
</content:encoded></item><item><title>Hetzner德国法尔肯施泰因ARM VPS测评</title><link>https://yushum.com/posts/hetzner%E5%BE%B7%E5%9B%BD%E6%B3%95%E5%B0%94%E8%82%AF%E6%96%BD%E6%B3%B0%E5%9B%A0arm-vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/hetzner%E5%BE%B7%E5%9B%BD%E6%B3%95%E5%B0%94%E8%82%AF%E6%96%BD%E6%B3%B0%E5%9B%A0arm-vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Wed, 25 Oct 2023 19:16:03 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;最近一直在寻找低价高性能的VPS，发现HZ的似乎不错，跑个分看看。也不指望直连使用，索性就不开BBR了。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2023-09-06                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Wed Oct 25 07:16:57 AM UTC 2023

ARM compatibility is considered *experimental*

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 17 minutes
Processor  : Neoverse-N1
BIOS NotSpecified  CPU @ 2.0GHz
CPU cores  : 2 @ ??? MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 3.7 GiB
Swap       : 0.0 KiB
Disk       : 37.5 GiB
Distro     : Debian GNU/Linux 12 (bookworm)
Kernel     : 6.1.0-13-arm64
VM Type    : KVM
IPv4/IPv6  : ✔ Online / ✔ Online

IPv6 Network Information:
---------------------------------
ISP        : Hetzner Online GmbH
ASN        : AS24940 Hetzner Online GmbH
Host       : Hetzner
Location   : Gunzenhausen, Bavaria (BY)
Country    : Germany

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 144.95 MB/s  (36.2k) | 1.40 GB/s    (21.9k)
Write      | 144.86 MB/s  (36.2k) | 1.44 GB/s    (22.5k)
Total      | 289.82 MB/s  (72.4k) | 2.84 GB/s    (44.5k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 1.95 GB/s     (3.8k) | 1.95 GB/s     (1.9k)
Write      | 2.12 GB/s     (4.1k) | 2.17 GB/s     (2.1k)
Total      | 4.08 GB/s     (7.9k) | 4.12 GB/s     (4.0k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 5.75 Gbits/sec  | 7.15 Gbits/sec  | 25.1 ms
Scaleway        | Paris, FR (10G)           | busy            | 7.92 Gbits/sec  | 21.9 ms
NovoServe       | North Holland, NL (40G)   | 11.7 Gbits/sec  | 9.27 Gbits/sec  | 12.7 ms
Uztelecom       | Tashkent, UZ (10G)        | 2.54 Gbits/sec  | 1.77 Gbits/sec  | 87.9 ms
Clouvider       | NYC, NY, US (10G)         | 1.61 Gbits/sec  | busy            | 91.1 ms
Clouvider       | Dallas, TX, US (10G)      | 652 Mbits/sec   | 258 Kbits/sec   | 122 ms
Clouvider       | Los Angeles, CA, US (10G) | 715 Mbits/sec   | 915 Mbits/sec   | 148 ms

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 3.66 Gbits/sec  | 7.16 Gbits/sec  | 33.0 ms
Scaleway        | Paris, FR (10G)           | 6.16 Gbits/sec  | 7.71 Gbits/sec  | 22.0 ms
NovoServe       | North Holland, NL (40G)   | 11.5 Gbits/sec  | 7.56 Gbits/sec  | 12.6 ms
Uztelecom       | Tashkent, UZ (10G)        | 2.11 Gbits/sec  | 1.76 Gbits/sec  | 87.8 ms
Clouvider       | NYC, NY, US (10G)         | 1.28 Gbits/sec  | 1.74 Gbits/sec  | 91.5 ms
Clouvider       | Dallas, TX, US (10G)      | 1.10 Gbits/sec  | 6.65 Mbits/sec  | 123 ms
Clouvider       | Los Angeles, CA, US (10G) | 1.07 Gbits/sec  | 951 Mbits/sec   | 148 ms

Geekbench 6 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 1056
Multi Core      | 1918
Full Test       | https://browser.geekbench.com/v6/cpu/3236000

YABS completed in 14 min 46 sec
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;code&gt;CX22&lt;/code&gt; 的 &lt;code&gt;Geekbench 6&lt;/code&gt; 可参考 &lt;a href=&quot;https://browser.geekbench.com/v6/cpu/6458627&quot;&gt;https://browser.geekbench.com/v6/cpu/6458627&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2023-10-15
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : CPU model not detected
 CPU Cores          : 2
 AES-NI             : ✓ Enabled
 VM-x/AMD-V         : ✗ Disabled
 Total Disk         : 37.5 GB (2.3 GB Used)
 Total Mem          : 3.7 GB (244.2 MB Used)
 System uptime      : 0 days, 3 hour 50 min
 Load average       : 0.00, 0.00, 0.00
 OS                 : Debian GNU/Linux 12
 Arch               : aarch64 (64 Bit)
 Kernel             : 6.1.0-13-arm64
 TCP CC             : cubic
 Virtualization     : Dedicated
 IPv4/IPv6          : ✓ Online / ✓ Online
 Organization       : AS24940 Hetzner Online GmbH
 Location           : Falkenstein / DE
 Region             : Saxony
----------------------------------------------------------------------
 I/O Speed(1st run) : 1.1 GB/s
 I/O Speed(2nd run) : 965 MB/s
 I/O Speed(3rd run) : 937 MB/s
 I/O Speed(average) : 1009.5 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    888.96 Mbps       830.77 Mbps         0.64 ms
 Los Angeles, US  570.50 Mbps       3440.76 Mbps        158.74 ms
 Dallas, US       685.96 Mbps       5360.70 Mbps        130.65 ms
 Montreal, CA     179.21 Mbps       917.33 Mbps         102.46 ms
 Paris, FR        5168.63 Mbps      8078.59 Mbps        18.62 ms
 Amsterdam, NL    4642.59 Mbps      8795.83 Mbps        11.53 ms
 Shanghai, CN     564.16 Mbps       1863.37 Mbps        186.97 ms
 Chongqing, CN    0.23 Mbps         0.16 Mbps           264.51 ms
 Hongkong, CN     191.66 Mbps       3242.42 Mbps        258.48 ms
 Mumbai, IN       878.22 Mbps       6799.09 Mbps        117.40 ms
 Singapore, SG    388.81 Mbps       2766.17 Mbps        262.44 ms
 Tokyo, JP        336.34 Mbps       3101.49 Mbps        251.80 ms
----------------------------------------------------------------------
 Finished in        : 5 min 54 sec
 Timestamp          : 2023-10-25 10:56:28 UTC
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Wed Oct 25 10:57:18 AM UTC 2023

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Hetzner Online (49.13.*.*)


============[ Multination ]============
 Dazn:                                  Yes (Region: DE)
 HotStar:                               No
 Disney+:                               No
 Netflix:                               Originals Only
 YouTube Premium:                       Failed
 Amazon Prime Video:                    Yes (Region: DE)
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   DE
 Viu.com:                               No
 YouTube CDN:                           Frankfurt
 Netflix Preferred CDN:                 Frankfurt
 Spotify Registration:                  Yes (Region: DE)
 Steam Currency:                        EUR
 ChatGPT:                               Yes
=======================================
===============[ Europe ]==============
 Rakuten TV:                            Yes
 Funimation:                            Failed
 SkyShowTime:                           No
 HBO Max:                               No
 Maths Spot:                            Failed
 ---GB---
 Sky Go:                                No
 BritBox:                               Yes
 ITV Hub:                               No
 Channel 4:                             No
 Channel 5:                             No
 BBC iPLAYER:                           No
 Discovery+ UK:                         No
 ---FR---
 Salto:                                 Failed (Network Connection)
 Canal+:                                Yes
 Molotov:                               No
 ---DE---
 Joyn:                                  Yes
 Sky:                                   Yes
 ZDF:                                   Yes
 ---NL---
 NLZIET:                                Failed
 videoland:                             Failed (Network Connection)
 NPO Start Plus:                        No
 ---ES---
 PANTAYA:                               Failed (Network Connection)
 ---IT---
 Rai Play:                              Yes
 ---RU---
 Amediateka:                            Yes
=======================================


 ** 正在测试IPv6解锁情况
--------------------------------
 ** 您的网络为: Hetzner Online (2a01:4f8:c012:*:*)


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               No
 Disney+:                               Yes (Region: DE)
 Netflix:                               Originals Only
 YouTube Premium:                       Failed
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           Frankfurt
 Netflix Preferred CDN:                 Frankfurt
 Spotify Registration:                  Yes (Region: DE)
 Steam Currency:                        Failed (Network Connection)
 ChatGPT:                               Yes
=======================================
===============[ Europe ]==============
 Rakuten TV:                            Failed (Network Connection)
 Funimation:                            IPv6 Not Support
 SkyShowTime:                           No
 HBO Max:                               Failed (Network Connection)
 Maths Spot:                            IPv6 Not Support
 ---GB---
 Sky Go:                                Failed (Network Connection)
 BritBox:                               Yes
 ITV Hub:                               Failed (Network Connection)
 Channel 4:                             Failed (Network Connection)
 Channel 5:                             IPv6 Not Support
 BBC iPLAYER:                           Failed
 Discovery+ UK:                         IPv6 Not Support
 ---FR---
 Salto:                                 Failed (Network Connection)
 Canal+:                                Failed (Network Connection)
 Molotov:                               No
 ---DE---
 Joyn:                                  Failed (Network Connection)
 Sky:                                   Failed (Network Connection)
 ZDF:                                   Failed (Network Connection)
 ---NL---
 NLZIET:                                Failed
 videoland:                             Failed (Network Connection)
 NPO Start Plus:                        Failed (Network Connection)
 ---ES---
 PANTAYA:                               Failed (Network Connection)
 ---IT---
 Rai Play:                              Failed (Network Connection)
 ---RU---
 Amediateka:                            Failed (Network Connection)
=======================================
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/10/25/6538f87d254ba.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/10/25/6538f87cc58f1.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/10/25/6538f87d26013.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.pek-4837.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   172.31.1.1      *                         RFC1918
                                              2.20 ms / 2.53 ms / 3.01 ms
2   49.12.28.119    AS24940                   德国 巴伐利亚州 贡岑豪森  hetzner.com
    23518.your-cloud.host                     0.62 ms / 0.27 ms / 0.15 ms
3   *
4   213.239.235.25  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
                                              6.91 ms / 4.95 ms / 1.61 ms
5   213.239.239.81  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    spine2.cloud2.fsn1.hetzner.com            1.29 ms / 8.61 ms / 0.93 ms
6   213.239.239.129 AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    core24.fsn1.hetzner.com                   0.75 ms / 0.40 ms / 0.45 ms
7   213.239.224.82  AS24940  [DE-HETZNER]     德国 黑森州 美因河畔法兰克福  hetzner.com
    core0.fra.hetzner.com                     5.19 ms / 5.01 ms / 5.06 ms
8   80.81.193.1     AS702    [DE-CIX]         德国 黑森州 美因河畔法兰克福 DE-CIX Frankfurt - Verizon - EMEA - 100Gbps verizon.com
    et-2-0-2.BR4.FFT1.alter.net               8.88 ms / 5.98 ms / 5.91 ms
9   *
10  *
11  219.158.3.117   AS4837   [CU169-BACKBONE] 中国 北京市   chinaunicom.cn  联通
                                              153.00 ms / 156.04 ms / 153.21 ms
12  219.158.16.69   AS4837   [CU169-BACKBONE] 中国 北京市   chinaunicom.cn  联通
                                              153.77 ms / 157.04 ms / 152.34 ms
13  *
14  *
15  61.51.169.142   AS4808                    中国 北京市   chinaunicom.cn  联通
                                              154.79 ms / 154.99 ms / 153.91 ms
16  *
17  *
18  *
19  123.125.96.156  AS4808   [UNICOM-BJ]      中国 北京市   chinaunicom.cn  联通
                                              157.44 ms / 157.00 ms / 157.03 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.pek-4134.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   172.31.1.1      *                         RFC1918
                                              2.94 ms / 2.93 ms / 2.70 ms
2   49.12.28.119    AS24940                   德国 巴伐利亚州 贡岑豪森  hetzner.com
    23518.your-cloud.host                     0.49 ms / 0.24 ms / 0.22 ms
3   *
4   213.239.235.25  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    spine5.cloud2.fsn1.hetzner.com            1.32 ms / 0.93 ms / 0.89 ms
5   213.239.239.77  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    spine1.cloud2.fsn1.hetzner.com            21.74 ms / 0.94 ms / 0.95 ms
6   213.239.239.133 AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    core24.fsn1.hetzner.com                   1.09 ms / 0.61 ms / 0.83 ms
7   213.239.245.53  AS24940  [DE-HETZNER]     德国 拜仁 维尔茨堡  hetzner.com
    juniper6.dc2.nbg1.hetzner.com             4.87 ms / 3.58 ms / 2.89 ms
8   62.115.50.222   AS1299   [ARELION-NET]    德国 巴伐利亚州 纽伦堡  arelion.com
    nug-b2-link.ip.twelve99.net               5.99 ms / 5.79 ms / 5.74 ms
9   62.115.140.202  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-bb1-link.ip.twelve99.net              8.28 ms / 6.23 ms / 6.03 ms
    [MPLS: Lbl 403020, TC 0, S 1, TTL 1]
10  62.115.124.117  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-b11-link.ip.twelve99.net              8.20 ms / 6.14 ms / 5.93 ms
11  202.97.58.149   AS4134   [CHINANET-BB]    德国 黑森州 美因河畔法兰克福 CT-POP chinatelecom.com.cn  电信
                                              50.88 ms / 56.11 ms / 57.41 ms
12  *
13  202.97.12.149   AS4134   [CHINANET-BB]    中国 北京市   chinatelecom.com.cn  电信
                                              273.31 ms / 271.60 ms / 275.25 ms
14  202.97.53.29    AS4134   [CHINANET-BB]    中国 北京市   chinatelecom.com.cn  电信
                                              * ms / 340.72 ms / * ms
15  *
16  *
17  36.110.6.153    AS4847                    中国 北京市  西城区 chinatelecom.cn  电信
                                              237.28 ms / 339.38 ms / * ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.pek-9808.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   172.31.1.1      *                         RFC1918
                                              25.50 ms / 3.40 ms / 3.06 ms
2   49.12.28.119    AS24940                   德国 巴伐利亚州 贡岑豪森  hetzner.com
    23518.your-cloud.host                     0.68 ms / 0.26 ms / 0.21 ms
3   *
4   213.239.235.29  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    spine6.cloud2.fsn1.hetzner.com            57.31 ms / 0.91 ms / 1.04 ms
5   213.239.239.89  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    spine2.cloud2.fsn1.hetzner.com            1.21 ms / 0.97 ms / 15.05 ms
6   213.239.239.137 AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    core23.fsn1.hetzner.com                   5.48 ms / 1.46 ms / 0.64 ms
7   213.239.224.74  AS24940  [DE-HETZNER]     德国 黑森州 美因河畔法兰克福  hetzner.com
    core4.fra.hetzner.com                     5.63 ms / 5.08 ms / 5.06 ms
8   80.81.195.121   AS58453  [DE-CIX]         德国 黑森州 美因河畔法兰克福 DE-CIX Frankfurt - China Mobile International - 100Gbps cmi.chinamobile.com
    ipv4.de-cix.fra.de.as58453.chinamobile.com   12.27 ms / 6.43 ms / 6.07 ms
9   223.120.10.85   AS58453  [CMI-INT]        德国 黑森州 美茵河畔法兰克福  cmi.chinamobile.com  移动
                                              5.81 ms / 5.42 ms / 5.49 ms
10  223.120.16.26   AS58453  [CMI-INT]        中国 北京市   cmi.chinamobile.com  移动
                                              135.52 ms / 134.74 ms / 137.95 ms
11  221.183.55.106  AS9808   [CMNET]          中国 北京市  回国到达层 chinamobile.com  移动
                                              136.47 ms / 137.02 ms / 134.80 ms
12  221.183.46.250  AS9808   [CMNET]          中国 北京市   chinamobile.com  移动
                                              135.93 ms / 141.77 ms / 135.63 ms
13  221.183.89.98   AS9808   [CMNET]          中国 北京市   chinamobile.com  移动
                                              138.84 ms / 236.91 ms / * ms
14  *
15  *
16  221.179.171.41  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              137.38 ms / 136.97 ms / 137.01 ms
17  211.136.63.66   AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              198.44 ms / 197.96 ms / 198.01 ms
18  211.136.95.226  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              138.62 ms / 138.29 ms / 138.26 ms
19  *
20  *
21  211.136.25.153  AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              200.70 ms / 198.44 ms / 198.70 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.sha-4837.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   172.31.1.1      *                         RFC1918
                                              3.06 ms / 2.06 ms / 2.03 ms
2   49.12.28.119    AS24940                   德国 巴伐利亚州 贡岑豪森  hetzner.com
    23518.your-cloud.host                     0.48 ms / 0.25 ms / 0.42 ms
3   *
4   213.239.235.25  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    spine5.cloud2.fsn1.hetzner.com            1.19 ms / 0.95 ms / 0.93 ms
5   213.239.239.81  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    spine2.cloud2.fsn1.hetzner.com            2.68 ms / 3.81 ms / 0.91 ms
6   213.239.239.129 AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
                                              3.06 ms / 0.51 ms / 0.57 ms
7   213.239.224.86  AS24940  [DE-HETZNER]     德国 黑森州 美因河畔法兰克福  hetzner.com
    core1.fra.hetzner.com                     5.55 ms / 5.13 ms / 5.12 ms
8   154.14.78.153   AS3257                    德国 黑森州 美因河畔法兰克福  gtt.net
    ae18.cr6-fra2.ip4.gtt.net                 5.58 ms / 20.47 ms / 5.32 ms
9   213.200.116.225 AS3257   [GTT-EU]         德国 黑森州 美因河畔法兰克福  gtt.net
                                              5.84 ms / 5.72 ms / 5.64 ms
10  219.158.43.189  AS4837   [CU169-BACKBONE] 德国 黑森州 美因河畔法兰克福 FRA-GTT-PoP chinaunicom.cn  联通
                                              6.24 ms / 6.44 ms / * ms
11  219.158.5.173   AS4837   [CU169-BACKBONE] 中国 香港   chinaunicom.cn  联通
                                              150.38 ms / 146.16 ms / 149.44 ms
12  219.158.4.33    AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              149.92 ms / 145.30 ms / 149.16 ms
13  219.158.3.81    AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              151.77 ms / 150.87 ms / 151.45 ms
14  219.158.6.233   AS4837   [CU169-BACKBONE] 中国 上海市   chinaunicom.cn  联通
                                              172.97 ms / 172.11 ms / 171.88 ms
15  *
16  139.226.4.1     AS17621  [UNICOM-SH]      中国 上海市  黄浦区 chinaunicom.cn  联通
                                              177.59 ms / 177.45 ms / 177.50 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.sha-4134.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   172.31.1.1      *                         RFC1918
                                              3.79 ms / 2.25 ms / 3.74 ms
2   49.12.28.119    AS24940                   德国 巴伐利亚州 贡岑豪森  hetzner.com
    23518.your-cloud.host                     0.89 ms / 0.22 ms / 0.19 ms
3   *
4   213.239.235.25  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    spine5.cloud2.fsn1.hetzner.com            10.20 ms / 0.95 ms / 0.92 ms
5   213.239.239.81  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    spine2.cloud2.fsn1.hetzner.com            1.33 ms / 6.46 ms / 1.04 ms
6   213.239.239.129 AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    core24.fsn1.hetzner.com                   0.70 ms / 0.63 ms / 0.55 ms
7   213.239.252.233 AS24940  [DE-HETZNER]     德国 拜仁 维尔茨堡  hetzner.com
    juniper4.nbg1.hetzner.com                 5.39 ms / 3.10 ms / 2.87 ms
8   213.248.70.0    AS1299   [TELIANET]       德国 巴伐利亚州 纽伦堡  arelion.com
    nug-b1-link.ip.twelve99.net               3.42 ms / 2.96 ms / 3.13 ms
9   62.115.113.146  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-bb1-link.ip.twelve99.net              106.95 ms / 107.09 ms / * ms
    [MPLS: Lbl 403020, TC 0, S 1, TTL 1]
10  62.115.124.117  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-b11-link.ip.twelve99.net              106.97 ms / 106.49 ms / * ms
11  202.97.58.149   AS4134   [CHINANET-BB]    德国 黑森州 美因河畔法兰克福 CT-POP chinatelecom.com.cn  电信
                                              7.13 ms / 8.60 ms / 8.67 ms
12  202.97.70.141   AS4134   [CHINANET-BB]    中国 上海市   chinatelecom.com.cn  电信
                                              228.56 ms / 329.47 ms / * ms
13  *
14  *
15  101.95.88.97    AS4812   [CHINANET-SH]    中国 上海市   chinatelecom.cn  电信
                                              200.06 ms / 199.08 ms / 202.36 ms
16  101.95.40.114   AS4812   [CHINANET-SH]    中国 上海市   chinatelecom.cn  电信
                                              * ms / 299.43 ms / * ms
17  61.152.87.174   AS4812   [CHINANET-SH]    中国 上海市   chinatelecom.cn  电信
                                              230.18 ms / 233.27 ms / 232.44 ms
18  202.101.21.178  AS4812   [CHINANET-SH]    中国 上海市  浦东新区 chinatelecom.cn  电信
                                              213.91 ms / 198.34 ms / 198.62 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.sha-9808.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   172.31.1.1      *                         RFC1918
                                              2.57 ms / 2.20 ms / 1.81 ms
2   49.12.28.119    AS24940                   德国 巴伐利亚州 贡岑豪森  hetzner.com
    23518.your-cloud.host                     0.70 ms / 0.29 ms / 0.32 ms
3   *
4   213.239.235.25  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    spine5.cloud2.fsn1.hetzner.com            1.17 ms / 0.87 ms / 1.02 ms
5   213.239.239.81  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    spine2.cloud2.fsn1.hetzner.com            1.20 ms / 0.90 ms / 0.97 ms
6   213.239.239.129 AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    core24.fsn1.hetzner.com                   1.01 ms / 0.42 ms / 0.63 ms
7   213.239.224.82  AS24940  [DE-HETZNER]     德国 黑森州 美因河畔法兰克福  hetzner.com
    core0.fra.hetzner.com                     8.30 ms / 5.21 ms / 5.08 ms
8   80.81.195.121   AS58453  [DE-CIX]         德国 黑森州 美因河畔法兰克福 DE-CIX Frankfurt - China Mobile International - 100Gbps cmi.chinamobile.com
    ipv4.de-cix.fra.de.as58453.chinamobile.com   7.90 ms / 6.19 ms / 6.04 ms
9   223.120.10.85   AS58453  [CMI-INT]        德国 黑森州 美茵河畔法兰克福  cmi.chinamobile.com  移动
                                              6.15 ms / 5.58 ms / 5.58 ms
10  *
11  221.183.89.178  AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              230.23 ms / 229.56 ms / * ms
12  221.183.89.33   AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              230.05 ms / * ms / * ms
13  221.183.89.10   AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              231.17 ms / * ms / * ms
14  *
15  120.204.34.85   AS24400  [APNIC-AP]       中国 上海市   chinamobile.com  移动
                                              232.21 ms / 231.41 ms / 231.85 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.can-4837.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   172.31.1.1      *                         RFC1918
                                              2.41 ms / 1.82 ms / 2.33 ms
2   49.12.28.119    AS24940                   德国 巴伐利亚州 贡岑豪森  hetzner.com
    23518.your-cloud.host                     0.55 ms / 0.18 ms / 0.17 ms
3   *
4   213.239.235.25  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    spine5.cloud2.fsn1.hetzner.com            1.35 ms / 0.92 ms / 0.92 ms
5   213.239.239.77  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    spine1.cloud2.fsn1.hetzner.com            53.69 ms / 1.06 ms / 1.22 ms
6   213.239.239.125 AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    core23.fsn1.hetzner.com                   0.80 ms / 0.74 ms / 0.60 ms
7   213.239.245.9   AS24940  [DE-HETZNER]     德国 巴伐利亚州 纽伦堡  hetzner.com
    juniper6.dc2.nbg1.hetzner.com             5.78 ms / 2.99 ms / 2.93 ms
8   62.115.50.222   AS1299   [ARELION-NET]    德国 巴伐利亚州 纽伦堡  arelion.com
    nug-b2-link.ip.twelve99.net               6.18 ms / 5.78 ms / 5.77 ms
9   62.115.140.202  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-bb1-link.ip.twelve99.net              6.55 ms / 6.18 ms / 6.50 ms
    [MPLS: Lbl 403020, TC 0, S 1, TTL 1]
10  62.115.124.117  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-b11-link.ip.twelve99.net              6.33 ms / 6.06 ms / * ms
11  219.158.41.97   AS4837   [CU169-BACKBONE] 德国 黑森州 美茵河畔法兰克福  chinaunicom.cn  联通
                                              75.56 ms / 173.77 ms / * ms
12  219.158.17.241  AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              238.64 ms / 337.80 ms / * ms
13  219.158.4.129   AS4837   [CU169-BACKBONE] 中国 广东省 广州市  chinaunicom.cn  联通
                                              330.96 ms / 334.18 ms / * ms
14  *
15  112.97.0.102    AS17816  [APNIC-AP]       中国 广东省 广州市  chinaunicom.cn  联通
                                              245.61 ms / 246.13 ms / 243.38 ms
16  221.4.4.70      AS17816  [UNICOM-GD]      中国 广东省 广州市  chinaunicom.cn
                                              240.44 ms / 238.47 ms / 238.32 ms
17  221.4.1.77      AS17816  [UNICOM-GD]      中国 广东省 广州市  chinaunicom.cn  联通
                                              239.06 ms / 238.64 ms / 233.66 ms
18  58.254.255.1    AS17816                   中国 广东省 广州市 黄埔区 chinaunicom.cn  联通
                                              256.53 ms / 253.02 ms / * ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.can-4134.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   172.31.1.1      *                         RFC1918
                                              2.20 ms / 2.06 ms / 2.36 ms
2   49.12.28.119    AS24940                   德国 巴伐利亚州 贡岑豪森  hetzner.com
                                              0.51 ms / 0.29 ms / 0.37 ms
3   *
4   213.239.235.29  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
                                              1.22 ms / 1.10 ms / 1.19 ms
5   213.239.239.85  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    spine1.cloud2.fsn1.hetzner.com            5.66 ms / 1.00 ms / 1.05 ms
6   213.239.239.125 AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    core23.fsn1.hetzner.com                   2.66 ms / 2.69 ms / 0.75 ms
7   213.239.203.121 AS24940  [DE-HETZNER]     德国 巴伐利亚州 纽伦堡  hetzner.com
    core12.nbg1.hetzner.com                   5.83 ms / 3.16 ms / 2.93 ms
8   213.239.252.254 AS24940  [DE-HETZNER]     法国 法兰西岛大区 巴黎  hetzner.com
    core6.par.hetzner.com                     16.40 ms / 16.09 ms / 16.96 ms
9   213.239.252.170 AS24940  [DE-HETZNER]     英国 英格兰 伦敦  hetzner.com
    core7.lon.hetzner.com                     23.35 ms / 23.55 ms / 23.96 ms
10  *
11  202.97.55.97    AS4134   [CHINANET-BB]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              243.52 ms / 241.13 ms / 241.10 ms
12  *
13  *
14  *
15  113.108.209.62  AS4134   [CHINANET-GD]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              255.94 ms / 355.39 ms / * ms
16  125.88.170.62   AS4134   [CHINANET-GD]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              253.04 ms / 253.32 ms / 250.58 ms
17  14.116.225.60   AS4134                    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              274.98 ms / 272.46 ms / 274.08 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to ipv4.can-9808.nexttrace-io-fasttrace-endpoint.win., 30 hops max, 52 byte packets
1   172.31.1.1      *                         RFC1918
                                              3.11 ms / 2.62 ms / 2.63 ms
2   49.12.28.119    AS24940                   德国 巴伐利亚州 贡岑豪森  hetzner.com
                                              2.13 ms / 0.24 ms / 0.15 ms
3   *
4   213.239.235.29  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    spine6.cloud2.fsn1.hetzner.com            1.37 ms / 1.08 ms / 0.88 ms
5   213.239.239.89  AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    spine2.cloud2.fsn1.hetzner.com            1.15 ms / 0.93 ms / 1.03 ms
6   213.239.239.137 AS24940  [DE-HETZNER]     德国 莱茵兰-普法尔茨州 法尔肯斯泰因  hetzner.com
    core23.fsn1.hetzner.com                   0.82 ms / 0.91 ms / 0.41 ms
7   213.239.224.66  AS24940  [DE-HETZNER]     德国 黑森州 美因河畔法兰克福  hetzner.com
                                              5.24 ms / 5.09 ms / 5.01 ms
8   80.81.195.121   AS58453  [DE-CIX]         德国 黑森州 美因河畔法兰克福 DE-CIX Frankfurt - China Mobile International - 100Gbps cmi.chinamobile.com
                                              6.36 ms / 6.27 ms / 12.96 ms
9   223.120.10.85   AS58453  [CMI-INT]        德国 黑森州 美茵河畔法兰克福  cmi.chinamobile.com  移动
                                              7.17 ms / 6.07 ms / 9.69 ms
10  223.120.16.222  AS58453  [CMI-INT]        中国 香港   cmi.chinamobile.com  移动
                                              328.52 ms / 328.25 ms / * ms
11  223.120.22.10   AS58453  [CMI-INT]        中国 广东省 广州市  cmi.chinamobile.com  移动
                                              260.19 ms / 358.57 ms / * ms
12  221.183.55.82   AS9808   [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              360.32 ms / * ms / * ms
13  221.183.92.21   AS9808   [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              260.15 ms / 257.66 ms / 257.96 ms
14  221.183.89.246  AS9808   [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              259.04 ms / 258.76 ms / * ms
15  *
16  *
17  211.136.241.254 AS56040  [CMNET]          中国 广东省 广州市  chinamobile.com  移动
                                              269.72 ms / 269.10 ms / 268.58 ms
18  120.198.26.254  AS56040  [APNIC-AP]       中国 广东省 广州市  chinamobile.com  移动
                                              277.71 ms / 277.55 ms / * ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;使用和甲骨文相同的处理器，性能也差不多，10G口，对线路没要求的可以使用。&lt;/p&gt;
</content:encoded></item><item><title>爱发电</title><link>https://yushum.com/posts/%E7%88%B1%E5%8F%91%E7%94%B5/</link><guid isPermaLink="true">https://yushum.com/posts/%E7%88%B1%E5%8F%91%E7%94%B5/</guid><pubDate>Mon, 18 Sep 2023 16:00:18 GMT</pubDate><content:encoded>&lt;p&gt;已入驻爱发电&lt;a href=&quot;https://afdian.net/a/yusum&quot;&gt;https://afdian.net/a/yusum&lt;/a&gt;，欢迎打赏。&lt;/p&gt;
</content:encoded></item><item><title>netcup RS 1000 G9.5 SE SS23 测评</title><link>https://yushum.com/posts/netcup-rs-1000-g9-5-se-ss23netcup-%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/netcup-rs-1000-g9-5-se-ss23netcup-%E6%B5%8B%E8%AF%84/</guid><pubDate>Tue, 27 Jun 2023 18:13:22 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;硬盘比平时购买RS 1000 G9.5大一倍，价格是一样的，免税后8.24欧/月。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2023-04-23                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Di 27. Jun 11:26:05 CEST 2023

Basic System Information:
---------------------------------
Uptime     : 0 days, 1 hours, 12 minutes
Processor  : AMD EPYC 7702P 64-Core Processor
CPU cores  : 4 @ 1996.203 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 7.8 GiB
Swap       : 0.0 KiB
Disk       : 314.8 GiB
Distro     : Debian GNU/Linux 11 (bullseye)
Kernel     : 5.10.0-23-amd64
VM Type    : KVM
IPv4/IPv6  : ✔ Online / ✔ Online

IPv6 Network Information:
---------------------------------
ISP        : netcup GmbH
ASN        : AS197540 netcup GmbH
Host       : NETCUP-GMBH
Location   : Karlsruhe, Baden-Wurttemberg (BW)
Country    : Germany

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 62.87 MB/s   (15.7k) | 1.24 GB/s    (19.4k)
Write      | 62.97 MB/s   (15.7k) | 1.25 GB/s    (19.5k)
Total      | 125.84 MB/s  (31.4k) | 2.49 GB/s    (39.0k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 3.10 GB/s     (6.0k) | 2.62 GB/s     (2.5k)
Write      | 3.27 GB/s     (6.3k) | 2.79 GB/s     (2.7k)
Total      | 6.38 GB/s    (12.4k) | 5.41 GB/s     (5.2k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 1.44 Gbits/sec  | 2.03 Gbits/sec  | 17.7 ms
Scaleway        | Paris, FR (10G)           | 1.68 Gbits/sec  | busy            | 26.5 ms
NovoServe       | North Holland, NL (40G)   | 1.95 Gbits/sec  | 2.37 Gbits/sec  | 10.5 ms
Uztelecom       | Tashkent, UZ (10G)        | 798 Mbits/sec   | 1.80 Gbits/sec  | 100 ms
Clouvider       | NYC, NY, US (10G)         | busy            | 523 Mbits/sec   | 93.6 ms
Clouvider       | Dallas, TX, US (10G)      | 602 Mbits/sec   | 924 Mbits/sec   | 127 ms
Clouvider       | Los Angeles, CA, US (10G) | 558 Mbits/sec   | 739 Mbits/sec   | 150 ms

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 1.50 Gbits/sec  | 2.18 Gbits/sec  | 17.7 ms
Scaleway        | Paris, FR (10G)           | 1.52 Gbits/sec  | 1.40 Gbits/sec  | 27.8 ms
NovoServe       | North Holland, NL (40G)   | 2.24 Gbits/sec  | 2.35 Gbits/sec  | 10.5 ms
Uztelecom       | Tashkent, UZ (10G)        | 1.01 Gbits/sec  | 1.43 Gbits/sec  | 95.4 ms
Clouvider       | NYC, NY, US (10G)         | 642 Mbits/sec   | 308 Mbits/sec   | 93.6 ms
Clouvider       | Dallas, TX, US (10G)      | 437 Mbits/sec   | 531 Mbits/sec   | 127 ms
Clouvider       | Los Angeles, CA, US (10G) | 440 Mbits/sec   | 331 Mbits/sec   | 150 ms

Geekbench 6 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 1152
Multi Core      | 3541
Full Test       | https://browser.geekbench.com/v6/cpu/1736686

YABS completed in 13 min 33 sec
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2023-06-10
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : AMD EPYC 7702P 64-Core Processor
 CPU Cores          : 4 @ 1996.203 MHz
 CPU Cache          : 512 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Disabled
 Total Disk         : 314,8 GB (1,5 GB Used)
 Total Mem          : 7,8 GB (78,2 MB Used)
 System uptime      : 0 days, 1 hour 41 min
 Load average       : 0.00, 0.03, 0.14
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-23-amd64
 TCP CC             : cubic
 Virtualization     : KVM
 IPv4/IPv6          : Online / Online
 Organization       : AS197540 netcup GmbH
 Location           : Lüdenscheid / DE
 Region             : North Rhine-Westphalia
----------------------------------------------------------------------
 I/O Speed(1st run) : 1.0 GB/s
 I/O Speed(2nd run) : 699 MB/s
 I/O Speed(3rd run) : 798 MB/s
 I/O Speed(average) : 840,3 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    126.96 Mbps       774.27 Mbps         4.17 ms
 Los Angeles, US  245.36 Mbps       1651.19 Mbps        147.58 ms
 Dallas, US       384.81 Mbps       1544.14 Mbps        119.74 ms
 Montreal, CA     63.70 Mbps        17.99 Mbps          94.89 ms
 Paris, FR        1004.90 Mbps      2294.14 Mbps        21.91 ms
 Amsterdam, NL    1902.76 Mbps      2364.76 Mbps        9.41 ms
 Shanghai, CN     299.42 Mbps       2047.69 Mbps        278.51 ms
 Nanjing, CN      222.02 Mbps       1740.62 Mbps        216.04 ms
 Hongkong, CN     149.94 Mbps       1526.86 Mbps        359.06 ms
 Singapore, SG    157.14 Mbps       169.35 Mbps         244.25 ms
----------------------------------------------------------------------
 Finished in        : 5 min 51 sec
 Timestamp          : 2023-06-27 12:00:23 CEST
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Di 27. Jun 12:01:48 CEST 2023

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: netcup GmbH (185.233.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               Yes (Region: DE)
 Netflix:                               Originals Only
 YouTube Premium:                       Yes (Region: DE)
 Amazon Prime Video:                    Yes (Region: DE)
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   DE
 Viu.com:                               No
 YouTube CDN:                           Associated with [ANEXIAAT]
 Netflix Preferred CDN:                 Associated with [Anexia] in [Vienna ]
 Spotify Registration:                  No
 Steam Currency:                        EUR
 ChatGPT:                               Yes
=======================================
===============[ Europe ]==============
 Rakuten TV:                            Yes
 Funimation:                            No
 SkyShowTime:                           No
 HBO Max:                               No
 Maths Spot:                            Failed (Network Connection)
 ---GB---
 Sky Go:                                Yes
 BritBox:                               Yes
 ITV Hub:                               No
 Channel 4:                             No
 Channel 5:                             No
 BBC iPLAYER:                           No
 Discovery+ UK:                         No
 ---FR---
 Salto:                                 Failed (Network Connection)
 Canal+:                                No
 Molotov:                               No
 ---DE---
 Joyn:                                  Yes
 Sky:                                   Yes
 ZDF:                                   Yes
 ---NL---
 NLZIET:                                Failed
 videoland:                             Failed (Network Connection)
 NPO Start Plus:                        No
 ---ES---
 PANTAYA:                               Failed (Network Connection)
 ---IT---
 Rai Play:                              Yes
 ---RU---
 Amediateka:                            Yes
=======================================


 ** 正在测试IPv6解锁情况
--------------------------------
 ** 您的网络为: netcup GmbH (2a03:4000:24:*:*)


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               No
 Disney+:                               Yes (Region: DE)
 Netflix:                               Originals Only
 YouTube Premium:                       Yes (Region: DE)
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           Associated with [ANEXIAAT]
 Netflix Preferred CDN:                 Associated with [Anexia] in [Vienna ]
 Spotify Registration:                  No
 Steam Currency:                        Failed (Network Connection)
 ChatGPT:                               Yes
=======================================
===============[ Europe ]==============
 Rakuten TV:                            Failed (Network Connection)
 Funimation:                            IPv6 Not Support
 SkyShowTime:                           No
 HBO Max:                               Failed (Network Connection)
 Maths Spot:                            IPv6 Not Support
 ---GB---
 Sky Go:                                Failed (Network Connection)
 BritBox:                               Yes
 ITV Hub:                               Failed (Network Connection)
 Channel 4:                             Failed (Network Connection)
 Channel 5:                             IPv6 Not Support
 BBC iPLAYER:                           Failed
 Discovery+ UK:                         IPv6 Not Support
 ---FR---
 Salto:                                 Failed (Network Connection)
 Canal+:                                Failed (Network Connection)
 Molotov:                               No
 ---DE---
 Joyn:                                  Failed (Network Connection)
 Sky:                                   Failed (Network Connection)
 ZDF:                                   Failed (Network Connection)
 ---NL---
 NLZIET:                                Failed
 videoland:                             Failed (Network Connection)
 NPO Start Plus:                        Failed (Network Connection)
 ---ES---
 PANTAYA:                               Failed (Network Connection)
 ---IT---
 Rai Play:                              Failed (Network Connection)
 ---RU---
 Amediateka:                            Failed (Network Connection)
=======================================
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/06/27/649ab2abd56c7.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/06/27/649ab2ab32e4e.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/06/27/649ab2aae5196.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.106.50.1, 30 hops max, 32 byte packets
1   185.233.104.2   AS197540                  德国 萨克森-安哈尔特 哈雷  netcup.de
                                              0.36 ms
2   144.208.211.10  AS47147  [ANX-NET]        德国 巴伐利亚州 纽伦堡  anexia.com
    ae3-4019.bbr02.anx84.nue.de.anexia-it.net   0.32 ms
3   144.208.208.139 AS47147  [ANX-NET]        德国 巴伐利亚州 纽伦堡  anexia.com
    ae0-0.bbr01.anx84.nue.de.anexia-it.net    24.63 ms
4   62.115.46.182   AS1299   [ARELION-NET]    德国 巴伐利亚州 纽伦堡  arelion.com
    nug-b2-link.ip.twelve99.net               0.59 ms
5   62.115.140.202  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-bb1-link.ip.twelve99.net              3.91 ms
6   62.115.124.117  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-b11-link.ip.twelve99.net              3.96 ms
7   219.158.41.97   AS4837   [CU169-BACKBONE] 德国 黑森州 美茵河畔法兰克福  chinaunicom.cn  联通
                                              3.77 ms
8   219.158.17.233  AS4837   [CU169-BACKBONE] 中国 广东省   chinaunicom.cn  联通
                                              175.09 ms
9   219.158.4.125   AS4837   [CU169-BACKBONE] 中国 广东省   chinaunicom.cn  联通
                                              180.50 ms
10  *
11  219.158.7.21    AS4837   [CU169-BACKBONE] 中国 北京市   chinaunicom.cn  联通
                                              262.47 ms
12  *
13  202.106.50.1    AS4808   [UNICOM-BJ]      中国 北京市   chinaunicom.cn  联通
                                              265.49 ms
MapTrace URL: https://api.leo.moe/tracemap/1397188c-3c3d-5c62-9245-78d28ad1b382.html
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 180.149.128.1, 30 hops max, 32 byte packets
1   185.233.104.2   AS197540                  德国 萨克森-安哈尔特 哈雷  netcup.de
                                              0.35 ms
2   144.208.211.10  AS47147  [ANX-NET]        德国 巴伐利亚州 纽伦堡  anexia.com
    ae3-4019.bbr02.anx84.nue.de.anexia-it.net   0.76 ms
3   87.245.246.140  AS9002                    德国 黑森州 美因河畔法兰克福  retn.net
    ae13-1386.RT.EQX.FKT.DE.retn.net          8.52 ms
4   87.245.232.234  AS9002   [RETN-BACKBONE]  德国 黑森州 美因河畔法兰克福  retn.net
    ae3-4.RT.IRX.FKT.DE.retn.net              3.51 ms
5   87.245.236.153  AS9002                    德国 黑森州 美茵河畔法兰克福 RETN-CT-Peer retn.net
    GW-ChinaTelecom.retn.net                  6.07 ms
6   *
7   *
8   202.97.61.165   AS4134   [CHINANET-BB]    中国 北京市   chinatelecom.com.cn  电信
                                              165.55 ms
9   *
10  180.149.128.1   AS23724  [BJTEL]          中国 北京市   bjtelecom.net  电信
                                              165.73 ms
MapTrace URL: https://api.leo.moe/tracemap/265cd78a-142e-51aa-848b-96f14bde36c0.html
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.179.155.161, 30 hops max, 32 byte packets
1   185.233.104.2   AS197540                  德国 萨克森-安哈尔特 哈雷  netcup.de
                                              10.16 ms
2   144.208.211.10  AS47147  [ANX-NET]        德国 巴伐利亚州 纽伦堡  anexia.com
    ae3-4019.bbr02.anx84.nue.de.anexia-it.net   0.71 ms
3   87.245.246.140  AS9002                    德国 黑森州 美因河畔法兰克福  retn.net
    ae13-1386.RT.EQX.FKT.DE.retn.net          3.41 ms
4   80.81.195.121   AS58453  [DE-CIX]         德国 黑森州 美因河畔法兰克福 DE-CIX Frankfurt - China Mobile International - 100Gbps cmi.chinamobile.com
    ipv4.de-cix.fra.de.as58453.chinamobile.com   4.49 ms
5   223.120.10.41   AS58453  [CMI-INT]        德国 黑森州 美茵河畔法兰克福  cmi.chinamobile.com  移动
                                              22.52 ms
6   223.120.16.14   AS58453  [CMI-INT]        中国 北京市   cmi.chinamobile.com  移动
                                              309.45 ms
7   223.120.22.18   AS58453  [CMI-INT]        中国 广东省 广州市  cmi.chinamobile.com  移动
                                              249.97 ms
8   221.183.55.106  AS9808   [CMNET]          中国 北京市   chinamobile.com  移动
                                              315.79 ms
9   221.183.46.250  AS9808   [CMNET]          中国 北京市   chinamobile.com  移动
                                              250.55 ms
10  221.183.89.102  AS9808   [CMNET]          中国 北京市   chinamobile.com  移动
                                              254.03 ms
11  *
12  221.183.110.162 AS9808   [CMNET]          中国 北京市   chinamobile.com  移动
                                              293.55 ms
13  221.179.155.161 AS56048  [CMNET]          中国 北京市   chinamobile.com  移动
                                              315.74 ms
MapTrace URL: https://api.leo.moe/tracemap/d4477db5-43cc-579e-8150-051977c2509f.html
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.22.97.1, 30 hops max, 32 byte packets
1   185.233.104.2   AS197540                  德国 萨克森-安哈尔特 哈雷  netcup.de
                                              0.36 ms
2   *
3   144.208.208.139 AS47147  [ANX-NET]        德国 巴伐利亚州 纽伦堡  anexia.com
    ae0-0.bbr01.anx84.nue.de.anexia-it.net    0.68 ms
4   62.115.46.182   AS1299   [ARELION-NET]    德国 巴伐利亚州 纽伦堡  arelion.com
    nug-b2-link.ip.twelve99.net               0.50 ms
5   62.115.140.202  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-bb1-link.ip.twelve99.net              3.86 ms
6   62.115.124.117  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-b11-link.ip.twelve99.net              4.12 ms
7   219.158.41.97   AS4837   [CU169-BACKBONE] 德国 黑森州 美茵河畔法兰克福  chinaunicom.cn  联通
                                              3.80 ms
8   219.158.17.233  AS4837   [CU169-BACKBONE] 中国 广东省   chinaunicom.cn  联通
                                              179.65 ms
9   219.158.4.105   AS4837   [CU169-BACKBONE] 中国 广东省   chinaunicom.cn  联通
                                              178.17 ms
10  *
11  *
12  *
13  112.64.250.202  AS17621  [APNIC-AP]       中国 上海市   chinaunicom.cn  联通
                                              196.84 ms
14  210.22.97.1     AS17621  [APNIC-AP]       中国 上海市   chinaunicom.cn  联通
                                              225.00 ms
MapTrace URL: https://api.leo.moe/tracemap/d8cefe41-86e0-5ecd-b9b7-a83d7ee957c0.html
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.96.209.133, 30 hops max, 32 byte packets
1   185.233.104.2   AS197540                  德国 萨克森-安哈尔特 哈雷  netcup.de
                                              0.35 ms
2   144.208.211.10  AS47147  [ANX-NET]        德国 巴伐利亚州 纽伦堡  anexia.com
    ae3-4019.bbr02.anx84.nue.de.anexia-it.net   0.50 ms
3   87.245.246.140  AS9002                    德国 黑森州 美因河畔法兰克福  retn.net
    ae13-1386.RT.EQX.FKT.DE.retn.net          3.49 ms
4   87.245.232.234  AS9002   [RETN-BACKBONE]  德国 黑森州 美因河畔法兰克福  retn.net
    ae3-4.RT.IRX.FKT.DE.retn.net              3.53 ms
5   87.245.236.153  AS9002                    德国 黑森州 美茵河畔法兰克福 RETN-CT-Peer retn.net
    GW-ChinaTelecom.retn.net                  6.30 ms
6   *
7   *
8   *
9   *
10  124.74.229.230  AS4812   [CHINANET-SH]    中国 上海市   chinatelecom.cn  电信
                                              204.32 ms
11  202.96.209.133  AS4812   [CHINANET-SH]    中国 上海市   chinatelecom.cn  电信
                                              198.50 ms
MapTrace URL: https://api.leo.moe/tracemap/e8c690ba-4f12-58a8-b779-2c079ae79ed0.html
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 211.136.112.200, 30 hops max, 32 byte packets
1   185.233.104.2   AS197540                  德国 萨克森-安哈尔特 哈雷  netcup.de
                                              0.33 ms
2   144.208.211.10  AS47147  [ANX-NET]        德国 巴伐利亚州 纽伦堡  anexia.com
    ae3-4019.bbr02.anx84.nue.de.anexia-it.net   16.94 ms
3   87.245.246.140  AS9002                    德国 黑森州 美因河畔法兰克福  retn.net
    ae13-1386.RT.EQX.FKT.DE.retn.net          3.47 ms
4   80.81.195.121   AS58453  [DE-CIX]         德国 黑森州 美因河畔法兰克福 DE-CIX Frankfurt - China Mobile International - 100Gbps cmi.chinamobile.com
    ipv4.de-cix.fra.de.as58453.chinamobile.com   4.35 ms
5   223.120.10.14   AS58453  [CMI-INT]        德国 黑森州 美茵河畔法兰克福  cmi.chinamobile.com  移动
                                              4.68 ms
6   223.120.16.142  AS58453  [CMI-INT]        中国 上海市   cmi.chinamobile.com  移动
                                              231.48 ms
7   221.183.89.170  AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              235.77 ms
8   221.183.89.33   AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              223.52 ms
9   *
10  *
11  221.181.125.138 AS24400  [CMNET]          中国 上海市   chinamobile.com  移动
                                              241.27 ms
12  211.136.112.252 AS24400  [CMNET]          中国 上海市   chinamobile.com  移动
                                              240.30 ms
13  211.136.112.200 AS24400  [CMNET]          中国 上海市   chinamobile.com  移动
                                              243.41 ms
MapTrace URL: https://api.leo.moe/tracemap/9a14baec-5f71-5992-a4e5-73072b87a1b9.html
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.21.4.130, 30 hops max, 32 byte packets
1   185.233.104.2   AS197540                  德国 萨克森-安哈尔特 哈雷  netcup.de
                                              46.79 ms
2   144.208.211.10  AS47147  [ANX-NET]        德国 巴伐利亚州 纽伦堡  anexia.com
    ae3-4019.bbr02.anx84.nue.de.anexia-it.net   0.64 ms
3   144.208.208.139 AS47147  [ANX-NET]        德国 巴伐利亚州 纽伦堡  anexia.com
    ae0-0.bbr01.anx84.nue.de.anexia-it.net    13.06 ms
4   62.115.46.182   AS1299   [ARELION-NET]    德国 巴伐利亚州 纽伦堡  arelion.com
    nug-b2-link.ip.twelve99.net               0.54 ms
5   62.115.140.202  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-bb1-link.ip.twelve99.net              3.86 ms
6   62.115.124.117  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-b11-link.ip.twelve99.net              3.87 ms
7   219.158.41.97   AS4837   [CU169-BACKBONE] 德国 黑森州 美茵河畔法兰克福  chinaunicom.cn  联通
                                              3.74 ms
8   219.158.98.37   AS4837   [CU169-BACKBONE] 中国 广东省   chinaunicom.cn  联通
                                              165.62 ms
9   219.158.4.105   AS4837   [CU169-BACKBONE] 中国 广东省   chinaunicom.cn  联通
                                              167.54 ms
10  219.158.3.17    AS4837   [CU169-BACKBONE] 中国 广东省   chinaunicom.cn  联通
                                              158.36 ms
11  120.83.0.54     AS17816  [APNIC-AP]       中国 广东省 广州市  chinaunicom.cn  联通
                                              157.04 ms
12  120.80.170.250  AS17622  [APNIC-AP]       中国 广东省 广州市  chinaunicom.cn  联通
                                              162.36 ms
13  210.21.4.130    AS17622  [APNIC-AP]       中国 广东省 广州市  chinaunicom.cn  联通
                                              164.24 ms
MapTrace URL: https://api.leo.moe/tracemap/ef1131d4-35e6-5e70-8df5-fc4e6e2d44ec.html
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 116.21.84.1, 30 hops max, 32 byte packets
1   185.233.104.2   AS197540                  德国 萨克森-安哈尔特 哈雷  netcup.de
                                              0.50 ms
2   144.208.211.10  AS47147  [ANX-NET]        德国 巴伐利亚州 纽伦堡  anexia.com
    ae3-4019.bbr02.anx84.nue.de.anexia-it.net   0.68 ms
3   144.208.208.136 AS47147  [ANX-NET]        奥地利 维也纳州 维也纳  anexia.com
    ae2-0.bbr02.anx03.vie.at.anexia-it.net    9.43 ms
4   62.115.62.152   AS1299   [ARELION-NET]    奥地利 维也纳州 维也纳  arelion.com
    win-b2-link.ip.twelve99.net               12.24 ms
5   62.115.114.182  AS1299   [ARELION-NET]    奥地利 维也纳州 维也纳  arelion.com
    win-bb2-link.ip.twelve99.net              12.39 ms
6   62.115.138.22   AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-bb2-link.ip.twelve99.net              12.02 ms
7   62.115.124.119  AS1299   [ARELION-NET]    德国 黑森州 美因河畔法兰克福  arelion.com
    ffm-b11-link.ip.twelve99.net              11.96 ms
8   202.97.58.149   AS4134   [CHINANET-BB]    德国 黑森州 美因河畔法兰克福 CT-POP chinatelecom.com.cn  电信
                                              14.02 ms
9   202.97.89.109   AS4134   [CHINANET-BB]    中国 广东省   chinatelecom.com.cn  电信
                                              219.56 ms
10  202.97.12.22    AS4134   [CHINANET-BB]    中国    chinatelecom.com.cn  电信
                                              217.93 ms
11  *
12  14.147.4.114    AS4134   [CHINANET-GD]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              217.59 ms
13  116.21.84.1     AS4134   [CHINANET-GD]    中国 广东省 广州市  chinatelecom.com.cn  电信
                                              211.43 ms
MapTrace URL: https://api.leo.moe/tracemap/87587704-2795-5c7e-8d86-c8d79846176c.html
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.183.63.121, 30 hops max, 32 byte packets
1   185.233.104.2   AS197540                  德国 萨克森-安哈尔特 哈雷  netcup.de
                                              0.43 ms
2   144.208.211.10  AS47147  [ANX-NET]        德国 巴伐利亚州 纽伦堡  anexia.com
    ae3-4019.bbr02.anx84.nue.de.anexia-it.net   0.63 ms
3   87.245.246.140  AS9002                    德国 黑森州 美因河畔法兰克福  retn.net
    ae13-1386.RT.EQX.FKT.DE.retn.net          3.38 ms
4   80.81.195.121   AS58453  [DE-CIX]         德国 黑森州 美因河畔法兰克福 DE-CIX Frankfurt - China Mobile International - 100Gbps cmi.chinamobile.com
    ipv4.de-cix.fra.de.as58453.chinamobile.com   4.36 ms
5   223.120.10.85   AS58453  [CMI-INT]        德国 黑森州 美茵河畔法兰克福  cmi.chinamobile.com  移动
                                              3.94 ms
6   223.120.14.150  AS58453  [CMI-INT]        中国 上海市   cmi.chinamobile.com  移动
                                              228.31 ms
7   221.183.89.178  AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              239.37 ms
8   221.183.89.33   AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              229.94 ms
9   221.183.89.10   AS9808   [CMNET]          中国 上海市   chinamobile.com  移动
                                              248.35 ms
10  *
11  221.183.63.121  AS9808   [CMNET]          中国 广东省   chinamobile.com  移动
                                              275.05 ms
MapTrace URL: https://api.leo.moe/tracemap/a11ad990-0d16-5be6-90a3-4e421d323899.html
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;性能不错，值得购买。&lt;/p&gt;
</content:encoded></item><item><title>Servarica蒙特利尔VPS测评</title><link>https://yushum.com/posts/servarica%E8%92%99%E7%89%B9%E5%88%A9%E5%B0%94vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/servarica%E8%92%99%E7%89%B9%E5%88%A9%E5%B0%94vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Sun, 08 Jan 2023 20:19:11 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;在let抽奖中了一年500G小盘鸡，续费12刀/年，测试一下看看性能如何。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-12-29                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Sun 08 Jan 2023 06:08:39 AM EST

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 3 minutes
Processor  : Intel(R) Xeon(R) CPU E5-2650 v2 @ 2.60GHz
CPU cores  : 1 @ 2593.810 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 939.1 MiB
Swap       : 1.9 GiB
Disk       : 505.9 GiB
Distro     : Debian GNU/Linux 11 (bullseye)
Kernel     : 5.10.0-13-amd64

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 40.21 MB/s   (10.0k) | 201.81 MB/s   (3.1k)
Write      | 40.30 MB/s   (10.0k) | 202.88 MB/s   (3.1k)
Total      | 80.52 MB/s   (20.1k) | 404.69 MB/s   (6.3k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 216.70 MB/s    (423) | 212.43 MB/s    (207)
Write      | 228.21 MB/s    (445) | 226.57 MB/s    (221)
Total      | 444.92 MB/s    (868) | 439.01 MB/s    (428)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 2.39 Gbits/sec  | 2.16 Gbits/sec  | 76.1 ms
Scaleway        | Paris, FR (10G)           | busy            | busy            | 83.3 ms
NovoServe       | North Holland, NL (40G)   | 2.21 Gbits/sec  | 2.24 Gbits/sec  | 80.1 ms
Uztelecom       | Tashkent, UZ (10G)        | 1.11 Gbits/sec  | 732 Mbits/sec   | 174 ms
Clouvider       | NYC, NY, US (10G)         | 5.13 Gbits/sec  | 5.73 Gbits/sec  | 10.4 ms
Clouvider       | Dallas, TX, US (10G)      | busy            | 4.11 Gbits/sec  | 42.4 ms
Clouvider       | Los Angeles, CA, US (10G) | 2.29 Gbits/sec  | busy            | 70.2 ms

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 1.78 Gbits/sec  | 1.93 Gbits/sec  | 76.7 ms
Scaleway        | Paris, FR (10G)           | busy            | 1.14 Gbits/sec  | 91.9 ms
NovoServe       | North Holland, NL (40G)   | busy            | 1.98 Gbits/sec  | 80.1 ms
Uztelecom       | Tashkent, UZ (10G)        | busy            | 1.02 Gbits/sec  | 174 ms
Clouvider       | NYC, NY, US (10G)         | 5.29 Gbits/sec  | busy            | 11.0 ms
Clouvider       | Dallas, TX, US (10G)      | 4.11 Gbits/sec  | 2.69 Gbits/sec  | 42.5 ms
Clouvider       | Los Angeles, CA, US (10G) | 2.25 Gbits/sec  | 2.23 Gbits/sec  | 70.1 ms

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 608
Multi Core      | 612
Full Test       | https://browser.geekbench.com/v5/cpu/19771888

YABS completed in 9 min 50 sec
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-06-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) CPU E5-2650 v2 @ 2.60GHz
 CPU Cores          : 1 @ 2593.810 MHz
 CPU Cache          : 20480 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Disabled
 Total Disk         : 505.9 GB (8.8 GB Used)
 Total Mem          : 939.1 MB (127.5 MB Used)
 Total Swap         : 1.9 GB (9.2 MB Used)
 System uptime      : 0 days, 0 hour 14 min
 Load average       : 0.25, 0.43, 0.28
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-13-amd64
 TCP CC             : bbr
 Virtualization     : Xen-DomU
 Organization       : AS26832 Rica Web Services
 Location           : Montréal / CA
 Region             : Quebec
----------------------------------------------------------------------
 I/O Speed(1st run) : 243 MB/s
 I/O Speed(2nd run) : 263 MB/s
 I/O Speed(3rd run) : 265 MB/s
 I/O Speed(average) : 257.0 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    898.46 Mbps       930.58 Mbps         1.10 ms
 Los Angeles, US  969.28 Mbps       3954.66 Mbps        83.55 ms
 Dallas, US       1994.11 Mbps      1976.69 Mbps        41.65 ms
 Montreal, CA     936.96 Mbps       936.02 Mbps         0.62 ms
 Paris, FR        1013.28 Mbps      2522.80 Mbps        81.50 ms
 Amsterdam, NL    1010.78 Mbps      2388.99 Mbps        80.26 ms
 Shanghai, CN     290.64 Mbps       1501.26 Mbps        265.90 ms
 Nanjing, CN      347.13 Mbps       3008.30 Mbps        235.30 ms
 Hongkong, CN     351.28 Mbps       2513.67 Mbps        231.99 ms
 Seoul, KR        294.72 Mbps       160.39 Mbps         213.36 ms
 Singapore, SG    306.65 Mbps       98.83 Mbps          267.84 ms
 Tokyo, JP        535.37 Mbps       3943.79 Mbps        143.98 ms
----------------------------------------------------------------------
 Finished in        : 6 min 16 sec
 Timestamp          : 2023-01-08 06:25:56 EST
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Sun 08 Jan 2023 07:06:28 AM EST

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Rica Web Services (209.209.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               Yes (Region: CA)
 Netflix:                               Originals Only
 YouTube Premium:                       Yes (Region: CA)
 Amazon Prime Video:                    Yes (Region: CA)
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   CA
 Viu.com:                               No
 YouTube CDN:                           Associated with [BEANFLDCA]
 Netflix Preferred CDN:                 Associated with [Beanfield Technologies] in [Toronto, ON ]
 Spotify Registration:                  No
 Steam Currency:                        CAD
=======================================
===========[ North America ]===========
 FOX:                                   No
 Hulu:                                  Failed
 NFL+:                                  Yes
 ESPN+:[Sponsored by Jam]               No
 Epix:                                  No
 Starz:                                 No
 Philo:                                 No
 FXNOW:                                 No
 TLC GO:                                No
 HBO Max:                               No
 Shudder:                               Yes
 BritBox:                               Yes
 Crackle:                               No
 CW TV:                                 No
 A&amp;amp;E TV:                                No
 NBA TV:                                Yes
 NBC TV:                                No
 Fubo TV:                               Yes
 Tubi TV:                               Yes
 Sling TV:                              Yes
 Pluto TV:                              Yes
 Acorn TV:                              Yes
 SHOWTIME:                              Yes
 encoreTVB:                             No
 Funimation:                            Yes (Region: CA)
 Discovery+:                            No
 Paramount+:                            Yes
 Peacock TV:                            No
 Popcornflix:                           No
 Crunchyroll:                           No
 Directv Stream:                        No
 KBS American:                          No
 KOCOWA:                                Yes
 Maths Spot:                            No (Proxy/VPN Detected)
 ---CA---
 CBC Gem:                               Yes
 Crave:                                 Yes
=======================================


 ** 正在测试IPv6解锁情况
--------------------------------
 ** 您的网络为: Rica Web Services (2602:ffd5:1:*:*)


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               Yes (Region: CA)
 Disney+:                               Yes (Region: CA)
 Netflix:                               Originals Only
 YouTube Premium:                       Yes (Region: CA)
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           Associated with [BEANFLDCA]
 Netflix Preferred CDN:                 Associated with [Beanfield Technologies] in [Toronto, ON ]
 Spotify Registration:                  No
 Steam Currency:                        Failed (Network Connection)
=======================================
===========[ North America ]===========
 FOX:                                   No
 Hulu:                                  Failed
 NFL+:                                  IPv6 Not Support
 ESPN+:[Sponsored by Jam]               No
 Epix:                                  No
 Starz:                                 Failed (Network Connection)
 Philo:                                 IPv6 Not Support
 FXNOW:                                 IPv6 Not Support
 TLC GO:                                IPv6 Not Support
 HBO Max:                               Failed (Network Connection)
 Shudder:                               Yes
 BritBox:                               Yes
 Crackle:                               No
 CW TV:                                 No
 A&amp;amp;E TV:                                IPv6 Not Support
 NBA TV:                                Yes
 NBC TV:                                No
 Fubo TV:                               IPv6 Not Support
 Tubi TV:                               Yes
 Sling TV:                              Yes
 Pluto TV:                              Yes
 Acorn TV:                              Failed (Network Connection)
 SHOWTIME:                              Failed (Network Connection)
 encoreTVB:                             Failed (Network Connection)
 Funimation:                            IPv6 Not Support
 Discovery+:                            IPv6 Not Support
 Paramount+:                            Yes
 Peacock TV:                            No
 Popcornflix:                           IPv6 Not Support
 Crunchyroll:                           IPv6 Not Support
 Directv Stream:                        No
 KBS American:                          IPv6 Not Support
 KOCOWA:                                IPv6 Not Support
 Maths Spot:                            IPv6 Not Support
 ---CA---
 CBC Gem:                               Failed (Network Connection)
 Crave:                                 Failed (Network Connection)
=======================================
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/01/08/9e543d8959108.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/01/08/efada29a3e390.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/01/08/b02308cabe524.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2023/01/08/b9f42381d498e.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.106.50.1 (202.106.50.1), 30 hops max, 32 byte packets
 1  104.152.208.1  0.79 ms  AS26832  Canada, Quebec, Montreal, servarica.com
 2  *
 3  be3208.ccr22.ymq01.atlas.cogentco.com (154.54.90.105)  1.18 ms  AS174  Canada, Quebec, Montreal, cogentco.com
 4  be3260.ccr32.yyz02.atlas.cogentco.com (154.54.42.89)  8.58 ms  AS174  Canada, Ontario, Toronto, cogentco.com
 5  be2994.ccr22.cle04.atlas.cogentco.com (154.54.31.233)  15.03 ms  AS174  United States, Ohio, Cleveland, cogentco.com
 6  be2718.ccr42.ord01.atlas.cogentco.com (154.54.7.129)  21.55 ms  AS174  United States, Illinois, Chicago, cogentco.com
 7  be2832.ccr22.mci01.atlas.cogentco.com (154.54.44.169)  33.18 ms  AS174  United States, Missouri, Kansas City, cogentco.com
 8  be3036.ccr22.den01.atlas.cogentco.com (154.54.31.89)  44.50 ms  AS174  United States, Colorado, Denver, cogentco.com
 9  be3038.ccr32.slc01.atlas.cogentco.com (154.54.42.97)  54.77 ms  AS174  United States, Utah, Salt Lake City, cogentco.com
10  be3110.ccr22.sfo01.atlas.cogentco.com (154.54.44.141)  69.28 ms  AS174  United States, California, San Francisco, cogentco.com
11  be3670.ccr41.sjc03.atlas.cogentco.com (154.54.43.14)  70.41 ms  AS174  United States, California, San Jose, cogentco.com
12  38.88.225.98  82.82 ms  AS174  United States, California, San Jose, cogentco.com
13  219.158.96.41  226.81 ms  AS4837  China, Beijing, ChinaUnicom
14  219.158.9.238  224.69 ms  AS4837  China, Beijing, ChinaUnicom
15  219.158.9.201  277.46 ms  AS4837  China, Beijing, ChinaUnicom
16  *
17  202.106.50.1  302.49 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 32 byte packets
 1  104.152.208.1  0.48 ms  AS26832  Canada, Quebec, Montreal, servarica.com
 2  *
 3  be3208.ccr22.ymq01.atlas.cogentco.com (154.54.90.105)  1.22 ms  AS174  Canada, Quebec, Montreal, cogentco.com
 4  be3043.ccr22.lpl01.atlas.cogentco.com (154.54.44.165)  70.62 ms  AS174  United Kingdom, Merseyside County, Southport, cogentco.com
 5  be2491.ccr52.lhr01.atlas.cogentco.com (154.54.39.118)  75.55 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
 6  be3488.ccr42.lon13.atlas.cogentco.com (154.54.60.13)  76.48 ms  AS174  United Kingdom, London, cogentco.com
 7  be2382.rcr21.b015533-1.lon13.atlas.cogentco.com (154.54.61.162)  76.79 ms  AS174  United Kingdom, London, cogentco.com
 8  chinatelecom.demarc.cogentco.com (149.14.81.226)  82.42 ms  AS174  United Kingdom, London, cogentco.com
 9  *
10  *
11  *
12  *
13  180.149.128.1  219.87 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.179.155.161 (221.179.155.161), 30 hops max, 32 byte packets
 1  104.152.208.1  0.46 ms  AS26832  Canada, Quebec, Montreal, servarica.com
 2  *
 3  be3207.ccr21.ymq01.atlas.cogentco.com (154.54.90.101)  11.53 ms  AS174  Canada, Quebec, Montreal, cogentco.com
 4  be3259.ccr31.yyz02.atlas.cogentco.com (154.54.41.205)  8.48 ms  AS174  Canada, Ontario, Toronto, cogentco.com
 5  be2993.ccr21.cle04.atlas.cogentco.com (154.54.31.225)  15.22 ms  AS174  United States, Ohio, Cleveland, cogentco.com
 6  be2717.ccr41.ord01.atlas.cogentco.com (154.54.6.221)  22.04 ms  AS174  United States, Illinois, Chicago, cogentco.com
 7  be2831.ccr21.mci01.atlas.cogentco.com (154.54.42.165)  33.37 ms  AS174  United States, Missouri, Kansas City, cogentco.com
 8  be3035.ccr21.den01.atlas.cogentco.com (154.54.5.89)  81.77 ms  AS174  United States, Colorado, Denver, cogentco.com
 9  be2427.ccr21.elp02.atlas.cogentco.com (154.54.87.21)  57.71 ms  AS174  United States, Texas, El Paso, cogentco.com
10  be2667.ccr21.elp01.atlas.cogentco.com (154.54.87.26)  57.85 ms  AS174  United States, Texas, El Paso, cogentco.com
11  be2930.ccr32.phx01.atlas.cogentco.com (154.54.42.77)  66.29 ms  AS174  United States, Arizona, Phoenix, cogentco.com
12  be2932.ccr42.lax01.atlas.cogentco.com (154.54.45.162)  77.69 ms  AS174  United States, California, Los Angeles, cogentco.com
13  be3359.ccr41.lax05.atlas.cogentco.com (154.54.3.70)  77.64 ms  AS174  United States, California, Los Angeles, cogentco.com
14  38.104.85.162  672.35 ms  AS174  United States, California, Los Angeles, cogentco.com
15  *
16  223.120.12.178  858.79 ms  AS58453  China, Shanghai, ChinaMobile
17  221.183.89.182  851.85 ms  AS9808  China, Shanghai, ChinaMobile
18  221.183.89.69  842.43 ms  AS9808  China, Shanghai, ChinaMobile
19  *
20  *
21  *
22  221.183.110.158  878.42 ms  AS9808  China, Beijing, ChinaMobile
23  cachedns03.bj.chinamobile.com (221.179.155.161)  857.29 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.22.97.1 (210.22.97.1), 30 hops max, 32 byte packets
 1  104.152.208.1  0.40 ms  AS26832  Canada, Quebec, Montreal, servarica.com
 2  96-45-197-101.beanfield.net (96.45.197.101)  1.26 ms  AS21949  Canada, Quebec, Montreal, beanfield.com
 3  et5-1.lsr01.800SquareVictoriaSt01.YUL.beanfield.com (199.167.153.53)  11.00 ms  AS21949  Canada, Quebec, Montreal, beanfield.com
 4  be320.pe08.800SquareVictoriaSt01.YUL.beanfield.com (199.167.154.218)  1.39 ms  AS21949  Canada, Quebec, Montreal, beanfield.com
 5  po320.lsr01.800SquareVictoriaSt01.YUL.beanfield.com (199.167.154.219)  0.69 ms  AS21949  Canada, Quebec, Montreal, beanfield.com
 6  et34-1.lsr02.1250RenelevesqueBl01.YUL.beanfield.com (207.66.123.92)  0.61 ms  AS21949  Canada, Quebec, Montreal, beanfield.com
 7  BEANFIELD-T.edge2.NewYork6.Level3.net (4.30.176.122)  0.85 ms  AS3356  United States, New York, New York City, level3.com
 8  et-1-0-29.edge2.NewYork6.Level3.net (4.30.176.121)  18.82 ms  AS3356  United States, New York, New York City, level3.com
 9  4.69.209.165  72.83 ms  AS3356  United States, California, San Jose, level3.com
10  CHINA-NETCO.edge1.SanJose3.Level3.net (4.53.208.102)  75.54 ms  AS3356  United States, California, San Jose, level3.com
11  219.158.6.5  241.37 ms  AS4837  China, Shanghai, ChinaUnicom
12  219.158.6.185  200.68 ms  AS4837  China, Shanghai, ChinaUnicom
13  *
14  *
15  112.64.250.202  228.83 ms  AS17621  China, Shanghai, ChinaUnicom
16  210.22.97.1  241.66 ms  AS17621  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.96.209.133 (202.96.209.133), 30 hops max, 32 byte packets
 1  104.152.208.1  0.42 ms  AS26832  Canada, Quebec, Montreal, servarica.com
 2  *
 3  be3207.ccr21.ymq01.atlas.cogentco.com (154.54.90.101)  1.45 ms  AS174  Canada, Quebec, Montreal, cogentco.com
 4  be3042.ccr21.lpl01.atlas.cogentco.com (154.54.44.161)  70.25 ms  AS174  United Kingdom, Merseyside County, Southport, cogentco.com
 5  be2391.ccr51.lhr01.atlas.cogentco.com (154.54.39.149)  76.01 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
 6  be3487.ccr41.lon13.atlas.cogentco.com (154.54.60.5)  76.62 ms  AS174  United Kingdom, London, cogentco.com
 7  be2375.rcr21.b015533-1.lon13.atlas.cogentco.com (154.54.61.158)  76.77 ms  AS174  United Kingdom, London, cogentco.com
 8  chinatelecom.demarc.cogentco.com (149.14.81.226)  82.62 ms  AS174  United Kingdom, London, cogentco.com
 9  202.97.93.153  228.58 ms  AS4134  China, Shanghai, ChinaTelecom
10  *
11  *
12  *
13  *
14  124.74.229.230  237.49 ms  AS4812  China, Shanghai, ChinaTelecom
15  ns-pd.online.sh.cn (202.96.209.133)  234.45 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 211.136.112.200 (211.136.112.200), 30 hops max, 32 byte packets
 1  104.152.208.1  0.62 ms  AS26832  Canada, Quebec, Montreal, servarica.com
 2  *
 3  be3207.ccr21.ymq01.atlas.cogentco.com (154.54.90.101)  9.37 ms  AS174  Canada, Quebec, Montreal, cogentco.com
 4  be3042.ccr21.lpl01.atlas.cogentco.com (154.54.44.161)  70.31 ms  AS174  United Kingdom, Merseyside County, Southport, cogentco.com
 5  be2391.ccr51.lhr01.atlas.cogentco.com (154.54.39.149)  76.01 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
 6  be3671.agr21.lhr01.atlas.cogentco.com (130.117.48.138)  75.75 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
 7  149.14.199.194  75.41 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
 8  223.120.10.201  75.63 ms  AS58453  United Kingdom, London, ChinaMobile
 9  223.120.15.82  272.00 ms  AS58453  China, Shanghai, ChinaMobile
10  221.183.89.182  275.14 ms  AS9808  China, Shanghai, ChinaMobile
11  221.183.89.69  273.17 ms  AS9808  China, Shanghai, ChinaMobile
12  *
13  *
14  211.136.190.234  275.81 ms  AS24400  China, Shanghai, ChinaMobile
15  211.136.112.252  277.53 ms  AS24400  China, Shanghai, ChinaMobile
16  211.136.112.200  277.76 ms  AS24400  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  104.152.208.1  0.49 ms  AS26832  Canada, Quebec, Montreal, servarica.com
 2  96-45-197-101.beanfield.net (96.45.197.101)  1.13 ms  AS21949  Canada, Quebec, Montreal, beanfield.com
 3  et5-1.lsr01.800SquareVictoriaSt01.YUL.beanfield.com (199.167.153.53)  20.09 ms  AS21949  Canada, Quebec, Montreal, beanfield.com
 4  be320.pe08.800SquareVictoriaSt01.YUL.beanfield.com (199.167.154.218)  1.08 ms  AS21949  Canada, Quebec, Montreal, beanfield.com
 5  po320.lsr01.800SquareVictoriaSt01.YUL.beanfield.com (199.167.154.219)  0.58 ms  AS21949  Canada, Quebec, Montreal, beanfield.com
 6  et34-1.lsr02.1250RenelevesqueBl01.YUL.beanfield.com (207.66.123.92)  0.69 ms  AS21949  Canada, Quebec, Montreal, beanfield.com
 7  BEANFIELD-T.edge2.NewYork6.Level3.net (4.30.176.122)  5.58 ms  AS3356  United States, New York, New York City, level3.com
 8  et-1-0-29.edge2.NewYork6.Level3.net (4.30.176.121)  16.81 ms  AS3356  United States, New York, New York City, level3.com
 9  ae3.30.edge1.LosAngeles6.level3.net (4.69.153.125)  71.69 ms  AS3356  United States, California, Los Angeles, level3.com
10  CHINA-UNICO.edge1.LosAngeles6.Level3.net (4.26.0.122)  225.35 ms  AS3356  United States, California, Los Angeles, level3.com
11  219.158.96.233  226.26 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
12  219.158.4.45  224.35 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
13  219.158.3.9  224.37 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
14  120.83.0.230  231.31 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
15  120.80.175.62  231.92 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
16  gz1-dns.gdgz.cncnet.net (210.21.4.130)  231.94 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 116.21.84.1 (116.21.84.1), 30 hops max, 32 byte packets
 1  104.152.208.1  0.50 ms  AS26832  Canada, Quebec, Montreal, servarica.com
 2  *
 3  be3207.ccr21.ymq01.atlas.cogentco.com (154.54.90.101)  1.42 ms  AS174  Canada, Quebec, Montreal, cogentco.com
 4  be3042.ccr21.lpl01.atlas.cogentco.com (154.54.44.161)  70.40 ms  AS174  United Kingdom, Merseyside County, Southport, cogentco.com
 5  be2391.ccr51.lhr01.atlas.cogentco.com (154.54.39.149)  76.24 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
 6  be3487.ccr41.lon13.atlas.cogentco.com (154.54.60.5)  76.45 ms  AS174  United Kingdom, London, cogentco.com
 7  be2375.rcr21.b015533-1.lon13.atlas.cogentco.com (154.54.61.158)  76.65 ms  AS174  United Kingdom, London, cogentco.com
 8  chinatelecom.demarc.cogentco.com (149.14.81.226)  84.24 ms  AS174  United Kingdom, London, cogentco.com
 9  202.97.95.185  262.72 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
10  202.97.94.93  251.92 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
11  202.97.94.133  248.36 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
12  14.147.5.142  260.73 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
13  *
14  116.21.84.1  256.03 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.183.63.121 (221.183.63.121), 30 hops max, 32 byte packets
 1  104.152.208.1  0.48 ms  AS26832  Canada, Quebec, Montreal, servarica.com
 2  *
 3  be3208.ccr22.ymq01.atlas.cogentco.com (154.54.90.105)  1.23 ms  AS174  Canada, Quebec, Montreal, cogentco.com
 4  be3260.ccr32.yyz02.atlas.cogentco.com (154.54.42.89)  9.35 ms  AS174  Canada, Ontario, Toronto, cogentco.com
 5  be2994.ccr22.cle04.atlas.cogentco.com (154.54.31.233)  14.93 ms  AS174  United States, Ohio, Cleveland, cogentco.com
 6  be2718.ccr42.ord01.atlas.cogentco.com (154.54.7.129)  21.53 ms  AS174  United States, Illinois, Chicago, cogentco.com
 7  be2832.ccr22.mci01.atlas.cogentco.com (154.54.44.169)  33.73 ms  AS174  United States, Missouri, Kansas City, cogentco.com
 8  be3036.ccr22.den01.atlas.cogentco.com (154.54.31.89)  44.95 ms  AS174  United States, Colorado, Denver, cogentco.com
 9  be3038.ccr32.slc01.atlas.cogentco.com (154.54.42.97)  54.91 ms  AS174  United States, Utah, Salt Lake City, cogentco.com
10  be3110.ccr22.sfo01.atlas.cogentco.com (154.54.44.141)  69.21 ms  AS174  United States, California, San Francisco, cogentco.com
11  be3670.ccr41.sjc03.atlas.cogentco.com (154.54.43.14)  70.49 ms  AS174  United States, California, San Jose, cogentco.com
12  38.88.224.162  70.57 ms  AS174  United States, California, San Jose, cogentco.com
13  223.120.6.69  70.45 ms  AS58453  United States, California, San Jose, ChinaMobile
14  223.120.12.142  260.62 ms  AS58453  China, Shanghai, ChinaMobile
15  221.183.89.170  254.80 ms  AS9808  China, Shanghai, ChinaMobile
16  221.183.89.33  252.36 ms  AS9808  China, Shanghai, ChinaMobile
17  *
18  *
19  221.183.63.121  287.91 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;性能中规中矩，无限流量和大硬盘，再加上不错的稳定性，1刀/月的超低价，独立IPv4和IPv6，可以说是超值了。&lt;/p&gt;
</content:encoded></item><item><title>V.PS黑五闪购西雅图€12.48/年VPS测评</title><link>https://yushum.com/posts/v-ps%E9%BB%91%E4%BA%94%E9%97%AA%E8%B4%AD%E8%A5%BF%E9%9B%85%E5%9B%BEe12-48-%E5%B9%B4vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/v-ps%E9%BB%91%E4%BA%94%E9%97%AA%E8%B4%AD%E8%A5%BF%E9%9B%85%E5%9B%BEe12-48-%E5%B9%B4vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Mon, 28 Nov 2022 17:59:31 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;V.PS家的这几次促销基本都是清库存，不值得购买。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-11-22                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Sun 27 Nov 2022 09:20:55 PM PST

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 1 minutes
Processor  : AMD Ryzen 9 5950X 16-Core Processor
CPU cores  : 1 @ 3399.998 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 979.0 MiB
Swap       : 975.0 MiB
Disk       : 13.7 GiB
Distro     : Debian GNU/Linux 11 (bullseye)
Kernel     : 5.10.0-19-cloud-amd64

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ---- 
Read       | 48.71 MB/s   (12.1k) | 1.00 GB/s    (15.7k)
Write      | 48.79 MB/s   (12.1k) | 1.01 GB/s    (15.8k)
Total      | 97.51 MB/s   (24.3k) | 2.01 GB/s    (31.5k)
           |                      |                     
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ---- 
Read       | 1.02 GB/s     (1.9k) | 1.00 GB/s      (986)
Write      | 1.07 GB/s     (2.1k) | 1.07 GB/s     (1.0k)
Total      | 2.09 GB/s     (4.0k) | 2.08 GB/s     (2.0k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping           
-----           | -----                     | ----            | ----            | ----           
Clouvider       | London, UK (10G)          | 573 Mbits/sec   | 733 Mbits/sec   | 131 ms         
Scaleway        | Paris, FR (10G)           | 606 Mbits/sec   | 565 Mbits/sec   | 144 ms         
NovoServe       | North Holland, NL (40G)   | 548 Mbits/sec   | 633 Mbits/sec   | 140 ms         
Uztelecom       | Tashkent, UZ (10G)        | 469 Mbits/sec   | 676 Mbits/sec   | 230 ms         
Clouvider       | NYC, NY, US (10G)         | 784 Mbits/sec   | 778 Mbits/sec   | 62.2 ms        
Clouvider       | Dallas, TX, US (10G)      | 793 Mbits/sec   | 781 Mbits/sec   | 56.8 ms        
Clouvider       | Los Angeles, CA, US (10G) | 819 Mbits/sec   | 793 Mbits/sec   | 32.5 ms        

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping           
-----           | -----                     | ----            | ----            | ----           
Clouvider       | London, UK (10G)          | 561 Mbits/sec   | 725 Mbits/sec   | 131 ms         
Scaleway        | Paris, FR (10G)           | 605 Mbits/sec   | 718 Mbits/sec   | 144 ms         
NovoServe       | North Holland, NL (40G)   | 567 Mbits/sec   | 653 Mbits/sec   | 140 ms         
Uztelecom       | Tashkent, UZ (10G)        | 428 Mbits/sec   | 638 Mbits/sec   | 230 ms         
Clouvider       | NYC, NY, US (10G)         | 790 Mbits/sec   | 768 Mbits/sec   | 62.2 ms        
Clouvider       | Dallas, TX, US (10G)      | 794 Mbits/sec   | 771 Mbits/sec   | 56.8 ms        
Clouvider       | Los Angeles, CA, US (10G) | 820 Mbits/sec   | 783 Mbits/sec   | 32.6 ms        

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value                         
                |                               
Single Core     | 1668                          
Multi Core      | 1665                          
Full Test       | https://browser.geekbench.com/v5/cpu/18932197
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-06-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : AMD Ryzen 9 5950X 16-Core Processor
 CPU Cores          : 1 @ 3399.998 MHz
 CPU Cache          : 512 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Enabled
 Total Disk         : 13.7 GB (915.3 MB Used)
 Total Mem          : 979.0 MB (52.1 MB Used)
 Total Swap         : 975.0 MB (780.0 KB Used)
 System uptime      : 0 days, 0 hour 12 min
 Load average       : 0.05, 0.11, 0.05
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-19-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 Organization       : AS949 xTom
 Location           : Seattle / US
 Region             : Washington
----------------------------------------------------------------------
 I/O Speed(1st run) : 538 MB/s
 I/O Speed(2nd run) : 494 MB/s
 I/O Speed(3rd run) : 388 MB/s
 I/O Speed(average) : 473.3 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency     
 Speedtest.net    801.23 Mbps       798.12 Mbps         43.63 ms    
 Los Angeles, US  831.61 Mbps       793.01 Mbps         26.38 ms    
 Dallas, US       781.16 Mbps       796.18 Mbps         54.35 ms    
 Montreal, CA     685.50 Mbps       763.48 Mbps         61.45 ms    
 Paris, FR        508.34 Mbps       797.80 Mbps         154.76 ms   
 Amsterdam, NL    551.70 Mbps       801.68 Mbps         146.58 ms   
 Shanghai, CN     274.90 Mbps       451.93 Mbps         196.15 ms   
 Nanjing, CN      0.76 Mbps         805.19 Mbps         148.97 ms   
 Guangzhou, CN    15.73 Mbps        258.04 Mbps         166.51 ms   
 Hongkong, CN     432.60 Mbps       545.16 Mbps         180.23 ms   
 Seoul, KR        575.99 Mbps       778.86 Mbps         128.28 ms   
 Singapore, SG    442.15 Mbps       799.42 Mbps         172.40 ms   
 Tokyo, JP        624.31 Mbps       797.23 Mbps         124.92 ms   
----------------------------------------------------------------------
 Finished in        : 6 min 54 sec
 Timestamp          : 2022-11-27 21:39:23 PST
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Sun 27 Nov 2022 09:40:53 PM PST

 ** 正在测试IPv4解锁情况 
--------------------------------
 ** 您的网络为:  (142.147.*.*) 


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               Yes (Region: US)
 Disney+:                               Yes (Region: US)
 Netflix:                               Originals Only
 YouTube Premium:                       Yes
 Amazon Prime Video:                    Yes (Region: US)
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   US
 Viu.com:                               No
 YouTube CDN:                           Seattle, WA 
 Netflix Preferred CDN:                 Associated with [] in [Seattle, WA ]
 Spotify Registration:                  No
 Steam Currency:                        USD
=======================================
===========[ North America ]===========
 FOX:                                   Yes
 Hulu:                                  Failed
 NFL+:                                  Yes
 ESPN+:[Sponsored by Jam]               Yes
 Epix:                                  No
 Starz:                                 No
 Philo:                                 Yes
 FXNOW:                                 Yes
 TLC GO:                                Yes
 HBO Max:                               Yes
 Shudder:                               Yes
 BritBox:                               Yes
 Crackle:                               Yes
 CW TV:                                 Yes
 A&amp;amp;E TV:                                Yes
 NBA TV:                                Yes
 NBC TV:                                Yes
 Fubo TV:                               Yes
 Tubi TV:                               Yes
 Sling TV:                              Yes
 Pluto TV:                              Yes
 Acorn TV:                              Yes
 SHOWTIME:                              Yes
 encoreTVB:                             Yes
 Funimation:                            Yes (Region: US)
 Discovery+:                            Yes
 Paramount+:                            Yes
 Peacock TV:                            Yes
 Popcornflix:                           Yes
 Crunchyroll:                           Yes
 Directv Stream:                        Yes
 KBS American:                          No
 KOCOWA:                                Yes
 ---CA---
 CBC Gem:                               No
 Crave:                                 No
=======================================


 ** 正在测试IPv6解锁情况 
--------------------------------
 ** 您的网络为:  (2605:3a40:5:*:*) 


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               Yes (Region: US)
 Disney+:                               Yes (Region: US)
 Netflix:                               Originals Only
 YouTube Premium:                       No 
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           Seattle, WA 
 Netflix Preferred CDN:                 Seattle, WA  
 Spotify Registration:                  No
 Steam Currency:                        Failed (Network Connection)
=======================================
===========[ North America ]===========
 FOX:                                   Yes
 Hulu:                                  Failed
 NFL+:                                  IPv6 Not Support
 ESPN+:[Sponsored by Jam]               Yes
 Epix:                                  No
 Starz:                                 Failed (Network Connection)
 Philo:                                 IPv6 Not Support
 FXNOW:                                 IPv6 Not Support
 TLC GO:                                IPv6 Not Support
 HBO Max:                               Failed (Network Connection)
 Shudder:                               Yes
 BritBox:                               Yes
 Crackle:                               Yes
 CW TV:                                 Yes
 A&amp;amp;E TV:                                IPv6 Not Support
 NBA TV:                                Yes
 NBC TV:                                Yes
 Fubo TV:                               IPv6 Not Support
 Tubi TV:                               Yes
 Sling TV:                              Yes
 Pluto TV:                              Yes
 Acorn TV:                              Failed (Network Connection)
 SHOWTIME:                              Failed (Network Connection)
 encoreTVB:                             Failed (Network Connection)
 Funimation:                            IPv6 Not Support
 Discovery+:                            IPv6 Not Support
 Paramount+:                            Yes
 Peacock TV:                            Yes
 Popcornflix:                           IPv6 Not Support
 Crunchyroll:                           IPv6 Not Support
 KBS American:m:                        IPv6 Not Support                                -&amp;gt;
 KOCOWA:                                IPv6 Not Support
 ---CA---
 CBC Gem:                               Failed (Network Connection)
 Crave:                                 Failed (Network Connection)
=======================================
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/11/28/0200eb3af51c0.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/11/28/8c8365ec295b1.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/11/28/1148929070eb0.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.106.50.1 (202.106.50.1), 30 hops max, 32 byte packets
 1  rg02.sea.v.ps (142.147.95.1)  0.21 ms  AS949  XTOM.COM, xtom.com
 2  po77-3529.cr01.sea02.us.misaka.io (84.17.33.10)  0.23 ms  AS60068  United States, Washington, Seattle, cdn77.com
 3  be-110-pe12.seattle.wa.ibone.comcast.net (50.248.116.121)  0.82 ms  AS7922  United States, Washington, Seattle, comcast.com
 4  be-2112-cs01.seattle.wa.ibone.comcast.net (96.110.34.129)  1.02 ms  AS7922  United States, Washington, Seattle, comcast.com
 5  be-1112-cr12.seattle.wa.ibone.comcast.net (96.110.47.182)  0.73 ms  AS7922  United States, Washington, Seattle, comcast.com
 6  be-302-cr12.portland.or.ibone.comcast.net (96.110.38.38)  4.15 ms  AS7922  United States, Oregon, Portland, comcast.com
 7  be-1312-cs03.portland.or.ibone.comcast.net (96.110.46.245)  3.87 ms  AS7922  United States, Oregon, Portland, comcast.com
 8  be-1311-cr11.portland.or.ibone.comcast.net (96.110.46.242)  4.18 ms  AS7922  United States, Oregon, Portland, comcast.com
 9  be-303-cr13.sunnyvale.ca.ibone.comcast.net (96.110.39.41)  18.00 ms  AS7922  United States, California, Sunnyvale, comcast.com
10  be-1213-cs02.sunnyvale.ca.ibone.comcast.net (96.110.46.21)  17.50 ms  AS7922  United States, California, Sunnyvale, comcast.com
11  be-1212-cr12.sunnyvale.ca.ibone.comcast.net (96.110.46.18)  17.39 ms  AS7922  United States, California, Sunnyvale, comcast.com
12  be-302-cr12.9greatoaks.ca.ibone.comcast.net (96.110.37.174)  17.94 ms  AS7922  United States, California, San Jose, comcast.com
13  be-1112-cs01.9greatoaks.ca.ibone.comcast.net (68.86.166.133)  18.09 ms  AS7922  United States, California, San Jose, comcast.com
14  be-2101-pe01.9greatoaks.ca.ibone.comcast.net (96.110.36.218)  17.86 ms  AS7922  United States, California, San Jose, comcast.com
15  as4837-pe01.11greatoaks.ca.ibone.comcast.net (75.149.229.42)  170.47 ms  AS7922  United States, California, San Jose, comcast.com
16  219.158.98.9  177.27 ms  AS4837  China, Beijing, ChinaUnicom
17  219.158.9.214  172.57 ms  AS4837  China, Beijing, ChinaUnicom
18  *
19  *
20  202.106.50.1  210.92 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 32 byte packets
 1  rg02.sea.v.ps (142.147.95.1)  0.21 ms  AS949  XTOM.COM, xtom.com
 2  po77-3528.cr01.sea02.us.misaka.io (84.17.33.8)  0.16 ms  AS60068  United States, Washington, Seattle, cdn77.com
 3  be-110-pe12.seattle.wa.ibone.comcast.net (50.248.116.121)  0.69 ms  AS7922  United States, Washington, Seattle, comcast.com
 4  be-2212-cs02.seattle.wa.ibone.comcast.net (96.110.34.133)  0.66 ms  AS7922  United States, Washington, Seattle, comcast.com
 5  be-2201-pe01.seattle.wa.ibone.comcast.net (96.110.39.206)  0.60 ms  AS7922  United States, Washington, Seattle, comcast.com
 6  66.208.232.82  9.03 ms  AS7922  United States, Washington, Seattle, comcast.com
 7  202.97.59.89  149.92 ms  AS4134  China, Beijing, ChinaTelecom
 8  *
 9  *
10  *
11  180.149.128.1  164.62 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.179.155.161 (221.179.155.161), 30 hops max, 32 byte packets
 1  rg02.sea.v.ps (142.147.95.1)  0.22 ms  AS949  XTOM.COM, xtom.com
 2  po77-3529.cr01.sea02.us.misaka.io (84.17.33.10)  0.23 ms  AS60068  United States, Washington, Seattle, cdn77.com
 3  sea-b2-link.ip.twelve99.net (80.239.193.193)  0.28 ms  AS1299  United States, Washington, Seattle, telia.com
 4  sjo-b23-link.ip.twelve99.net (62.115.118.169)  22.98 ms  AS1299  United States, California, San Jose, telia.com
 5  chinamobile-ic-342121-sjo-b21c.telia.net (62.115.171.215)  20.24 ms  AS1299  United States, California, San Jose, telia.com
 6  223.120.6.69  22.98 ms  AS58453  United States, California, San Jose, ChinaMobile
 7  223.120.12.138  200.18 ms  AS58453  China, Shanghai, ChinaMobile
 8  221.183.89.170  180.49 ms  AS9808  China, Shanghai, ChinaMobile
 9  221.183.89.33  204.37 ms  AS9808  China, Shanghai, ChinaMobile
10  221.183.89.10  188.21 ms  AS9808  China, Shanghai, ChinaMobile
11  *
12  221.183.46.174  230.68 ms  AS9808  China, Beijing, ChinaMobile
13  221.183.110.158  229.60 ms  AS9808  China, Beijing, ChinaMobile
14  cachedns03.bj.chinamobile.com (221.179.155.161)  211.29 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.22.97.1 (210.22.97.1), 30 hops max, 32 byte packets
 1  rg02.sea.v.ps (142.147.95.1)  0.32 ms  AS949  XTOM.COM, xtom.com
 2  po77-3529.cr01.sea02.us.misaka.io (84.17.33.10)  0.21 ms  AS60068  United States, Washington, Seattle, cdn77.com
 3  be-110-pe12.seattle.wa.ibone.comcast.net (50.248.116.121)  0.90 ms  AS7922  United States, Washington, Seattle, comcast.com
 4  be-2112-cs01.seattle.wa.ibone.comcast.net (96.110.34.129)  0.82 ms  AS7922  United States, Washington, Seattle, comcast.com
 5  be-1112-cr12.seattle.wa.ibone.comcast.net (96.110.47.182)  0.80 ms  AS7922  United States, Washington, Seattle, comcast.com
 6  be-301-cr12.portland.or.ibone.comcast.net (96.110.38.34)  3.95 ms  AS7922  United States, Oregon, Portland, comcast.com
 7  be-1112-cs01.portland.or.ibone.comcast.net (96.110.46.213)  4.01 ms  AS7922  United States, Oregon, Portland, comcast.com
 8  be-1111-cr11.portland.or.ibone.comcast.net (96.110.46.210)  4.03 ms  AS7922  United States, Oregon, Portland, comcast.com
 9  be-301-cr13.sunnyvale.ca.ibone.comcast.net (96.110.36.121)  17.44 ms  AS7922  United States, California, Sunnyvale, comcast.com
10  be-1113-cs01.sunnyvale.ca.ibone.comcast.net (96.110.46.9)  17.77 ms  AS7922  United States, California, Sunnyvale, comcast.com
11  be-1112-cr12.sunnyvale.ca.ibone.comcast.net (96.110.46.6)  17.58 ms  AS7922  United States, California, Sunnyvale, comcast.com
12  be-302-cr12.9greatoaks.ca.ibone.comcast.net (96.110.37.174)  18.02 ms  AS7922  United States, California, San Jose, comcast.com
13  be-1112-cs01.9greatoaks.ca.ibone.comcast.net (68.86.166.133)  17.90 ms  AS7922  United States, California, San Jose, comcast.com
14  be-2101-pe01.9greatoaks.ca.ibone.comcast.net (96.110.36.218)  17.99 ms  AS7922  United States, California, San Jose, comcast.com
15  as4837-pe01.11greatoaks.ca.ibone.comcast.net (75.149.229.42)  169.45 ms  AS7922  United States, California, San Jose, comcast.com
16  219.158.96.41  177.12 ms  AS4837  China, Beijing, ChinaUnicom
17  219.158.3.181  172.15 ms  AS4837  China, Beijing, ChinaUnicom
18  219.158.5.149  199.60 ms  AS4837  China, Beijing, ChinaUnicom
19  *
20  *
21  112.64.250.202  209.13 ms  AS17621  China, Shanghai, ChinaUnicom
22  210.22.97.1  205.10 ms  AS17621  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.96.209.133 (202.96.209.133), 30 hops max, 32 byte packets
 1  rg02.sea.v.ps (142.147.95.1)  0.19 ms  AS949  XTOM.COM, xtom.com
 2  po77-3528.cr01.sea02.us.misaka.io (84.17.33.8)  0.25 ms  AS60068  United States, Washington, Seattle, cdn77.com
 3  be-110-pe12.seattle.wa.ibone.comcast.net (50.248.116.121)  0.58 ms  AS7922  United States, Washington, Seattle, comcast.com
 4  be-2412-cs04.seattle.wa.ibone.comcast.net (96.110.34.141)  0.79 ms  AS7922  United States, Washington, Seattle, comcast.com
 5  be-2401-pe01.seattle.wa.ibone.comcast.net (96.110.39.230)  0.68 ms  AS7922  United States, Washington, Seattle, comcast.com
 6  66.208.232.82  6.43 ms  AS7922  United States, Washington, Seattle, comcast.com
 7  *
 8  *
 9  *
10  101.95.88.97  145.19 ms  AS4812  China, Shanghai, ChinaTelecom
11  180.169.255.118  128.61 ms  AS4812  China, Shanghai, ChinaTelecom
12  ns-pd.online.sh.cn (202.96.209.133)  139.94 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 211.136.112.200 (211.136.112.200), 30 hops max, 32 byte packets
 1  rg02.sea.v.ps (142.147.95.1)  0.26 ms  AS949  XTOM.COM, xtom.com
 2  po77-3528.cr01.sea02.us.misaka.io (84.17.33.8)  0.28 ms  AS60068  United States, Washington, Seattle, cdn77.com
 3  be5985.ccr22.sea02.atlas.cogentco.com (38.88.253.217)  24.34 ms  AS174  United States, Washington, Seattle, cogentco.com
 4  be3716.ccr21.sfo01.atlas.cogentco.com (154.54.86.105)  18.97 ms  AS174  United States, California, San Francisco, cogentco.com
 5  be3669.ccr41.sjc03.atlas.cogentco.com (154.54.43.10)  53.88 ms  AS174  United States, California, San Jose, cogentco.com
 6  38.88.224.162  19.23 ms  AS174  United States, California, San Jose, cogentco.com
 7  223.120.6.69  21.51 ms  AS58453  United States, California, San Jose, ChinaMobile
 8  *
 9  *
10  221.183.89.33  203.17 ms  AS9808  China, Shanghai, ChinaMobile
11  *
12  *
13  211.136.190.234  182.47 ms  AS24400  China, Shanghai, ChinaMobile
14  211.136.112.252  182.25 ms  AS24400  China, Shanghai, ChinaMobile
15  211.136.112.200  181.19 ms  AS24400  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  rg02.sea.v.ps (142.147.95.1)  0.23 ms  AS949  XTOM.COM, xtom.com
 2  po77-3528.cr01.sea02.us.misaka.io (84.17.33.8)  0.18 ms  AS60068  United States, Washington, Seattle, cdn77.com
 3  be-110-pe12.seattle.wa.ibone.comcast.net (50.248.116.121)  0.94 ms  AS7922  United States, Washington, Seattle, comcast.com
 4  be-2312-cs03.seattle.wa.ibone.comcast.net (96.110.34.137)  0.74 ms  AS7922  United States, Washington, Seattle, comcast.com
 5  be-1312-cr12.seattle.wa.ibone.comcast.net (96.110.47.206)  0.69 ms  AS7922  United States, Washington, Seattle, comcast.com
 6  be-303-cr12.portland.or.ibone.comcast.net (96.110.38.42)  3.89 ms  AS7922  United States, Oregon, Portland, comcast.com
 7  be-1312-cs03.portland.or.ibone.comcast.net (96.110.46.245)  3.89 ms  AS7922  United States, Oregon, Portland, comcast.com
 8  be-1311-cr11.portland.or.ibone.comcast.net (96.110.46.242)  3.86 ms  AS7922  United States, Oregon, Portland, comcast.com
 9  be-302-cr13.sunnyvale.ca.ibone.comcast.net (96.110.36.125)  17.97 ms  AS7922  United States, California, Sunnyvale, comcast.com
10  be-1413-cs04.sunnyvale.ca.ibone.comcast.net (96.110.46.45)  17.58 ms  AS7922  United States, California, Sunnyvale, comcast.com
11  be-1412-cr12.sunnyvale.ca.ibone.comcast.net (96.110.46.42)  17.37 ms  AS7922  United States, California, Sunnyvale, comcast.com
12  be-303-cr12.9greatoaks.ca.ibone.comcast.net (96.110.37.178)  17.93 ms  AS7922  United States, California, San Jose, comcast.com
13  be-1412-cs04.9greatoaks.ca.ibone.comcast.net (68.86.166.169)  18.11 ms  AS7922  United States, California, San Jose, comcast.com
14  be-2401-pe01.9greatoaks.ca.ibone.comcast.net (96.110.36.230)  18.23 ms  AS7922  United States, California, San Jose, comcast.com
15  219.158.40.117  170.83 ms  AS4837  United States, California, San Jose, ChinaUnicom
16  219.158.96.37  173.77 ms  AS4837  China, Beijing, ChinaUnicom
17  219.158.3.49  170.09 ms  AS4837  China, Beijing, ChinaUnicom
18  *
19  *
20  112.96.0.2  237.05 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
21  120.80.175.70  242.91 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
22  gz1-dns.gdgz.cncnet.net (210.21.4.130)  246.66 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 116.21.84.1 (116.21.84.1), 30 hops max, 32 byte packets
 1  rg02.sea.v.ps (142.147.95.1)  0.20 ms  AS949  XTOM.COM, xtom.com
 2  po77-3528.cr01.sea02.us.misaka.io (84.17.33.8)  0.28 ms  AS60068  United States, Washington, Seattle, cdn77.com
 3  be-110-pe12.seattle.wa.ibone.comcast.net (50.248.116.121)  2.82 ms  AS7922  United States, Washington, Seattle, comcast.com
 4  be-2112-cs01.seattle.wa.ibone.comcast.net (96.110.34.129)  0.67 ms  AS7922  United States, Washington, Seattle, comcast.com
 5  be-2101-pe01.seattle.wa.ibone.comcast.net (96.110.39.202)  0.74 ms  AS7922  United States, Washington, Seattle, comcast.com
 6  66.208.232.82  10.98 ms  AS7922  United States, Washington, Seattle, comcast.com
 7  *
 8  *
 9  *
10  14.147.4.122  164.36 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
11  116.21.84.1  165.15 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.183.63.121 (221.183.63.121), 30 hops max, 32 byte packets
 1  rg02.sea.v.ps (142.147.95.1)  0.22 ms  AS949  XTOM.COM, xtom.com
 2  po77-3529.cr01.sea02.us.misaka.io (84.17.33.10)  0.25 ms  AS60068  United States, Washington, Seattle, cdn77.com
 3  be6295.ccr21.sea02.atlas.cogentco.com (38.88.50.73)  0.78 ms  AS174  United States, Washington, Seattle, cogentco.com
 4  be3717.ccr22.sfo01.atlas.cogentco.com (154.54.86.209)  19.27 ms  AS174  United States, California, San Francisco, cogentco.com
 5  be3670.ccr41.sjc03.atlas.cogentco.com (154.54.43.14)  20.31 ms  AS174  United States, California, San Jose, cogentco.com
 6  38.88.224.162  19.33 ms  AS174  United States, California, San Jose, cogentco.com
 7  223.120.6.69  21.55 ms  AS58453  United States, California, San Jose, ChinaMobile
 8  223.120.12.142  182.21 ms  AS58453  China, Shanghai, ChinaMobile
 9  221.183.89.170  177.83 ms  AS9808  China, Shanghai, ChinaMobile
10  221.183.89.33  201.82 ms  AS9808  China, Shanghai, ChinaMobile
11  *
12  *
13  221.183.63.121  213.94 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;性能有亿点点强，网络一般般，适合落地和建站。&lt;/p&gt;
</content:encoded></item><item><title>InterServer锡考克斯$3/月VPS测评</title><link>https://yushum.com/posts/interserver%E9%94%A1%E8%80%83%E5%85%8B%E6%96%AFvps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/interserver%E9%94%A1%E8%80%83%E5%85%8B%E6%96%AFvps%E6%B5%8B%E8%AF%84/</guid><pubDate>Sun, 27 Nov 2022 20:25:50 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;老牌大盘鸡，不过只能发工单购买。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-11-22                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Sun Nov 27 06:56:32 UTC 2022

Basic System Information:
---------------------------------
Uptime     : 0 days, 3 hours, 41 minutes
Processor  : Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz
CPU cores  : 1 @ 2497.092 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 1.9 GiB
Swap       : 1003.0 MiB
Disk       : 984.2 GiB
Distro     : Ubuntu 22.04.1 LTS
Kernel     : 5.15.0-46-generic

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ---- 
Read       | 24.25 MB/s    (6.0k) | 332.69 MB/s   (5.1k)
Write      | 24.27 MB/s    (6.0k) | 334.44 MB/s   (5.2k)
Total      | 48.52 MB/s   (12.1k) | 667.13 MB/s  (10.4k)
           |                      |                     
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ---- 
Read       | 206.66 MB/s    (403) | 637.22 MB/s    (622)
Write      | 217.64 MB/s    (425) | 679.66 MB/s    (663)
Total      | 424.30 MB/s    (828) | 1.31 GB/s     (1.2k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping           
-----           | -----                     | ----            | ----            | ----           
Clouvider       | London, UK (10G)          | 838 Mbits/sec   | 2.05 Gbits/sec  | 70.1 ms        
Scaleway        | Paris, FR (10G)           | 1.77 Gbits/sec  | 2.06 Gbits/sec  | 78.4 ms        
NovoServe       | North Holland, NL (40G)   | 1.54 Gbits/sec  | 1.86 Gbits/sec  | 75.1 ms        
Uztelecom       | Tashkent, UZ (10G)        | 613 Mbits/sec   | 801 Mbits/sec   | 166 ms         
Clouvider       | NYC, NY, US (10G)         | 3.48 Gbits/sec  | 6.06 Gbits/sec  | 1.27 ms        
Clouvider       | Dallas, TX, US (10G)      | 1.95 Gbits/sec  | 3.66 Gbits/sec  | 37.7 ms        
Clouvider       | Los Angeles, CA, US (10G) | 1.21 Gbits/sec  | 2.12 Gbits/sec  | 56.0 ms        

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping           
-----           | -----                     | ----            | ----            | ----           
Clouvider       | London, UK (10G)          | 1.13 Gbits/sec  | 1.22 Gbits/sec  | 70.0 ms        
Scaleway        | Paris, FR (10G)           | busy            | busy            |                
NovoServe       | North Holland, NL (40G)   | 1.23 Gbits/sec  | 2.19 Gbits/sec  | 74.9 ms        
Uztelecom       | Tashkent, UZ (10G)        | 1.05 Gbits/sec  | 141 Mbits/sec   | 166 ms         
Clouvider       | NYC, NY, US (10G)         | 5.14 Gbits/sec  | 5.72 Gbits/sec  | 0.954 ms       
Clouvider       | Dallas, TX, US (10G)      | 1.31 Gbits/sec  | 1.69 Gbits/sec  | 37.6 ms        
Clouvider       | Los Angeles, CA, US (10G) | 938 Mbits/sec   | 2.32 Gbits/sec  | 56.0 ms        

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value                         
                |                               
Single Core     | 620                           
Multi Core      | 661                           
Full Test       | https://browser.geekbench.com/v5/cpu/18910085
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-06-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz
 CPU Cores          : 1 @ 2497.092 MHz
 CPU Cache          : 30720 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Enabled
 Total Disk         : 984.2 GB (5.2 GB Used)
 Total Mem          : 1.9 GB (170.6 MB Used)
 Total Swap         : 1003.0 MB (0 Used)
 System uptime      : 0 days, 0 hour 2 min
 Load average       : 0.05, 0.04, 0.01
 OS                 : Ubuntu 22.04.1 LTS
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.15.0-46-generic
 TCP CC             : cubic
 Virtualization     : KVM
 Organization       : AS19318 Interserver, Inc
 Location           : Secaucus / US
 Region             : New Jersey
----------------------------------------------------------------------
 I/O Speed(1st run) : 348 MB/s
 I/O Speed(2nd run) : 488 MB/s
 I/O Speed(3rd run) : 570 MB/s
 I/O Speed(average) : 468.7 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency     
 Speedtest.net    5886.99 Mbps      4497.96 Mbps        0.27 ms     
 Dallas, US       1430.96 Mbps      25.45 Mbps          36.96 ms    
 Montreal, CA     483.36 Mbps       41.38 Mbps          72.17 ms    
 Paris, FR        538.54 Mbps       2758.22 Mbps        72.40 ms    
 Amsterdam, NL    856.38 Mbps       2519.22 Mbps        80.15 ms    
 Shanghai, CN     417.46 Mbps       585.33 Mbps         243.37 ms   
 Nanjing, CN      7.69 Mbps         1907.94 Mbps        243.90 ms   
 Guangzhou, CN    19.44 Mbps        166.05 Mbps         224.63 ms   
 Hongkong, CN     430.17 Mbps       1318.66 Mbps        384.26 ms   
 Seoul, KR        37.69 Mbps        459.86 Mbps         231.69 ms   
 Singapore, SG    0.97 Mbps         34.49 Mbps          244.76 ms   
 Tokyo, JP        501.38 Mbps       3415.73 Mbps        170.89 ms   
----------------------------------------------------------------------
 Finished in        : 7 min 25 sec
 Timestamp          : 2022-11-27 12:06:04 UTC
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Sun Nov 27 12:15:12 UTC 2022

 ** 正在测试IPv4解锁情况 
--------------------------------
 ** 您的网络为:  (67.211.*.*) 


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               No
 Netflix:                               Originals Only
 YouTube Premium:                       Yes
 Amazon Prime Video:                    Yes (Region: US)
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   US
 Viu.com:                               No
 YouTube CDN:                           New York, NY 
 Netflix Preferred CDN:                 New York, NY  
 Spotify Registration:                  No
 Steam Currency:                        USD
=======================================
===========[ North America ]===========
 FOX:                                   Yes
 Hulu:                                  Failed
 NFL+:                                  Yes
 ESPN+:[Sponsored by Jam]               No
 Epix:                                  No
 Starz:                                 No
 Philo:                                 Yes
 FXNOW:                                 Yes
 TLC GO:                                Yes
 HBO Max:                               Yes
 Shudder:                               Yes
 BritBox:                               Yes
 Crackle:                               Yes
 CW TV:                                 Yes
 A&amp;amp;E TV:                                Yes
 NBA TV:                                Yes
 NBC TV:                                Yes
 Fubo TV:                               Yes
 Tubi TV:                               Yes
 Sling TV:                              Yes
 Pluto TV:                              Yes
 Acorn TV:                              Yes
 SHOWTIME:                              Yes
 encoreTVB:                             Yes
 Funimation:                            Yes (Region: US)
 Discovery+:                            Yes
 Paramount+:                            Yes
 Peacock TV:                            Yes
 Popcornflix:                           Yes
 Crunchyroll:                           Yes
 Directv Stream:                        Yes
 KBS American:                          Failed (Network Connection)
 KOCOWA:                                Yes
 ---CA---
 CBC Gem:                               No
 Crave:                                 No
=======================================


 ** 正在测试IPv6解锁情况 
--------------------------------
 ** 您的网络为: Interserver (2604:a00:50:*:*) 


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               Yes (Region: US)
 Disney+:                               No
 Netflix:                               Originals Only
 YouTube Premium:                       Yes
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           New York, NY 
 Netflix Preferred CDN:                 Associated with [] in [New York, NY ]
 Spotify Registration:                  No
 Steam Currency:                        Failed (Network Connection)
=======================================
===========[ North America ]===========
 FOX:                                   Yes
 Hulu:                                  Failed
 NFL+:                                  IPv6 Not Support
 ESPN+:[Sponsored by Jam]               No
 Epix:                                  No
 Starz:                                 Failed (Network Connection)
 Philo:                                 IPv6 Not Support
 FXNOW:                                 IPv6 Not Support
 TLC GO:                                IPv6 Not Support
 HBO Max:                               Failed (Network Connection)
 Shudder:                               Yes
 BritBox:                               Yes
 Crackle:                               Yes
 CW TV:                                 Yes
 A&amp;amp;E TV:                                IPv6 Not Support
 NBA TV:                                Yes
 NBC TV:                                Yes
 Fubo TV:                               IPv6 Not Support
 Tubi TV:                               Yes
 Sling TV:                              Yes
 Pluto TV:                              Yes
 Acorn TV:                              Failed (Network Connection)
 SHOWTIME:                              Failed (Network Connection)
 encoreTVB:                             Failed (Network Connection)
 Funimation:                            IPv6 Not Support
 Discovery+:                            IPv6 Not Support
 Paramount+:                            Yes
 Peacock TV:                            Yes
 Popcornflix:                           IPv6 Not Support
 Crunchyroll:                           IPv6 Not Support
 KBS American:m:                        IPv6 Not Support                                -&amp;gt;
 KOCOWA:                                IPv6 Not Support
 ---CA---
 CBC Gem:                               Failed (Network Connection)
 Crave:                                 Failed (Network Connection)
=======================================
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/11/27/19e3db763521b.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/11/27/f40961ebe0003.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/11/27/dee99948bf34e.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/11/27/46a9fa6d8a9ea.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.106.50.1 (202.106.50.1), 30 hops max, 32 byte packets
 1  173.214.165.33  0.47 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 2  68.168.214.17  18.74 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 3  64.20.32.141  0.64 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 4  core-03-teb2.us.as19318.net (64.20.32.182)  0.63 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 5  vl601.cr1.lga2.us.as19318.net (64.20.32.186)  14.93 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 6  ae3-2020.cr2-nyc4.ip4.gtt.net (72.29.202.153)  13.81 ms  AS3257  United States, New York, New York City, gtt.net
 7  ae11.cr4-lax2.ip4.gtt.net (89.149.140.77)  56.16 ms  AS3257  United States, California, Los Angeles, gtt.net
 8  as4837.lax21.ip4.gtt.net (173.205.56.190)  58.13 ms  AS3257  United States, California, Los Angeles, gtt.net
 9  219.158.97.205  293.58 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
10  219.158.96.210  302.22 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
11  *
12  219.158.15.37  255.21 ms  AS4837  China, Beijing, ChinaUnicom
13  *
14  202.106.50.1  251.17 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 32 byte packets
 1  173.214.165.33  0.89 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 2  68.168.214.17  153.37 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 3  64.20.32.141  16.44 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 4  core-03-teb2.us.as19318.net (64.20.32.182)  1.02 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 5  vl601.cr1.lga2.us.as19318.net (64.20.32.186)  0.58 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 6  ae3-2020.cr2-nyc4.ip4.gtt.net (72.29.202.153)  3.95 ms  AS3257  United States, New York, New York City, gtt.net
 7  ae3.cr1-nyc2.ip4.gtt.net (89.149.129.194)  1.40 ms  AS3257  United States, New York, New York City, gtt.net
 8  218.30.53.81  3.27 ms  AS4134  United States, New York, New York City, ChinaTelecom
 9  202.97.85.154  68.11 ms  AS4134  United States, California, San Jose, ChinaTelecom
10  *
11  202.97.12.93  239.75 ms  AS4134  China, Beijing, ChinaTelecom
12  *
13  *
14  180.149.128.1  244.58 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.179.155.161 (221.179.155.161), 30 hops max, 32 byte packets
 1  173.214.165.33  0.50 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 2  68.168.214.17  17.52 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 3  64.20.32.141  15.19 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 4  *
 5  be3314.rcr21.ewr03.atlas.cogentco.com (154.24.82.149)  1.20 ms  AS174  United States, New Jersey, Secaucus, cogentco.com
 6  be2262.ccr42.jfk02.atlas.cogentco.com (154.54.47.121)  2.23 ms  AS174  United States, New York, New York City, cogentco.com
 7  be2807.ccr42.dca01.atlas.cogentco.com (154.54.40.110)  7.22 ms  AS174  United States, Virginia, Arlington, cogentco.com
 8  be2113.ccr42.atl01.atlas.cogentco.com (154.54.24.222)  24.52 ms  AS174  United States, Georgia, Atlanta, cogentco.com
 9  be2690.ccr42.iah01.atlas.cogentco.com (154.54.28.130)  37.92 ms  AS174  United States, Texas, Houston, cogentco.com
10  be2928.ccr21.elp01.atlas.cogentco.com (154.54.30.162)  53.04 ms  AS174  United States, Texas, El Paso, cogentco.com
11  be2930.ccr32.phx01.atlas.cogentco.com (154.54.42.77)  61.80 ms  AS174  United States, Arizona, Phoenix, cogentco.com
12  be2932.ccr42.lax01.atlas.cogentco.com (154.54.45.162)  72.91 ms  AS174  United States, California, Los Angeles, cogentco.com
13  be3359.ccr41.lax05.atlas.cogentco.com (154.54.3.70)  72.98 ms  AS174  United States, California, Los Angeles, cogentco.com
14  38.104.85.162  124.77 ms  AS174  United States, California, Los Angeles, cogentco.com
15  223.120.6.217  124.86 ms  AS58453  United States, California, Los Angeles, ChinaMobile
16  223.120.12.178  300.22 ms  AS58453  China, Shanghai, ChinaMobile
17  221.183.89.178  299.56 ms  AS9808  China, Shanghai, ChinaMobile
18  *
19  *
20  *
21  *
22  221.183.110.162  329.12 ms  AS9808  China, Beijing, ChinaMobile
23  cachedns03.bj.chinamobile.com (221.179.155.161)  325.88 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.22.97.1 (210.22.97.1), 30 hops max, 32 byte packets
 1  173.214.165.33  0.75 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 2  68.168.214.17  19.52 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 3  64.20.32.141  16.04 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 4  core-03-teb2.us.as19318.net (64.20.32.182)  0.92 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 5  vl601.cr1.lga2.us.as19318.net (64.20.32.186)  0.79 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 6  ae3-2020.cr2-nyc4.ip4.gtt.net (72.29.202.153)  0.95 ms  AS3257  United States, New York, New York City, gtt.net
 7  ae11.cr4-lax2.ip4.gtt.net (89.149.140.77)  56.57 ms  AS3257  United States, California, Los Angeles, gtt.net
 8  as4837.lax21.ip4.gtt.net (173.205.56.186)  57.49 ms  AS3257  United States, California, Los Angeles, gtt.net
 9  219.158.96.233  314.20 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
10  219.158.4.77  215.26 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
11  219.158.3.85  387.62 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
12  219.158.7.57  239.57 ms  AS4837  China, Shanghai, ChinaUnicom
13  *
14  112.64.250.202  318.91 ms  AS17621  China, Shanghai, ChinaUnicom
15  *
16  *
17  *
18  *
19  210.22.97.1  317.46 ms  AS17621  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.96.209.133 (202.96.209.133), 30 hops max, 32 byte packets
 1  173.214.165.33  0.56 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 2  68.168.214.17  17.34 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 3  64.20.32.141  6.84 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 4  core-03-teb2.us.as19318.net (64.20.32.182)  0.62 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 5  vl601.cr1.lga2.us.as19318.net (64.20.32.186)  0.55 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 6  ae3-2020.cr2-nyc4.ip4.gtt.net (72.29.202.153)  1.61 ms  AS3257  United States, New York, New York City, gtt.net
 7  ae3.cr1-nyc2.ip4.gtt.net (89.149.129.194)  1.21 ms  AS3257  United States, New York, New York City, gtt.net
 8  218.30.53.81  5.12 ms  AS4134  United States, New York, New York City, ChinaTelecom
 9  202.97.63.98  61.42 ms  AS4134  United States, California, Los Angeles, ChinaTelecom
10  *
11  *
12  *
13  *
14  101.95.95.66  227.10 ms  AS4812  China, Shanghai, ChinaTelecom
15  ns-pd.online.sh.cn (202.96.209.133)  238.54 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 211.136.112.200 (211.136.112.200), 30 hops max, 32 byte packets
 1  173.214.165.33  0.72 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 2  68.168.214.17  12.64 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 3  64.20.32.141  13.82 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 4  *
 5  be3314.rcr21.ewr03.atlas.cogentco.com (154.24.82.149)  1.19 ms  AS174  United States, New Jersey, Secaucus, cogentco.com
 6  be2273.ccr41.jfk02.atlas.cogentco.com (154.54.83.205)  1.63 ms  AS174  United States, New Jersey, Secaucus, cogentco.com
 7  be2317.ccr41.lon13.atlas.cogentco.com (154.54.30.186)  70.83 ms  AS174  United Kingdom, London, cogentco.com
 8  be3487.ccr51.lhr01.atlas.cogentco.com (154.54.60.6)  72.05 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
 9  be3671.agr21.lhr01.atlas.cogentco.com (130.117.48.138)  72.01 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
10  149.14.199.194  72.00 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
11  223.120.10.201  72.15 ms  AS58453  United Kingdom, London, ChinaMobile
12  223.120.15.90  269.38 ms  AS58453  China, Shanghai, ChinaMobile
13  221.183.89.178  274.52 ms  AS9808  China, Shanghai, ChinaMobile
14  *
15  221.183.89.10  269.18 ms  AS9808  China, Shanghai, ChinaMobile
16  *
17  221.181.125.138  269.15 ms  AS24400  China, Shanghai, ChinaMobile
18  211.136.112.252  275.22 ms  AS24400  China, Shanghai, ChinaMobile
19  211.136.112.200  273.74 ms  AS24400  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  173.214.165.33  63.87 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 2  68.168.214.17  16.89 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 3  64.20.32.141  17.42 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 4  core-03-teb2.us.as19318.net (64.20.32.182)  0.86 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 5  vl601.cr1.lga2.us.as19318.net (64.20.32.186)  0.71 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 6  ae3-2020.cr2-nyc4.ip4.gtt.net (72.29.202.153)  1.28 ms  AS3257  United States, New York, New York City, gtt.net
 7  ae27.cr2-sjc1.ip4.gtt.net (89.149.141.29)  61.17 ms  AS3257  United States, California, San Jose, gtt.net
 8  219.158.39.105  64.20 ms  AS4837  United States, California, San Jose, ChinaUnicom
 9  *
10  219.158.113.142  285.79 ms  AS4837  China, Shanghai, ChinaUnicom
11  *
12  *
13  120.86.0.182  238.82 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
14  120.80.175.78  246.58 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
15  gz1-dns.gdgz.cncnet.net (210.21.4.130)  227.16 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 116.21.84.1 (116.21.84.1), 30 hops max, 32 byte packets
 1  173.214.165.33  0.60 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 2  68.168.214.17  12.38 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 3  64.20.32.141  1.73 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 4  core-03-teb2.us.as19318.net (64.20.32.182)  0.73 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 5  vl601.cr1.lga2.us.as19318.net (64.20.32.186)  0.74 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 6  ae3-2020.cr2-nyc4.ip4.gtt.net (72.29.202.153)  1.55 ms  AS3257  United States, New York, New York City, gtt.net
 7  ae3.cr1-nyc2.ip4.gtt.net (89.149.129.194)  1.34 ms  AS3257  United States, New York, New York City, gtt.net
 8  218.30.53.81  7.89 ms  AS4134  United States, New York, New York City, ChinaTelecom
 9  202.97.18.61  65.37 ms  AS4134  United States, California, Los Angeles, ChinaTelecom
10  202.97.43.101  226.32 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
11  *
12  202.97.94.137  228.56 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
13  121.8.134.110  226.71 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
14  116.21.84.1  432.17 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.183.63.121 (221.183.63.121), 30 hops max, 32 byte packets
 1  173.214.165.33  0.44 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 2  68.168.214.17  81.39 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 3  64.20.32.141  0.56 ms  AS19318  United States, New Jersey, Secaucus, interserver.net
 4  *
 5  be3314.rcr21.ewr03.atlas.cogentco.com (154.24.82.149)  20.03 ms  AS174  United States, New Jersey, Secaucus, cogentco.com
 6  be2262.ccr42.jfk02.atlas.cogentco.com (154.54.47.121)  2.10 ms  AS174  United States, New York, New York City, cogentco.com
 7  be2890.ccr22.cle04.atlas.cogentco.com (154.54.82.245)  13.16 ms  AS174  United States, Ohio, Cleveland, cogentco.com
 8  be2718.ccr42.ord01.atlas.cogentco.com (154.54.7.129)  19.72 ms  AS174  United States, Illinois, Chicago, cogentco.com
 9  be2832.ccr22.mci01.atlas.cogentco.com (154.54.44.169)  42.59 ms  AS174  United States, Missouri, Kansas City, cogentco.com
10  be3036.ccr22.den01.atlas.cogentco.com (154.54.31.89)  42.72 ms  AS174  United States, Colorado, Denver, cogentco.com
11  be3038.ccr32.slc01.atlas.cogentco.com (154.54.42.97)  53.51 ms  AS174  United States, Utah, Salt Lake City, cogentco.com
12  be3110.ccr22.sfo01.atlas.cogentco.com (154.54.44.141)  67.87 ms  AS174  United States, California, San Francisco, cogentco.com
13  be3670.ccr41.sjc03.atlas.cogentco.com (154.54.43.14)  68.72 ms  AS174  United States, California, San Jose, cogentco.com
14  38.88.224.162  69.05 ms  AS174  United States, California, San Jose, cogentco.com
15  223.120.6.69  68.63 ms  AS58453  United States, California, San Jose, ChinaMobile
16  223.120.12.142  250.38 ms  AS58453  China, Shanghai, ChinaMobile
17  221.183.89.170  247.36 ms  AS9808  China, Shanghai, ChinaMobile
18  221.183.89.33  249.43 ms  AS9808  China, Shanghai, ChinaMobile
19  221.183.89.10  246.49 ms  AS9808  China, Shanghai, ChinaMobile
20  *
21  221.183.63.121  278.74 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;流媒体解锁不错，网络和硬盘比&lt;a href=&quot;https://yushum.com/liteserver-e2-4-%E6%9C%88%E5%A4%A7%E7%9B%98%E9%B8%A1%E6%B5%8B%E8%AF%84/&quot;&gt;LiteServer&lt;/a&gt;好一点，性价比很高。&lt;/p&gt;
</content:encoded></item><item><title>LiteServer荷兰德龙滕€2.4/月大盘鸡测评</title><link>https://yushum.com/posts/liteserver-e2-4-%E6%9C%88%E5%A4%A7%E7%9B%98%E9%B8%A1%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/liteserver-e2-4-%E6%9C%88%E5%A4%A7%E7%9B%98%E9%B8%A1%E6%B5%8B%E8%AF%84/</guid><pubDate>Sat, 26 Nov 2022 09:43:59 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;黑五优惠，比去年还便宜一些，加量不加价。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-11-22                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Fri 25 Nov 2022 05:03:45 PM CET

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 31 minutes
Processor  : AMD EPYC 7543P 32-Core Processor
CPU cores  : 1 @ 2800.002 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 979.0 MiB
Swap       : 975.0 MiB
Disk       : 501.9 GiB
Distro     : Debian GNU/Linux 11 (bullseye)
Kernel     : 5.10.0-19-cloud-amd64

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 2.88 MB/s      (721) | 42.52 MB/s     (664)
Write      | 2.89 MB/s      (724) | 42.70 MB/s     (667)
Total      | 5.78 MB/s     (1.4k) | 85.23 MB/s    (1.3k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 199.96 MB/s    (390) | 269.13 MB/s    (262)
Write      | 210.59 MB/s    (411) | 287.06 MB/s    (280)
Total      | 410.56 MB/s    (801) | 556.19 MB/s    (542)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 893 Mbits/sec   | 109 Mbits/sec   | 17.6 ms
Scaleway        | Paris, FR (10G)           | 890 Mbits/sec   | busy            | 14.8 ms
NovoServe       | North Holland, NL (40G)   | 907 Mbits/sec   | 803 Mbits/sec   | 2.31 ms
Uztelecom       | Tashkent, UZ (10G)        | 751 Mbits/sec   | 60.1 Mbits/sec  | 89.3 ms
Clouvider       | NYC, NY, US (10G)         | 810 Mbits/sec   | 196 Mbits/sec   | 74.9 ms
Clouvider       | Dallas, TX, US (10G)      | 584 Mbits/sec   | 126 Mbits/sec   | 128 ms
Clouvider       | Los Angeles, CA, US (10G) | 563 Mbits/sec   | 111 Mbits/sec   | 149 ms

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 756 Mbits/sec   | 564 Mbits/sec   | 7.58 ms
Scaleway        | Paris, FR (10G)           | busy            | busy            | 10.3 ms
NovoServe       | North Holland, NL (40G)   | 823 Mbits/sec   | busy            | 2.30 ms
Uztelecom       | Tashkent, UZ (10G)        | busy            | 125 Mbits/sec   | 80.2 ms
Clouvider       | NYC, NY, US (10G)         | 709 Mbits/sec   | 86.9 Mbits/sec  | 75.0 ms
Clouvider       | Dallas, TX, US (10G)      | 519 Mbits/sec   | 25.2 Mbits/sec  | 124 ms
Clouvider       | Los Angeles, CA, US (10G) | 477 Mbits/sec   | 58.0 Mbits/sec  | 150 ms

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 1057
Multi Core      | 1044
Full Test       | https://browser.geekbench.com/v5/cpu/18871945
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-06-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : AMD EPYC 7543P 32-Core Processor
 CPU Cores          : 1 @ 2800.002 MHz
 CPU Cache          : 512 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Enabled
 Total Disk         : 502.0 GB (906.7 MB Used)
 Total Mem          : 979.0 MB (47.4 MB Used)
 Total Swap         : 975.0 MB (2.4 MB Used)
 System uptime      : 0 days, 8 hour 31 min
 Load average       : 0.00, 0.00, 0.00
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-19-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 Organization       : AS60404 Liteserver
 Location           : Alkmaar / NL
 Region             : North Holland
----------------------------------------------------------------------
 I/O Speed(1st run) : 931 MB/s
 I/O Speed(2nd run) : 933 MB/s
 I/O Speed(3rd run) : 1.1 GB/s
 I/O Speed(average) : 996.8 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    772.04 Mbps       883.15 Mbps         0.27 ms
 Los Angeles, US  546.89 Mbps       634.67 Mbps         138.76 ms
 Dallas, US       664.43 Mbps       679.64 Mbps         110.95 ms
 Montreal, CA     570.47 Mbps       446.99 Mbps         84.29 ms
 Paris, FR        693.13 Mbps       707.40 Mbps         16.56 ms
 Amsterdam, NL    913.90 Mbps       762.56 Mbps         2.38 ms
 Shanghai, CN     462.79 Mbps       475.04 Mbps         169.11 ms
 Nanjing, CN      467.01 Mbps       552.97 Mbps         190.30 ms
 Guangzhou, CN    314.70 Mbps       124.18 Mbps         228.43 ms
 Seoul, KR        68.56 Mbps        181.02 Mbps         255.69 ms
 Singapore, SG    479.65 Mbps       282.57 Mbps         171.84 ms
 Tokyo, JP        334.08 Mbps       443.94 Mbps         234.80 ms
----------------------------------------------------------------------
 Finished in        : 6 min 20 sec
 Timestamp          : 2022-11-26 01:10:20 CET
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Sat 26 Nov 2022 01:33:00 AM CET

 ** 正在测试IPv4解锁情况 
--------------------------------
 ** 您的网络为: The Infrastructure Group B.V. (5.255.*.*) 


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               Yes (Region: NL)
 Netflix:                               Originals Only
 YouTube Premium:                       Yes (Region: NL)
 Amazon Prime Video:                    Yes (Region: NL)
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   INTL
 Viu.com:                               No
 YouTube CDN:                           Amsterdam 
 Netflix Preferred CDN:                 Associated with [] in [Warsaw ]
 Spotify Registration:                  No
 Steam Currency:                        USD
=======================================
===============[ Europe ]==============
 Rakuten TV:                            Yes
 Funimation:                            Yes (Region: US)
 SkyShowTime:                           No
 HBO Nordic:                            Failed (Network Connection)
 HBO GO Europe:                         Failed (Network Connection)
 ---GB---
 Sky Go:                                No
 BritBox:                               Yes
 ITV Hub:                               No
 Channel 4:                             No
 Channel 5:                             No
 BBC iPLAYER:                           No
 Discovery+ UK:                         No
 ---FR---
 Salto:                                 No
 Canal+:                                No
 Molotov:                               No
 ---DE---
 Joyn:                                  No
 Sky:                                   No
 ZDF:                                   No
 ---NL---
 NLZIET:                                Failed
 videoland:                             No
 NPO Start Plus:                        No
 ---ES---
 HBO Spain:                             Failed (Network Connection)
 PANTAYA:                               No
 ---IT---
 Rai Play:                              Yes
 ---RU---
 Amediateka:                            Yes
 ---PT---
 HBO Portugal:                          Failed (Network Connection)
=======================================


 ** 正在测试IPv6解锁情况 
--------------------------------
 ** 您的网络为: The Infrastructure Group B.V. (2a04:52c0:112:*:*) 


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               No
 Disney+:                               Yes (Region: NL)
 Netflix:                               Originals Only
 YouTube Premium:                       Yes (Region: NL)
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           Amsterdam 
 Netflix Preferred CDN:                 Associated with [RETN Limited] in [Warsaw ]
 Spotify Registration:                  No
 Steam Currency:                        Failed (Network Connection)
=======================================
===============[ Europe ]==============
 Rakuten TV:                            Failed (Network Connection)
 Funimation:                            IPv6 Not Support
 SkyShowTime:                           Yes (Region: NL)
 HBO Nordic:                            Failed (Network Connection)
 HBO GO Europe:                         Failed (Network Connection)
 ---GB---
 Sky Go:                                Failed (Network Connection)
 BritBox:                               Yes
 ITV Hub:                               Failed (Network Connection)
 Channel 4:                             Failed (Network Connection)
 Channel 5:                             IPv6 Not Support
 BBC iPLAYER:                           Failed
 Discovery+ UK:                         IPv6 Not Support
 ---FR---
 Salto:                                 No
 Canal+:                                Failed (Network Connection)
 Molotov:                               No
 ---DE---
 Joyn:                                  Failed (Network Connection)
 Sky:                                   Failed (Network Connection)
 ZDF:                                   Failed (Network Connection)
 ---NL---
 NLZIET:                                Failed
 videoland:                             Yes
 NPO Start Plus:                        Failed (Network Connection)
 ---ES---
 HBO Spain:                             Failed (Network Connection)
 PANTAYA:                               Failed (Network Connection)
 ---IT---
 Rai Play:                              Failed (Network Connection)
 ---RU---
 Amediateka:                            Failed (Network Connection)
 ---PT---
 HBO Portugal:                          Failed (Network Connection)
=======================================
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/11/26/3579b9da1ade2.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/11/26/35020dbe464e7.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/11/26/e9ec1300ab0a4.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/11/26/4cad4e536b47d.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.106.50.1 (202.106.50.1), 30 hops max, 32 byte packets
 1  5.255.107.2  1.29 ms  AS60404  Netherlands, Flevoland, Dronten, theinfrastructure.group
 2  5.255.66.194  0.69 ms  AS50673  Netherlands, Flevoland, Dronten, serverius.net
 3  185.8.179.33  0.71 ms  AS50673  Netherlands, Drenthe, Meppel, serverius.net
 4  *
 5  be3458.ccr42.ams03.atlas.cogentco.com (154.54.39.185)  2.40 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 6  be2814.ccr42.fra03.atlas.cogentco.com (130.117.0.142)  15.05 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 7  be3187.agr41.fra03.atlas.cogentco.com (130.117.1.117)  10.08 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 8  *
 9  219.158.15.161  139.08 ms  AS4837  China, Beijing, ChinaUnicom
10  219.158.3.141  132.90 ms  AS4837  China, Beijing, ChinaUnicom
11  219.158.5.149  150.20 ms  AS4837  China, Beijing, ChinaUnicom
12  *
13  202.106.50.1  130.38 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 32 byte packets
 1  5.255.107.2  0.33 ms  AS60404  Netherlands, Flevoland, Dronten, theinfrastructure.group
 2  5.255.66.194  0.60 ms  AS50673  Netherlands, Flevoland, Dronten, serverius.net
 3  185.8.179.33  1.48 ms  AS50673  Netherlands, Drenthe, Meppel, serverius.net
 4  *
 5  be3458.ccr42.ams03.atlas.cogentco.com (154.54.39.185)  2.91 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 6  be3198.rcr21.b031955-0.ams03.atlas.cogentco.com (154.54.57.78)  3.70 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 7  chinatelecom.demarc.cogentco.com (149.29.1.130)  55.56 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 8  *
 9  *
10  *
11  *
12  180.149.128.1  269.29 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.179.155.161 (221.179.155.161), 30 hops max, 32 byte packets
 1  5.255.107.2  0.53 ms  AS60404  Netherlands, Flevoland, Dronten, theinfrastructure.group
 2  5.255.66.194  0.56 ms  AS50673  Netherlands, Flevoland, Dronten, serverius.net
 3  185.8.179.33  2.01 ms  AS50673  Netherlands, Drenthe, Meppel, serverius.net
 4  ae22-404.ams10.core-backbone.com (5.56.20.169)  3.89 ms  AS201011  Netherlands, North Holland, Amsterdam, core-backbone.com
 5  *
 6  223.118.18.185  16.33 ms  AS58453  United Kingdom, London, ChinaMobile
 7  *
 8  221.183.89.178  302.67 ms  AS9808  China, Shanghai, ChinaMobile
 9  *
10  *
11  *
12  *
13  221.183.110.162  315.82 ms  AS9808  China, Beijing, ChinaMobile
14  cachedns03.bj.chinamobile.com (221.179.155.161)  312.05 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.22.97.1 (210.22.97.1), 30 hops max, 32 byte packets
 1  5.255.107.2  2.39 ms  AS60404  Netherlands, Flevoland, Dronten, theinfrastructure.group
 2  5.255.66.194  0.89 ms  AS50673  Netherlands, Flevoland, Dronten, serverius.net
 3  185.8.179.33  10.48 ms  AS50673  Netherlands, Drenthe, Meppel, serverius.net
 4  *
 5  be3458.ccr42.ams03.atlas.cogentco.com (154.54.39.185)  2.74 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 6  be2814.ccr42.fra03.atlas.cogentco.com (130.117.0.142)  9.47 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 7  be2846.rcr22.fra06.atlas.cogentco.com (154.54.37.30)  10.23 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 8  be2844.agr21.fra06.atlas.cogentco.com (130.117.0.30)  10.04 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 9  be3167.nr51.b037206-0.fra06.atlas.cogentco.com (154.25.14.78)  10.01 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
10  149.11.84.210  10.75 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
11  219.158.20.173  170.25 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
12  219.158.96.210  166.93 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
13  *
14  *
15  *
16  112.64.250.202  200.21 ms  AS17621  China, Shanghai, ChinaUnicom
17  210.22.97.1  191.73 ms  AS17621  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.96.209.133 (202.96.209.133), 30 hops max, 32 byte packets
 1  5.255.107.2  0.30 ms  AS60404  Netherlands, Flevoland, Dronten, theinfrastructure.group
 2  5.255.66.194  0.64 ms  AS50673  Netherlands, Flevoland, Dronten, serverius.net
 3  185.8.179.33  1.38 ms  AS50673  Netherlands, Drenthe, Meppel, serverius.net
 4  *
 5  be3458.ccr42.ams03.atlas.cogentco.com (154.54.39.185)  3.94 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 6  be3198.rcr21.b031955-0.ams03.atlas.cogentco.com (154.54.57.78)  3.69 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 7  chinatelecom.demarc.cogentco.com (149.29.1.130)  32.26 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 8  *
 9  202.97.33.133  203.68 ms  AS4134  China, Shanghai, ChinaTelecom
10  202.97.50.157  217.88 ms  AS4134  China, Shanghai, ChinaTelecom
11  61.152.24.229  235.92 ms  AS4812  China, Shanghai, ChinaTelecom
12  101.95.95.82  217.54 ms  AS4812  China, Shanghai, ChinaTelecom
13  *
14  ns-pd.online.sh.cn (202.96.209.133)  206.81 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 211.136.112.200 (211.136.112.200), 30 hops max, 32 byte packets
 1  5.255.107.2  0.52 ms  AS60404  Netherlands, Flevoland, Dronten, theinfrastructure.group
 2  5.255.66.194  0.76 ms  AS50673  Netherlands, Flevoland, Dronten, serverius.net
 3  185.8.179.33  1.49 ms  AS50673  Netherlands, Drenthe, Meppel, serverius.net
 4  *
 5  be3457.ccr41.ams03.atlas.cogentco.com (130.117.1.9)  2.43 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 6  be2813.ccr41.fra03.atlas.cogentco.com (130.117.0.122)  10.64 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 7  be2533.agr22.fra03.atlas.cogentco.com (130.117.48.157)  10.26 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 8  be3395.nr21.b019066-1.fra03.atlas.cogentco.com (154.25.12.65)  11.28 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 9  chinamobile.demarc.cogentco.com (149.29.9.162)  9.18 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
10  223.120.10.241  9.49 ms  AS58453  Germany, Hesse, Frankfurt, ChinaMobile
11  *
12  221.183.89.178  230.18 ms  AS9808  China, Shanghai, ChinaMobile
13  221.183.89.33  240.31 ms  AS9808  China, Shanghai, ChinaMobile
14  221.183.89.10  232.46 ms  AS9808  China, Shanghai, ChinaMobile
15  *
16  221.181.125.138  241.49 ms  AS24400  China, Shanghai, ChinaMobile
17  211.136.112.252  231.14 ms  AS24400  China, Shanghai, ChinaMobile
18  211.136.112.200  241.77 ms  AS24400  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  5.255.107.2  0.38 ms  AS60404  Netherlands, Flevoland, Dronten, theinfrastructure.group
 2  5.255.66.194  1.49 ms  AS50673  Netherlands, Flevoland, Dronten, serverius.net
 3  185.8.179.33  1.32 ms  AS50673  Netherlands, Drenthe, Meppel, serverius.net
 4  *
 5  be3458.ccr42.ams03.atlas.cogentco.com (154.54.39.185)  2.68 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 6  be2814.ccr42.fra03.atlas.cogentco.com (130.117.0.142)  9.43 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 7  be2846.rcr22.fra06.atlas.cogentco.com (154.54.37.30)  10.16 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 8  *
 9  be3167.nr51.b037206-0.fra06.atlas.cogentco.com (154.25.14.78)  10.03 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
10  149.11.84.194  9.90 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
11  219.158.7.209  200.07 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
12  219.158.4.133  162.56 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
13  219.158.3.9  170.14 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
14  120.83.0.62  177.56 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
15  120.80.91.62  181.72 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
16  gz1-dns.gdgz.cncnet.net (210.21.4.130)  168.81 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 116.21.84.1 (116.21.84.1), 30 hops max, 32 byte packets
 1  5.255.107.2  0.50 ms  AS60404  Netherlands, Flevoland, Dronten, theinfrastructure.group
 2  5.255.66.194  0.59 ms  AS50673  Netherlands, Flevoland, Dronten, serverius.net
 3  185.8.179.33  1.50 ms  AS50673  Netherlands, Drenthe, Meppel, serverius.net
 4  *
 5  be3458.ccr42.ams03.atlas.cogentco.com (154.54.39.185)  2.53 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 6  be3198.rcr21.b031955-0.ams03.atlas.cogentco.com (154.54.57.78)  3.41 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 7  chinatelecom.demarc.cogentco.com (149.29.1.130)  41.69 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 8  202.97.13.25  244.47 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
 9  202.97.12.22  274.42 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
10  *
11  121.8.134.110  225.07 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
12  116.21.84.1  229.49 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.183.63.121 (221.183.63.121), 30 hops max, 32 byte packets
 1  5.255.107.2  3.08 ms  AS60404  Netherlands, Flevoland, Dronten, theinfrastructure.group
 2  5.255.66.194  0.60 ms  AS50673  Netherlands, Flevoland, Dronten, serverius.net
 3  185.8.179.33  0.70 ms  AS50673  Netherlands, Drenthe, Meppel, serverius.net
 4  *
 5  be3457.ccr41.ams03.atlas.cogentco.com (130.117.1.9)  2.69 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 6  be12194.ccr41.lon13.atlas.cogentco.com (154.54.56.93)  95.28 ms  AS174  United Kingdom, London, cogentco.com
 7  be2317.ccr41.jfk02.atlas.cogentco.com (154.54.30.185)  110.67 ms  AS174  United States, New York, New York City, cogentco.com
 8  be2889.ccr21.cle04.atlas.cogentco.com (154.54.47.49)  95.21 ms  AS174  United States, Ohio, Cleveland, cogentco.com
 9  be2717.ccr41.ord01.atlas.cogentco.com (154.54.6.221)  95.37 ms  AS174  United States, Illinois, Chicago, cogentco.com
10  be2831.ccr21.mci01.atlas.cogentco.com (154.54.42.165)  149.94 ms  AS174  United States, Missouri, Kansas City, cogentco.com
11  be3035.ccr21.den01.atlas.cogentco.com (154.54.5.89)  123.73 ms  AS174  United States, Colorado, Denver, cogentco.com
12  be3037.ccr21.slc01.atlas.cogentco.com (154.54.41.145)  152.88 ms  AS174  United States, Utah, Salt Lake City, cogentco.com
13  be3109.ccr21.sfo01.atlas.cogentco.com (154.54.44.137)  143.38 ms  AS174  United States, California, San Francisco, cogentco.com
14  be3669.ccr41.sjc03.atlas.cogentco.com (154.54.43.10)  144.93 ms  AS174  United States, California, San Jose, cogentco.com
15  38.88.224.162  148.62 ms  AS174  United States, California, San Jose, cogentco.com
16  223.120.6.69  144.45 ms  AS58453  United States, California, San Jose, ChinaMobile
17  223.120.12.142  289.98 ms  AS58453  China, Shanghai, ChinaMobile
18  221.183.89.174  292.61 ms  AS9808  China, Shanghai, ChinaMobile
19  221.183.89.69  281.75 ms  AS9808  China, Shanghai, ChinaMobile
20  *
21  221.183.40.46  319.64 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
22  221.183.63.121  319.65 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;机器性能不错，但是网络不怎么样，胜在硬盘大，价格低。&lt;/p&gt;
</content:encoded></item><item><title>V.PS圣何塞vps测评</title><link>https://yushum.com/posts/v-ps%E5%9C%A3%E4%BD%95%E5%A1%9Evps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/v-ps%E5%9C%A3%E4%BD%95%E5%A1%9Evps%E6%B5%8B%E8%AF%84/</guid><pubDate>Thu, 10 Nov 2022 19:32:15 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;双十一活动可以优惠20%，不建议买迷你款，不能换IP，只能加IP。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-08-20                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Thu 10 Nov 2022 10:50:07 AM UTC

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 6 minutes
Processor  : Intel(R) Xeon(R) CPU E5-2680 v4 @ 2.40GHz
CPU cores  : 2 @ 2399.996 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 978.8 MiB
Swap       : 256.0 MiB
Disk       : 19.6 GiB
Distro     : Debian GNU/Linux 11 (bullseye)
Kernel     : 5.10.0-19-cloud-amd64

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ---- 
Read       | 73.03 MB/s   (18.2k) | 205.68 MB/s   (3.2k)
Write      | 73.22 MB/s   (18.3k) | 206.77 MB/s   (3.2k)
Total      | 146.25 MB/s  (36.5k) | 412.45 MB/s   (6.4k)
           |                      |                     
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ---- 
Read       | 196.37 MB/s    (383) | 194.01 MB/s    (189)
Write      | 206.80 MB/s    (403) | 206.93 MB/s    (202)
Total      | 403.18 MB/s    (786) | 400.94 MB/s    (391)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed     
                |                           |                 |                
Clouvider       | London, UK (10G)          | 526 Mbits/sec   | 733 Mbits/sec  
Online.net      | Paris, FR (10G)           | 693 Mbits/sec   | 725 Mbits/sec  
Hybula          | The Netherlands (40G)     | 553 Mbits/sec   | 715 Mbits/sec  
Uztelecom       | Tashkent, UZ (10G)        | 529 Mbits/sec   | 635 Mbits/sec  
Clouvider       | NYC, NY, US (10G)         | 748 Mbits/sec   | 774 Mbits/sec  
Clouvider       | Dallas, TX, US (10G)      | 811 Mbits/sec   | 787 Mbits/sec  
Clouvider       | Los Angeles, CA, US (10G) | 831 Mbits/sec   | 797 Mbits/sec  

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed     
                |                           |                 |                
Clouvider       | London, UK (10G)          | 555 Mbits/sec   | 712 Mbits/sec  
Online.net      | Paris, FR (10G)           | 720 Mbits/sec   | 719 Mbits/sec  
Hybula          | The Netherlands (40G)     | 576 Mbits/sec   | 684 Mbits/sec  
Uztelecom       | Tashkent, UZ (10G)        | 587 Mbits/sec   | 587 Mbits/sec  
Clouvider       | NYC, NY, US (10G)         | 773 Mbits/sec   | 764 Mbits/sec  
Clouvider       | Dallas, TX, US (10G)      | 813 Mbits/sec   | 776 Mbits/sec  
Clouvider       | Los Angeles, CA, US (10G) | 830 Mbits/sec   | 787 Mbits/sec  

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value                         
                |                               
Single Core     | 776                           
Multi Core      | 1495                          
Full Test       | https://browser.geekbench.com/v5/cpu/18547339
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-06-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) CPU E5-2680 v4 @ 2.40GHz
 CPU Cores          : 2 @ 2399.996 MHz
 CPU Cache          : 16384 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Enabled
 Total Disk         : 19.6 GB (962.0 MB Used)
 Total Mem          : 978.8 MB (61.0 MB Used)
 Total Swap         : 256.0 MB (6.5 MB Used)
 System uptime      : 0 days, 0 hour 19 min
 Load average       : 0.17, 0.33, 0.16
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-19-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 Organization       : AS6233 xTom
 Location           : San Jose / US
 Region             : California
----------------------------------------------------------------------
 I/O Speed(1st run) : 209 MB/s
 I/O Speed(2nd run) : 209 MB/s
 I/O Speed(3rd run) : 210 MB/s
 I/O Speed(average) : 209.3 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency     
 Speedtest.net    832.20 Mbps       788.34 Mbps         0.24 ms     
 Los Angeles, US  835.74 Mbps       789.73 Mbps         10.98 ms    
 Dallas, US       818.36 Mbps       793.36 Mbps         39.02 ms    
 Montreal, CA     667.91 Mbps       815.14 Mbps         68.80 ms    
 Paris, FR        642.23 Mbps       793.89 Mbps         146.15 ms   
 Amsterdam, NL    615.68 Mbps       791.84 Mbps         143.17 ms   
 Shanghai, CN     595.12 Mbps       799.00 Mbps         134.42 ms   
 Nanjing, CN      673.06 Mbps       806.00 Mbps         134.90 ms   
 Hongkong, CN     609.42 Mbps       476.40 Mbps         163.25 ms   
 Seoul, KR        390.51 Mbps       576.28 Mbps         158.66 ms   
 Singapore, SG    370.19 Mbps       716.08 Mbps         179.53 ms   
 Tokyo, JP        575.21 Mbps       789.22 Mbps         107.93 ms   
----------------------------------------------------------------------
 Finished in        : 5 min 45 sec
 Timestamp          : 2022-11-10 11:08:54 UTC
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Thu 10 Nov 2022 11:09:44 AM UTC

 ** 正在测试IPv4解锁情况 
--------------------------------
 ** 您的网络为: xTom (104.245.*.*) 


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               Yes (Region: US)
 Disney+:                               Yes (Region: US)
 Netflix:                               Originals Only
 YouTube Premium:                       Yes
 Amazon Prime Video:                    Yes (Region: US)
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   US
 Viu.com:                               No
 YouTube CDN:                           San Francisco, CA 
 Netflix Preferred CDN:                 Los Angeles, CA  
 Spotify Registration:                  No
 Instagram Licensed Music:              Failed
 Steam Currency:                        USD
=======================================
===========[ North America ]===========
 FOX:                                   Yes
 Hulu:                                  Failed
 ESPN+:[Sponsored by Jam]               Yes
 Epix:                                  No
 Starz:                                 No
 HBO Now:                               Yes
 HBO Max:                               Yes
 BritBox:                               Yes
 NBA TV:                                Yes
 Fubo TV:                               Yes
 Sling TV:                              Yes
 Pluto TV:                              Yes
 Acorn TV:                              Yes
 SHOWTIME:                              Yes
 encoreTVB:                             Yes
 CineMax Go:                            Failed (Network Connection)
 Funimation:                            Yes (Region: US)
 Discovery+:                            Yes
 Paramount+:                            Yes
 Peacock TV:                            Yes
 Directv Stream:                        Yes
 ---CA---
 CBC Gem:                               No
 Crave:                                 No
=======================================


 ** 正在测试IPv6解锁情况 
--------------------------------
 ** 您的网络为: xTom (2604:a840:2:*:*) 


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               Yes (Region: US)
 Disney+:                               Yes (Region: US)
 Netflix:                               Originals Only
 YouTube Premium:                       Yes
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           San Francisco, CA 
 Netflix Preferred CDN:                 Failed
 Spotify Registration:                  No
 Instagram Licensed Music:              Failed
 Steam Currency:                        Failed (Network Connection)
=======================================
===========[ North America ]===========
 FOX:                                   Yes
 Hulu:                                  Failed
 ESPN+:[Sponsored by Jam]               Yes
 Epix:                                  No
 Starz:                                 Failed (Network Connection)
 HBO Now:                               Failed (Network Connection)

 HBO Max:                               Failed (Network Connection)
 BritBox:                               Yes
 NBA TV:                                Yes
 Fubo TV:                               Failed (Network Connection)
 Sling TV:                              Yes
 Pluto TV:                              Yes
 Acorn TV:                              Failed (Network Connection)
 SHOWTIME:                              Failed (Network Connection)
 encoreTVB:                             Failed (Network Connection)
 CineMax Go:                            Failed (Network Connection)
 Funimation:                            IPv6 Not Support
 Discovery+:                            IPv6 Not Support
 Paramount+:                            Yes
 Peacock TV:                            Yes
 Directv Stream:                        -&amp;gt; ---CA---
 CBC Gem:                               Failed (Network Connection)
 Crave:                                 Failed (Network Connection)
=======================================
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/11/10/7a2c9c976f756.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/11/10/b87589e713f6a.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/11/10/905b7f987115d.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/11/10/6f930f6ac2502.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.106.50.1 (202.106.50.1), 30 hops max, 32 byte packets
 1  45.139.193.1  9.54 ms  AS6233  United States, California, San Jose, xtom.com
 2  a1.cr01.sjc.xtom.us (104.245.11.100)  0.35 ms  AS6233  United States, California, San Jose, xtom.com
 3  162.219.85.181  1.10 ms  AS10099  United States, California, San Jose, ChinaUnicom
 4  162.219.85.13  131.62 ms  AS10099  United States, ChinaUnicom
 5  210.14.186.141  132.18 ms  *  China, ChinaUnicom
 6  218.105.2.174  133.26 ms  AS9929  China, Shanghai, ChinaUnicom
 7  219.158.113.153  136.97 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.9.97  136.61 ms  AS4837  China, Shanghai, ChinaUnicom
 9  219.158.16.89  157.73 ms  AS4837  China, Beijing, ChinaUnicom
10  125.33.186.14  161.32 ms  AS4808  China, Beijing, ChinaUnicom
11  202.106.50.1  155.44 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 32 byte packets
 1  45.139.193.1  61.29 ms  AS6233  United States, California, San Jose, xtom.com
 2  a1.cr01.sjc.xtom.us (104.245.11.100)  0.34 ms  AS6233  United States, California, San Jose, xtom.com
 3  218.30.49.181  0.62 ms  AS4134  United States, California, San Jose, ChinaTelecom
 4  59.43.181.153  126.04 ms  *  China, Shanghai, ChinaTelecom
 5  59.43.247.101  153.49 ms  *  China, Beijing, ChinaTelecom
 6  59.43.188.77  175.24 ms  *  China, Beijing, ChinaTelecom
 7  59.43.132.13  149.23 ms  *  China, Beijing, ChinaTelecom
 8  *
 9  36.110.251.122  150.58 ms  AS23724  China, Beijing, ChinaTelecom
10  180.149.128.1  150.01 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.179.155.161 (221.179.155.161), 30 hops max, 32 byte packets
 1  45.139.193.1  61.17 ms  AS6233  United States, California, San Jose, xtom.com
 2  a1.cr01.sjc.xtom.us (104.245.11.100)  0.33 ms  AS6233  United States, California, San Jose, xtom.com
 3  223.119.66.137  0.94 ms  AS58453  United States, California, San Jose, ChinaMobile
 4  223.120.6.69  0.61 ms  AS58453  United States, California, San Jose, ChinaMobile
 5  223.120.13.126  181.73 ms  AS58453  China, Beijing, ChinaMobile
 6  221.183.55.114  183.18 ms  AS9808  China, Beijing, ChinaMobile
 7  221.183.25.201  183.61 ms  AS9808  China, Beijing, ChinaMobile
 8  221.183.89.122  195.51 ms  AS9808  China, Beijing, ChinaMobile
 9  *
10  221.183.110.162  198.71 ms  AS9808  China, ChinaMobile
11  cachedns03.bj.chinamobile.com (221.179.155.161)  198.40 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.22.97.1 (210.22.97.1), 30 hops max, 32 byte packets
 1  45.139.193.1  1.24 ms  AS6233  United States, California, San Jose, xtom.com
 2  a1.cr01.sjc.xtom.us (104.245.11.100)  0.34 ms  AS6233  United States, California, San Jose, xtom.com
 3  162.219.85.181  2.04 ms  AS10099  United States, California, San Jose, ChinaUnicom
 4  162.219.85.13  129.98 ms  AS10099  United States, ChinaUnicom
 5  210.14.186.133  132.41 ms  *  China, ChinaUnicom
 6  218.105.2.150  133.50 ms  AS9929  China, Shanghai, ChinaUnicom
 7  219.158.113.149  135.69 ms  AS4837  China, Shanghai, ChinaUnicom
 8  *
 9  *
10  112.64.250.202  155.20 ms  AS17621  China, Shanghai, ChinaUnicom
11  210.22.97.1  135.25 ms  AS17621  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.96.209.133 (202.96.209.133), 30 hops max, 32 byte packets
 1  45.139.193.1  2.05 ms  AS6233  United States, California, San Jose, xtom.com
 2  a1.cr01.sjc.xtom.us (104.245.11.100)  0.28 ms  AS6233  United States, California, San Jose, xtom.com
 3  218.30.49.181  0.90 ms  AS4134  United States, California, San Jose, ChinaTelecom
 4  59.43.182.138  126.09 ms  *  China, Shanghai, ChinaTelecom
 5  *
 6  59.43.138.45  124.56 ms  *  China, Shanghai, ChinaTelecom
 7  61.152.24.186  128.67 ms  AS4812  China, Shanghai, ChinaTelecom
 8  180.169.255.118  129.20 ms  AS4812  China, Shanghai, ChinaTelecom
 9  ns-pd.online.sh.cn (202.96.209.133)  122.79 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 211.136.112.200 (211.136.112.200), 30 hops max, 32 byte packets
 1  45.139.193.1  41.00 ms  AS6233  United States, California, San Jose, xtom.com
 2  a1.cr01.sjc.xtom.us (104.245.11.100)  0.32 ms  AS6233  United States, California, San Jose, xtom.com
 3  223.119.66.137  0.92 ms  AS58453  United States, California, San Jose, ChinaMobile
 4  223.120.6.69  0.68 ms  AS58453  United States, California, San Jose, ChinaMobile
 5  223.120.12.138  183.41 ms  AS58453  China, Shanghai, ChinaMobile
 6  221.183.89.170  179.23 ms  AS9808  China, Shanghai, ChinaMobile
 7  221.183.89.33  179.29 ms  AS9808  China, Shanghai, ChinaMobile
 8  221.183.89.10  185.30 ms  AS9808  China, Shanghai, ChinaMobile
 9  *
10  221.181.125.138  186.33 ms  AS24400  China, Shanghai, ChinaMobile
11  211.136.112.252  187.22 ms  AS24400  China, Shanghai, ChinaMobile
12  211.136.112.200  186.45 ms  AS24400  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  45.139.193.1  6.95 ms  AS6233  United States, California, San Jose, xtom.com
 2  a1.cr01.sjc.xtom.us (104.245.11.100)  1.24 ms  AS6233  United States, California, San Jose, xtom.com
 3  162.219.85.181  1.69 ms  AS10099  United States, California, San Jose, ChinaUnicom
 4  162.219.85.17  132.31 ms  AS10099  United States, ChinaUnicom
 5  210.14.186.137  150.56 ms  *  China, ChinaUnicom
 6  218.105.2.150  133.71 ms  AS9929  China, Shanghai, ChinaUnicom
 7  219.158.113.153  137.73 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.119.245  138.83 ms  AS4837  China, Shanghai, ChinaUnicom
 9  *
10  157.18.0.26  164.32 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
11  120.80.91.66  162.96 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
12  gz1-dns.gdgz.cncnet.net (210.21.4.130)  161.82 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 116.21.84.1 (116.21.84.1), 30 hops max, 32 byte packets
 1  45.139.193.1  11.16 ms  AS6233  United States, California, San Jose, xtom.com
 2  a1.cr01.sjc.xtom.us (104.245.11.100)  5.47 ms  AS6233  United States, California, San Jose, xtom.com
 3  218.30.49.181  0.66 ms  AS4134  United States, California, San Jose, ChinaTelecom
 4  59.43.189.213  157.63 ms  *  China, Guangdong, Guangzhou, ChinaTelecom
 5  *
 6  59.43.16.181  161.07 ms  *  China, Guangdong, Guangzhou, ChinaTelecom
 7  183.57.161.10  169.98 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
 8  116.21.84.1  160.83 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.183.63.121 (221.183.63.121), 30 hops max, 32 byte packets
 1  45.139.193.1  55.54 ms  AS6233  United States, California, San Jose, xtom.com
 2  a1.cr01.sjc.xtom.us (104.245.11.100)  0.25 ms  AS6233  United States, California, San Jose, xtom.com
 3  223.119.66.137  0.82 ms  AS58453  United States, California, San Jose, ChinaMobile
 4  223.120.6.69  0.63 ms  AS58453  United States, California, San Jose, ChinaMobile
 5  223.120.12.142  182.51 ms  AS58453  China, Shanghai, ChinaMobile
 6  221.183.89.170  178.30 ms  AS9808  China, Shanghai, ChinaMobile
 7  221.183.89.33  178.34 ms  AS9808  China, Shanghai, ChinaMobile
 8  221.183.89.10  183.87 ms  AS9808  China, Shanghai, ChinaMobile
 9  *
10  221.183.63.121  213.77 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;性能明显比mini款强很多，路由也是无可挑剔，唯一的缺点是有过莫名删号历史。&lt;/p&gt;
</content:encoded></item><item><title>RFCHOST香港hkg2 VPS测试</title><link>https://yushum.com/posts/rfchost%E9%A6%99%E6%B8%AF9929%E7%BA%BF%E8%B7%AFvps%E6%B5%8B%E8%AF%95/</link><guid isPermaLink="true">https://yushum.com/posts/rfchost%E9%A6%99%E6%B8%AF9929%E7%BA%BF%E8%B7%AFvps%E6%B5%8B%E8%AF%95/</guid><pubDate>Sat, 08 Oct 2022 15:35:48 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;上个月体验了&lt;a href=&quot;https://yushum.com/rfchost%E9%A6%99%E6%B8%AFcmi%E7%BA%BF%E8%B7%AFvps%E6%B5%8B%E8%AF%95/&quot;&gt;RFC的CMI线路&lt;/a&gt;，感觉还不错。&lt;/p&gt;
&lt;p&gt;看到还有hkg2，但是找了一圈也没找到测评，只能自己测了。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-08-20                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Sat 08 Oct 2022 02:51:03 PM CST

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 58 minutes
Processor  : Intel(R) Xeon(R) CPU E5-2660 0 @ 2.20GHz
CPU cores  : 1 @ 2199.998 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 483.2 MiB
Swap       : 2.2 GiB
Disk       : 7.6 GiB
Distro     : Debian GNU/Linux 10 (buster)
Kernel     : 4.19.0-16-amd64

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 53.97 MB/s   (13.4k) | 87.18 MB/s    (1.3k)
Write      | 54.09 MB/s   (13.5k) | 87.64 MB/s    (1.3k)
Total      | 108.06 MB/s  (27.0k) | 174.83 MB/s   (2.7k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 197.97 MB/s    (386) | 217.11 MB/s    (212)
Write      | 208.49 MB/s    (407) | 231.57 MB/s    (226)
Total      | 406.46 MB/s    (793) | 448.68 MB/s    (438)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 82.8 Mbits/sec  | 43.7 Mbits/sec
Online.net      | Paris, FR (10G)           | 87.1 Mbits/sec  | 67.9 Mbits/sec
Hybula          | The Netherlands (40G)     | 84.2 Mbits/sec  | 86.4 Mbits/sec
Uztelecom       | Tashkent, UZ (10G)        | 87.4 Mbits/sec  | 89.4 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 84.0 Mbits/sec  | 63.3 Mbits/sec
Clouvider       | Dallas, TX, US (10G)      | 82.6 Mbits/sec  | 69.3 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 86.4 Mbits/sec  | 74.8 Mbits/sec

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 536 Mbits/sec   | 363 Mbits/sec
Online.net      | Paris, FR (10G)           | busy            | 337 Mbits/sec
Hybula          | The Netherlands (40G)     | 507 Mbits/sec   | 468 Mbits/sec
Uztelecom       | Tashkent, UZ (10G)        | 538 Mbits/sec   | 429 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 593 Mbits/sec   | 450 Mbits/sec
Clouvider       | Dallas, TX, US (10G)      | 603 Mbits/sec   | 509 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 641 Mbits/sec   | 617 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 484
Multi Core      | 507
Full Test       | https://browser.geekbench.com/v5/cpu/17809154
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-06-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) CPU E5-2660 0 @ 2.20GHz
 CPU Cores          : 1 @ 2199.998 MHz
 CPU Cache          : 16384 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Disabled
 Total Disk         : 7.6 GB (5.0 GB Used)
 Total Mem          : 483.2 MB (33.1 MB Used)
 Total Swap         : 2.2 GB (10.8 MB Used)
 System uptime      : 0 days, 1 hour 19 min
 Load average       : 0.00, 0.18, 0.20
 OS                 : Debian GNU/Linux 10
 Arch               : x86_64 (64 Bit)
 Kernel             : 4.19.0-16-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 Organization       : AS140096 Jinx Co. Limited
 Location           : Hong Kong / HK
 Region             : Central and Western
----------------------------------------------------------------------
 I/O Speed(1st run) : 222 MB/s
 I/O Speed(2nd run) : 398 MB/s
 I/O Speed(3rd run) : 288 MB/s
 I/O Speed(average) : 302.7 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    92.08 Mbps        94.00 Mbps          0.99 ms
 Los Angeles, US  475.90 Mbps       727.18 Mbps         146.91 ms
 Dallas, US       411.00 Mbps       750.35 Mbps         175.73 ms
 Montreal, CA     91.00 Mbps        90.79 Mbps          221.82 ms
 Paris, FR        300.35 Mbps       652.45 Mbps         236.91 ms
 Amsterdam, NL    85.19 Mbps        92.66 Mbps          254.92 ms
 Shanghai, CN     98.24 Mbps        98.18 Mbps          37.94 ms
 Nanjing, CN      97.65 Mbps        98.46 Mbps          48.73 ms
 Guangzhou, CN    83.03 Mbps        91.69 Mbps          26.24 ms
 Hongkong, CN     96.28 Mbps        96.59 Mbps          1.43 ms
 Seoul, KR        94.95 Mbps        93.09 Mbps          40.43 ms
 Singapore, SG    96.82 Mbps        94.67 Mbps          42.67 ms
 Tokyo, JP        727.97 Mbps       706.52 Mbps         48.41 ms
----------------------------------------------------------------------
 Finished in        : 6 min 2 sec
 Timestamp          : 2022-10-08 15:18:11 CST
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Sat 08 Oct 2022 03:23:04 PM CST

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Jinx Co. Limited (103.200.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               Yes (Region: HK)
 Netflix:                               Yes (Region: HK)
 YouTube Premium:                       Yes (Region: HK)
 Amazon Prime Video:                    Yes (Region: HK)
 TVBAnywhere+:                          No
 iQyi Oversea Region:                   HK
 Viu.com:                               Yes (Region: HK)
 YouTube CDN:                           Hong Kong
 Netflix Preferred CDN:                 Hong Kong
 Spotify Registration:                  No
 Steam Currency:                        HKD
=======================================
=============[ Hong Kong ]=============
 Now E:                                 Yes
 Viu.TV:                                Yes
 MyTVSuper:                             No
 HBO GO Asia:                           Yes (Region: HK)
 BiliBili Hongkong/Macau/Taiwan:        Yes
=======================================


 ** 正在测试IPv6解锁情况
--------------------------------
 ** 您的网络为: Jinx Co. Limited (2402:f740:1010:*:*)


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               No
 Disney+:                               No
 Netflix:                               Yes (Region: HK)
 YouTube Premium:                       No
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           Hong Kong
 Netflix Preferred CDN:                 Hong Kong
 Spotify Registration:                  No
 Steam Currency:                        Failed (Network Connection)
=======================================
=============[ Hong Kong ]=============
 Now E:                                 Failed (Unexpected Result: )
 Viu.TV:                                Failed (Network Connection)
 MyTVSuper:                             No
 HBO GO Asia:                           Failed (Network Connection)
 BiliBili Hongkong/Macau/Taiwan:        Failed (Network Connection)
=======================================
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/10/08/4c4ff477fc9c2.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/10/08/b208536cf90a1.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/10/08/537ed7bc53313.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/10/18/d1db30193d0b0.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.106.50.1 (202.106.50.1), 30 hops max, 32 byte packets
 1  10.0.0.2  0.89 ms  *  局域网
 2  10.20.12.1  1.58 ms  *  局域网
 3  10.20.11.6  2.75 ms  *  局域网
 4  *
 5  *
 6  61.14.201.73  9.16 ms  *  中国, 香港, chinaunicom.com, 联通
 7  43.252.86.65  3.20 ms  AS10099  中国, 香港, chinaunicom.com, 联通
 8  202.77.23.25  18.21 ms  AS10099  中国, 香港, chinaunicom.com, 联通
 9  219.158.10.53  11.80 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
10  219.158.97.26  11.02 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
11  *
12  *
13  125.33.186.186  39.13 ms  AS4808  中国, 北京, chinaunicom.com, 联通
14  202.106.50.1  38.02 ms  AS4808  中国, 北京, chinaunicom.com, 联通
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 32 byte packets
 1  10.0.0.2  0.86 ms  *  局域网
 2  10.20.12.1  40.74 ms  *  局域网
 3  10.20.11.6  0.37 ms  *  局域网
 4  *
 5  *
 6  61.14.201.73  2.94 ms  *  中国, 香港, chinaunicom.com, 联通
 7  43.252.86.141  8.51 ms  AS10099  中国, 香港, chinaunicom.com, 联通
 8  219.158.10.61  15.35 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
 9  219.158.98.93  10.17 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
10  *
11  219.158.7.21  40.19 ms  AS4837  中国, 北京, chinaunicom.com, 联通
12  219.158.110.66  42.52 ms  AS4837  中国, 北京, chinaunicom.com, 联通
13  219.158.40.58  38.29 ms  AS4837  中国, 北京, chinaunicom.com, 联通
14  *
15  *
16  180.149.128.1  41.31 ms  AS23724  中国, 北京, chinatelecom.com.cn, 电信
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.179.155.161 (221.179.155.161), 30 hops max, 32 byte packets
 1  10.0.0.2  0.75 ms  *  局域网
 2  10.20.12.1  0.19 ms  *  局域网
 3  10.20.11.6  0.41 ms  *  局域网
 4  *
 5  223.119.19.221  4.48 ms  AS58453  中国, 香港, chinamobile.com, 移动
 6  223.120.22.21  41.04 ms  AS58453  中国, 广东, 广州, chinamobile.com, 移动
 7  221.183.55.102  44.98 ms  AS9808  中国, 北京, chinamobile.com, 移动
 8  221.183.46.250  40.03 ms  AS9808  中国, 北京, chinamobile.com, 移动
 9  221.183.89.98  49.65 ms  AS9808  中国, 北京, chinamobile.com, 移动
10  *
11  221.183.110.158  52.58 ms  AS9808  中国, chinamobile.com, 移动
12  cachedns03.bj.chinamobile.com (221.179.155.161)  50.97 ms  AS56048  中国, 北京, chinamobile.com, 移动
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.22.97.1 (210.22.97.1), 30 hops max, 32 byte packets
 1  10.0.0.2  0.74 ms  *  局域网
 2  10.20.12.1  0.30 ms  *  局域网
 3  10.20.11.6  0.48 ms  *  局域网
 4  *
 5  61.14.203.125  3.23 ms  *  中国, 香港, chinaunicom.com, 联通
 6  61.14.201.73  10.21 ms  *  中国, 香港, chinaunicom.com, 联通
 7  43.252.86.65  3.47 ms  AS10099  中国, 香港, chinaunicom.com, 联通
 8  202.77.23.25  15.68 ms  AS10099  中国, 香港, chinaunicom.com, 联通
 9  219.158.20.97  8.24 ms  AS4837  中国, 香港, chinaunicom.com, 联通
10  219.158.4.13  15.77 ms  AS4837  中国, 广东, chinaunicom.com, 联通
11  219.158.3.81  10.58 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
12  219.158.6.213  35.66 ms  AS4837  中国, 上海, chinaunicom.com, 联通
13  *
14  139.226.201.146  47.01 ms  AS17621  中国, 上海, chinaunicom.com, 联通
15  210.22.97.1  36.07 ms  AS17621  中国, 上海, chinaunicom.com, 联通
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.96.209.133 (202.96.209.133), 30 hops max, 32 byte packets
 1  10.0.0.2  0.60 ms  *  局域网
 2  10.20.12.1  0.20 ms  *  局域网
 3  10.20.11.6  0.25 ms  *  局域网
 4  *
 5  61.14.203.125  3.19 ms  *  中国, 香港, chinaunicom.com, 联通
 6  61.14.201.73  10.81 ms  *  中国, 香港, chinaunicom.com, 联通
 7  43.252.86.141  16.67 ms  AS10099  中国, 香港, chinaunicom.com, 联通
 8  219.158.10.61  13.67 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
 9  219.158.4.49  12.16 ms  AS4837  中国, 广东, chinaunicom.com, 联通
10  219.158.3.9  9.65 ms  AS4837  中国, 广东, chinaunicom.com, 联通
11  219.158.6.233  32.96 ms  AS4837  中国, 上海, chinaunicom.com, 联通
12  219.158.8.250  37.28 ms  AS4837  中国, 上海, chinaunicom.com, 联通
13  202.97.17.181  33.81 ms  AS4134  中国, 上海, chinatelecom.com.cn, 电信
14  *
15  61.152.25.137  32.59 ms  AS4812  中国, 上海, chinatelecom.com.cn, 电信
16  124.74.229.234  36.07 ms  AS4812  中国, 上海, chinatelecom.com.cn, 电信
17  ns-pd.online.sh.cn (202.96.209.133)  33.70 ms  AS4812  中国, 上海, chinatelecom.com.cn, 电信
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 211.136.112.200 (211.136.112.200), 30 hops max, 32 byte packets
 1  10.0.0.2  1.49 ms  *  局域网
 2  10.20.12.1  0.22 ms  *  局域网
 3  10.20.11.6  0.22 ms  *  局域网
 4  *
 5  223.119.19.221  5.04 ms  AS58453  中国, 香港, chinamobile.com, 移动
 6  223.120.3.174  31.19 ms  AS58453  中国, 上海, chinamobile.com, 移动
 7  221.183.89.174  30.45 ms  AS9808  中国, 上海, chinamobile.com, 移动
 8  221.183.89.69  33.10 ms  AS9808  中国, 上海, chinamobile.com, 移动
 9  221.183.89.50  34.36 ms  AS9808  中国, 上海, chinamobile.com, 移动
10  *
11  211.136.190.234  34.29 ms  AS24400  中国, 上海, chinamobile.com, 移动
12  211.136.112.252  34.81 ms  AS24400  中国, 上海, chinamobile.com, 移动
13  211.136.112.200  34.65 ms  AS24400  中国, 上海, chinamobile.com, 移动
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  10.0.0.2  0.87 ms  *  局域网
 2  10.20.12.1  0.57 ms  *  局域网
 3  10.20.11.6  0.24 ms  *  局域网
 4  *
 5  *
 6  61.14.201.73  3.81 ms  *  中国, 香港, chinaunicom.com, 联通
 7  43.252.86.65  6.38 ms  AS10099  中国, 香港, chinaunicom.com, 联通
 8  202.77.23.25  15.94 ms  AS10099  中国, 香港, chinaunicom.com, 联通
 9  219.158.10.53  15.87 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
10  219.158.4.133  12.51 ms  AS4837  中国, 广东, chinaunicom.com, 联通
11  219.158.3.17  8.65 ms  AS4837  中国, 广东, chinaunicom.com, 联通
12  112.89.0.62  10.53 ms  AS17816  中国, 广东, 广州, chinaunicom.com, 联通
13  120.80.175.78  9.08 ms  AS17622  中国, 广东, 广州, chinaunicom.com, 联通
14  gz1-dns.gdgz.cncnet.net (210.21.4.130)  7.93 ms  AS17622  中国, 广东, 广州, chinaunicom.com, 联通
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 116.21.84.1 (116.21.84.1), 30 hops max, 32 byte packets
 1  10.0.0.2  0.59 ms  *  局域网
 2  10.20.12.1  29.01 ms  *  局域网
 3  10.20.11.6  0.19 ms  *  局域网
 4  *
 5  61.14.203.125  3.71 ms  *  中国, 香港, chinaunicom.com, 联通
 6  61.14.201.73  4.02 ms  *  中国, 香港, chinaunicom.com, 联通
 7  202.77.23.29  12.50 ms  AS10099  中国, 香港, chinaunicom.com, 联通
 8  219.158.20.93  14.07 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
 9  219.158.4.101  11.95 ms  AS4837  中国, 广东, chinaunicom.com, 联通
10  219.158.3.9  8.92 ms  AS4837  中国, 广东, chinaunicom.com, 联通
11  219.158.9.38  15.04 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
12  202.97.17.169  15.01 ms  AS4134  中国, 广东, 广州, chinatelecom.com.cn, 电信
13  202.97.95.81  9.63 ms  AS4134  中国, 广东, 广州, chinatelecom.com.cn, 电信
14  14.147.7.114  9.18 ms  AS4134  中国, 广东, 广州, chinatelecom.com.cn, 电信
15  116.21.84.1  7.71 ms  AS4134  中国, 广东, 广州, chinatelecom.com.cn, 电信
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.183.63.121 (221.183.63.121), 30 hops max, 32 byte packets
 1  10.0.0.2  0.82 ms  *  局域网
 2  10.20.12.1  0.34 ms  *  局域网
 3  10.20.11.6  0.21 ms  *  局域网
 4  *
 5  223.119.19.221  3.69 ms  AS58453  中国, 香港, chinamobile.com, 移动
 6  223.120.2.10  7.92 ms  AS58453  中国, 广东, 广州, chinamobile.com, 移动
 7  221.183.55.74  12.65 ms  AS9808  中国, 广东, 广州, chinamobile.com, 移动
 8  221.176.24.61  13.80 ms  AS9808  中国, 广东, 广州, chinamobile.com, 移动
 9  221.176.22.125  11.01 ms  AS9808  中国, 广东, 广州, chinamobile.com, 移动
10  221.183.63.121  11.91 ms  AS9808  中国, 广东, 广州, chinamobile.com, 移动
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;延迟要比hkg3低一些，但是带宽小了很多，中规中矩了。&lt;/p&gt;
</content:encoded></item><item><title>RFCHOST香港CMI线路VPS测试</title><link>https://yushum.com/posts/rfchost%E9%A6%99%E6%B8%AFcmi%E7%BA%BF%E8%B7%AFvps%E6%B5%8B%E8%AF%95/</link><guid isPermaLink="true">https://yushum.com/posts/rfchost%E9%A6%99%E6%B8%AFcmi%E7%BA%BF%E8%B7%AFvps%E6%B5%8B%E8%AF%95/</guid><pubDate>Thu, 15 Sep 2022 16:56:33 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;据其官网描述中国大陆优化路由，买来测试一下。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-08-20                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Thu Sep 15 15:24:19 HKT 2022

Basic System Information:
---------------------------------
Uptime     : 0 days, 1 hours, 21 minutes
Processor  : Intel(R) Xeon(R) CPU E5-2680 v4 @ 2.40GHz
CPU cores  : 1 @ 2394.454 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 475.8 MiB
Swap       : 2.5 GiB
Disk       : 7.3 GiB
Distro     : Debian GNU/Linux 11 (bullseye)
Kernel     : 5.10.0-18-cloud-amd64

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 86.14 MB/s   (21.5k) | 67.12 MB/s    (1.0k)
Write      | 86.37 MB/s   (21.5k) | 67.51 MB/s    (1.0k)
Total      | 172.51 MB/s  (43.1k) | 134.63 MB/s   (2.1k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 206.28 MB/s    (402) | 266.59 MB/s    (260)
Write      | 217.24 MB/s    (424) | 284.34 MB/s    (277)
Total      | 423.53 MB/s    (826) | 550.93 MB/s    (537)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 362 Mbits/sec   | 135 Mbits/sec
Online.net      | Paris, FR (10G)           | 348 Mbits/sec   | 288 Mbits/sec
Hybula          | The Netherlands (40G)     | 362 Mbits/sec   | 390 Mbits/sec
Uztelecom       | Tashkent, UZ (10G)        | busy            | busy
Clouvider       | NYC, NY, US (10G)         | 346 Mbits/sec   | 228 Mbits/sec
Clouvider       | Dallas, TX, US (10G)      | 354 Mbits/sec   | 299 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 388 Mbits/sec   | 377 Mbits/sec

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 406 Mbits/sec   | 374 Mbits/sec
Online.net      | Paris, FR (10G)           | 509 Mbits/sec   | 455 Mbits/sec
Hybula          | The Netherlands (40G)     | 490 Mbits/sec   | 397 Mbits/sec
Uztelecom       | Tashkent, UZ (10G)        | busy            | busy
Clouvider       | NYC, NY, US (10G)         | 465 Mbits/sec   | 415 Mbits/sec
Clouvider       | Dallas, TX, US (10G)      | 582 Mbits/sec   | 496 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 670 Mbits/sec   | 578 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 715
Multi Core      | 694
Full Test       | https://browser.geekbench.com/v5/cpu/17285085
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-06-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) CPU E5-2680 v4 @ 2.40GHz
 CPU Cores          : 1 @ 2394.454 MHz
 CPU Cache          : 16384 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Enabled
 Total Disk         : 7.3 GB (2.9 GB Used)
 Total Mem          : 475.8 MB (45.7 MB Used)
 Total Swap         : 2.5 GB (15.1 MB Used)
 System uptime      : 0 days, 1 hour 35 min
 Load average       : 0.18, 0.33, 0.21
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-18-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 Organization       : AS140096 Jinx Co. Limited
 Location           : Hong Kong / HK
 Region             : Central and Western
----------------------------------------------------------------------
 I/O Speed(1st run) : 254 MB/s
 I/O Speed(2nd run) : 218 MB/s
 I/O Speed(3rd run) : 247 MB/s
 I/O Speed(average) : 239.7 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    2692.97 Mbps      2597.73 Mbps        1.43 ms
 Los Angeles, US  396.44 Mbps       2260.60 Mbps        154.91 ms
 Dallas, US       369.39 Mbps       2456.92 Mbps        190.00 ms
 Montreal, CA     212.68 Mbps       403.53 Mbps         234.31 ms
 Paris, FR        409.42 Mbps       2203.99 Mbps        168.07 ms
 Amsterdam, NL    359.93 Mbps       448.83 Mbps         189.74 ms
 Shanghai, CN     498.78 Mbps       495.87 Mbps         33.21 ms
 Nanjing, CN      486.07 Mbps       493.23 Mbps         54.62 ms
 Seoul, KR        451.81 Mbps       475.95 Mbps         67.39 ms
 Singapore, SG    487.56 Mbps       494.72 Mbps         39.18 ms
 Tokyo, JP        1702.27 Mbps      2199.79 Mbps        43.38 ms
----------------------------------------------------------------------
 Finished in        : 5 min 24 sec
 Timestamp          : 2022-09-15 15:44:01 HKT
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Thu Sep 15 15:46:28 HKT 2022

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Shanghai Huajuan Information Technology Co. (199.15.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               Yes (Region: HK)
 Netflix:                               Yes (Region: HK)
 YouTube Premium:                       Yes (Region: HK)
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          No
 iQyi Oversea Region:                   HK
 Viu.com:                               Yes (Region: HK)
 YouTube CDN:                           Hong Kong
 Netflix Preferred CDN:                 Hong Kong
 Spotify Registration:                  No
 Steam Currency:                        HKD
=======================================
=============[ Hong Kong ]=============
 Now E:                                 Yes
 Viu.TV:                                Yes
 MyTVSuper:                             No
 HBO GO Asia:                           Yes (Region: HK)
 BiliBili Hongkong/Macau/Taiwan:        Yes
=======================================


 ** 正在测试IPv6解锁情况
--------------------------------
 ** 您的网络为: Jinx Co. Limited (2401:d9c0:2924:*:*)


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               No
 Disney+:                               Yes (Region: HK)
 Netflix:                               Originals Only
 YouTube Premium:                       Yes (Region: HK)
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           Hong Kong
 Netflix Preferred CDN:                 Hong Kong
 Spotify Registration:                  No
 Steam Currency:                        Failed (Network Connection)
=======================================
=============[ Hong Kong ]=============
 Now E:                                 Failed (Unexpected Result: )
 Viu.TV:                                Failed (Network Connection)
 MyTVSuper:                             No
 HBO GO Asia:                           Failed (Network Connection)
 BiliBili Hongkong/Macau/Taiwan:        Failed (Network Connection)
=======================================
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/10/08/d8bb182b6ec01.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/09/15/64ab4453a4097.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/10/08/e2c83211564cc.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/09/15/92aa38c72af25.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.106.50.1 (202.106.50.1), 30 hops max, 32 byte packets
 1  199.15.77.1  0.52 ms  AS140096  China, Hong Kong, rixcloud.com
 2  10.60.0.1  1.56 ms  *  LAN Address
 3  223.119.81.173  2.79 ms  AS58453  China, Hong Kong, ChinaMobile
 4  *
 5  223.120.3.174  29.98 ms  AS58453  China, Shanghai, ChinaMobile
 6  221.183.89.174  31.61 ms  AS9808  China, Shanghai, ChinaMobile
 7  221.183.89.69  31.61 ms  AS9808  China, Shanghai, ChinaMobile
 8  221.183.89.50  32.82 ms  AS9808  China, Shanghai, ChinaMobile
 9  221.183.37.217  54.83 ms  AS9808  China, Beijing, ChinaMobile
10  *
11  221.183.123.14  53.54 ms  AS9808  China, Beijing, ChinaMobile
12  219.158.109.185  47.67 ms  AS4837  China, Beijing, ChinaUnicom
13  *
14  202.106.50.1  48.74 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 32 byte packets
 1  199.15.77.1  0.46 ms  AS140096  China, Hong Kong, rixcloud.com
 2  10.60.0.1  1.82 ms  *  LAN Address
 3  223.119.81.173  2.68 ms  AS58453  China, Hong Kong, ChinaMobile
 4  *
 5  223.120.3.174  29.99 ms  AS58453  China, Shanghai, ChinaMobile
 6  221.183.89.170  31.14 ms  AS9808  China, Shanghai, ChinaMobile
 7  221.183.89.33  31.64 ms  AS9808  China, Shanghai, ChinaMobile
 8  221.183.89.10  32.85 ms  AS9808  China, Shanghai, ChinaMobile
 9  221.183.37.133  56.02 ms  AS9808  China, Beijing, ChinaMobile
10  221.183.94.22  56.28 ms  AS9808  China, Beijing, ChinaMobile
11  221.183.30.50  48.22 ms  AS9808  China, Beijing, ChinaMobile
12  *
13  *
14  180.149.128.1  47.55 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.179.155.161 (221.179.155.161), 30 hops max, 32 byte packets
 1  199.15.77.1  12.64 ms  AS140096  China, Hong Kong, rixcloud.com
 2  10.60.0.1  1.63 ms  *  LAN Address
 3  223.119.81.173  2.52 ms  AS58453  China, Hong Kong, ChinaMobile
 4  223.120.2.29  2.84 ms  AS58453  China, Hong Kong, ChinaMobile
 5  223.120.2.10  8.27 ms  AS58453  China, Guangdong, Guangzhou, ChinaMobile
 6  223.120.22.21  40.73 ms  AS58453  China, Guangdong, Guangzhou, ChinaMobile
 7  221.183.55.114  42.99 ms  AS9808  China, Beijing, ChinaMobile
 8  221.183.52.2  50.06 ms  AS9808  China, Beijing, ChinaMobile
 9  221.183.89.118  49.33 ms  AS9808  China, Beijing, ChinaMobile
10  221.183.46.174  45.49 ms  AS9808  China, Beijing, ChinaMobile
11  221.183.110.158  52.97 ms  AS9808  China, ChinaMobile
12  cachedns03.bj.chinamobile.com (221.179.155.161)  52.43 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.22.97.1 (210.22.97.1), 30 hops max, 32 byte packets
 1  199.15.77.1  9.30 ms  AS140096  China, Hong Kong, rixcloud.com
 2  10.60.0.1  1.59 ms  *  LAN Address
 3  223.119.81.173  2.54 ms  AS58453  China, Hong Kong, ChinaMobile
 4  223.120.22.69  2.93 ms  AS58453  China, Hong Kong, ChinaMobile
 5  223.120.3.174  29.91 ms  AS58453  China, Shanghai, ChinaMobile
 6  221.183.89.174  31.56 ms  AS9808  China, Shanghai, ChinaMobile
 7  221.183.89.69  31.49 ms  AS9808  China, Shanghai, ChinaMobile
 8  221.183.89.50  32.90 ms  AS9808  China, Shanghai, ChinaMobile
 9  221.183.94.2  39.91 ms  AS9808  China, Shanghai, ChinaMobile
10  221.183.123.106  39.67 ms  AS9808  China, Shanghai, ChinaMobile
11  219.158.113.197  35.19 ms  AS4837  China, Shanghai, ChinaUnicom
12  139.226.195.122  34.27 ms  AS17621  China, Shanghai, ChinaUnicom
13  139.226.201.146  32.24 ms  AS17621  China, Shanghai, ChinaUnicom
14  210.22.97.1  34.23 ms  AS17621  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.96.209.133 (202.96.209.133), 30 hops max, 32 byte packets
 1  199.15.77.1  0.36 ms  AS140096  China, Hong Kong, rixcloud.com
 2  10.60.0.1  1.56 ms  *  LAN Address
 3  223.119.81.173  2.42 ms  AS58453  China, Hong Kong, ChinaMobile
 4  *
 5  223.120.3.182  29.89 ms  AS58453  China, Shanghai, ChinaMobile
 6  221.183.89.174  31.95 ms  AS9808  China, Shanghai, ChinaMobile
 7  221.183.89.69  32.06 ms  AS9808  China, Shanghai, ChinaMobile
 8  221.183.89.46  33.78 ms  AS9808  China, Shanghai, ChinaMobile
 9  *
10  221.183.123.98  37.35 ms  AS9808  China, Shanghai, ChinaMobile
11  *
12  *
13  180.169.255.122  38.25 ms  AS4812  China, Shanghai, ChinaTelecom
14  ns-pd.online.sh.cn (202.96.209.133)  32.96 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 211.136.112.200 (211.136.112.200), 30 hops max, 32 byte packets
 1  199.15.77.1  0.54 ms  AS140096  China, Hong Kong, rixcloud.com
 2  10.60.0.1  17.16 ms  *  LAN Address
 3  223.119.81.173  11.49 ms  AS58453  China, Hong Kong, ChinaMobile
 4  223.120.22.65  4.92 ms  AS58453  China, Hong Kong, ChinaMobile
 5  223.120.3.202  30.94 ms  AS58453  China, Shanghai, ChinaMobile
 6  221.183.89.182  31.82 ms  AS9808  China, Shanghai, ChinaMobile
 7  221.183.92.173  31.71 ms  AS9808  China, Shanghai, ChinaMobile
 8  221.183.89.46  33.58 ms  AS9808  China, Shanghai, ChinaMobile
 9  *
10  221.181.125.138  35.33 ms  AS24400  China, Shanghai, ChinaMobile
11  211.136.112.252  38.53 ms  AS24400  China, Shanghai, ChinaMobile
12  211.136.112.200  39.72 ms  AS24400  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  199.15.77.1  1.32 ms  AS140096  China, Hong Kong, rixcloud.com
 2  10.60.0.1  16.62 ms  *  LAN Address
 3  223.119.81.173  2.49 ms  AS58453  China, Hong Kong, ChinaMobile
 4  *
 5  223.120.3.174  30.23 ms  AS58453  China, Shanghai, ChinaMobile
 6  221.183.89.174  31.64 ms  AS9808  China, Shanghai, ChinaMobile
 7  221.183.89.69  31.55 ms  AS9808  China, Shanghai, ChinaMobile
 8  221.183.89.46  33.21 ms  AS9808  China, Shanghai, ChinaMobile
 9  *
10  *
11  219.158.46.153  45.05 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
12  219.158.103.173  37.33 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
13  120.83.0.166  36.15 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
14  120.80.175.78  35.65 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
15  gz1-dns.gdgz.cncnet.net (210.21.4.130)  35.28 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 116.21.84.1 (116.21.84.1), 30 hops max, 32 byte packets
 1  199.15.77.1  0.49 ms  AS140096  China, Hong Kong, rixcloud.com
 2  10.60.0.1  1.88 ms  *  LAN Address
 3  *
 4  223.120.22.69  3.15 ms  AS58453  China, Hong Kong, ChinaMobile
 5  223.120.3.182  30.28 ms  AS58453  China, Shanghai, ChinaMobile
 6  221.183.89.174  31.99 ms  AS9808  China, Shanghai, ChinaMobile
 7  221.183.89.69  31.86 ms  AS9808  China, Shanghai, ChinaMobile
 8  221.183.89.50  33.31 ms  AS9808  China, Shanghai, ChinaMobile
 9  *
10  *
11  221.183.90.210  37.77 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
12  *
13  14.147.8.26  36.45 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
14  116.21.84.1  34.93 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.183.63.121 (221.183.63.121), 30 hops max, 32 byte packets
 1  199.15.77.1  0.71 ms  AS140096  China, Hong Kong, rixcloud.com
 2  10.60.0.1  1.57 ms  *  LAN Address
 3  223.119.81.173  2.56 ms  AS58453  China, Hong Kong, ChinaMobile
 4  *
 5  223.120.3.182  30.00 ms  AS58453  China, Shanghai, ChinaMobile
 6  221.183.89.170  31.77 ms  AS9808  China, Shanghai, ChinaMobile
 7  221.183.89.33  32.01 ms  AS9808  China, Shanghai, ChinaMobile
 8  221.183.89.2  36.69 ms  AS9808  China, Shanghai, ChinaMobile
 9  221.183.108.222  43.49 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
10  111.24.4.234  34.17 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
11  221.183.63.121  35.80 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;性能一般，网络很不错，联通电信去程CN2，移动去程CMI，三网回程均为CMI，性价比还不错。&lt;/p&gt;
</content:encoded></item><item><title>v.ps东京€99.95/5年软银线路VPS测试</title><link>https://yushum.com/posts/v-ps%E4%B8%9C%E4%BA%ACe99-95-5%E5%B9%B4%E8%BD%AF%E9%93%B6%E7%BA%BF%E8%B7%AFvps%E6%B5%8B%E8%AF%95/</link><guid isPermaLink="true">https://yushum.com/posts/v-ps%E4%B8%9C%E4%BA%ACe99-95-5%E5%B9%B4%E8%BD%AF%E9%93%B6%E7%BA%BF%E8%B7%AFvps%E6%B5%8B%E8%AF%95/</guid><pubDate>Sun, 11 Sep 2022 23:19:14 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;v.ps上新母鸡的促销。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-08-20                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Sun 11 Sep 2022 11:49:35 PM JST

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 5 minutes
Processor  : Intel(R) Xeon(R) CPU E5-2678 v3 @ 2.50GHz
CPU cores  : 1 @ 2499.996 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 979.0 MiB
Swap       : 975.0 MiB
Disk       : 13.7 GiB
Distro     : Debian GNU/Linux 11 (bullseye)
Kernel     : 5.10.0-18-cloud-amd64

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 20.27 MB/s    (5.0k) | 205.78 MB/s   (3.2k)
Write      | 20.29 MB/s    (5.0k) | 206.87 MB/s   (3.2k)
Total      | 40.57 MB/s   (10.1k) | 412.66 MB/s   (6.4k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 196.33 MB/s    (383) | 194.01 MB/s    (189)
Write      | 206.76 MB/s    (403) | 206.93 MB/s    (202)
Total      | 403.10 MB/s    (786) | 400.94 MB/s    (391)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 281 Mbits/sec   | 342 Mbits/sec
Online.net      | Paris, FR (10G)           | 304 Mbits/sec   | 341 Mbits/sec
Hybula          | The Netherlands (40G)     | 282 Mbits/sec   | 275 Mbits/sec
Uztelecom       | Tashkent, UZ (10G)        | busy            | 331 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 341 Mbits/sec   | 366 Mbits/sec
Clouvider       | Dallas, TX, US (10G)      | 344 Mbits/sec   | 371 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 375 Mbits/sec   | 379 Mbits/sec

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 304 Mbits/sec   | 343 Mbits/sec
Online.net      | Paris, FR (10G)           | 295 Mbits/sec   | 328 Mbits/sec
Hybula          | The Netherlands (40G)     | 300 Mbits/sec   | 288 Mbits/sec
Uztelecom       | Tashkent, UZ (10G)        | 300 Mbits/sec   | 341 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 320 Mbits/sec   | 360 Mbits/sec
Clouvider       | Dallas, TX, US (10G)      | 322 Mbits/sec   | 352 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 328 Mbits/sec   | 357 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 552
Multi Core      | 510
Full Test       | https://browser.geekbench.com/v5/cpu/17198439
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-06-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) CPU E5-2678 v3 @ 2.50GHz
 CPU Cores          : 1 @ 2499.996 MHz
 CPU Cache          : 16384 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Enabled
 Total Disk         : 13.7 GB (905.8 MB Used)
 Total Mem          : 979.0 MB (48.7 MB Used)
 Total Swap         : 975.0 MB (2.5 MB Used)
 System uptime      : 0 days, 0 hour 19 min
 Load average       : 0.33, 0.36, 0.20
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-18-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 Organization       : AS23959 Owl Limited
 Location           : Osaka / JP
 Region             : Ōsaka
----------------------------------------------------------------------
 I/O Speed(1st run) : 205 MB/s
 I/O Speed(2nd run) : 204 MB/s
 I/O Speed(3rd run) : 206 MB/s
 I/O Speed(average) : 205.0 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    417.67 Mbps       399.19 Mbps         1.08 ms
 Los Angeles, US  366.68 Mbps       401.02 Mbps         120.56 ms
 Dallas, US       305.52 Mbps       396.67 Mbps         154.65 ms
 Montreal, CA     300.20 Mbps       396.94 Mbps         177.95 ms
 Paris, FR        331.71 Mbps       395.59 Mbps         251.08 ms
 Amsterdam, NL    324.37 Mbps       233.12 Mbps         0.66 ms
 Shanghai, CN     420.88 Mbps       407.42 Mbps         50.55 ms
 Nanjing, CN      418.86 Mbps       399.48 Mbps         35.58 ms
 Seoul, KR        414.83 Mbps       398.42 Mbps         40.08 ms
 Singapore, SG    404.71 Mbps       398.94 Mbps         69.72 ms
 Tokyo, JP        410.44 Mbps       394.00 Mbps         0.98 ms
----------------------------------------------------------------------
 Finished in        : 5 min 24 sec
 Timestamp          : 2022-09-12 00:08:59 JST
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Mon 12 Sep 2022 12:09:24 AM JST

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Owl Limited (193.32.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               Yes (Region: JP)
 Netflix:                               Originals Only
 YouTube Premium:                       Yes (Region: DE)
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   JP
 Viu.com:                               No
 YouTube CDN:                           Tokyo
 Netflix Preferred CDN:                 Tokyo
 Spotify Registration:                  No
 Steam Currency:                        EUR
=======================================
===============[ Japan ]===============
 DMM:                                   Yes
 Abema.TV:                              No
 Niconico:                              No
 music.jp:                              No
 Telasa:                                No
 Paravi:                                No
 U-NEXT:                                No
 Hulu Japan:                            No
 TVer:                                  Yes
 GYAO!:                                 Yes
 WOWOW:                                 Failed
 VideoMarket:                           Yes
 FOD(Fuji TV):                          Yes
 Radiko:                                Yes (City: TOKYO)
 Karaoke@DAM:                           Yes
 J:com On Demand:                       No
 ---Game---
 Kancolle Japan:                        Yes
 Pretty Derby Japan:                    Yes
 Konosuba Fantastic Days:               No
 Princess Connect Re:Dive Japan:        Yes
 World Flipper Japan:                   Yes
 Project Sekai: Colorful Stage:         No
=======================================


 ** 正在测试IPv6解锁情况
--------------------------------
 ** 您的网络为: Owl Limited (2a12:a301:2:*:*)


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               No
 Disney+:                               Yes (Region: JP)
 Netflix:                               Originals Only
 YouTube Premium:                       No
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           Tokyo
 Netflix Preferred CDN:                 Tokyo
 Spotify Registration:                  No
 Steam Currency:                        Failed (Network Connection)
=======================================
===============[ Japan ]===============
 DMM:                                   Unsupported
 Abema.TV:                              Failed (Network Connection)
 Niconico:                              Failed (Network Connection)
 music.jp:                              No
 Telasa:                                Failed (Network Connection)
 Paravi:                                Failed (Network Connection)
 U-NEXT:                                Failed (Network Connection)
 Hulu Japan:                            Yes
 TVer:                                  Failed (Network Connection)
 GYAO!:                                 IPv6 Not Supported
 WOWOW:                                 Failed (Network Connection)
 VideoMarket:                           IPv6 Not Supported
 FOD(Fuji TV):                          No
 Radiko:                                Unsupported
 Karaoke@DAM:                           Failed (Network Connection)
 J:com On Demand:                       Yes
 ---Game---
 Kancolle Japan:                        Yes
 Pretty Derby Japan:                    Yes
 Konosuba Fantastic Days:               Failed (Network Connection)
 Princess Connect Re:Dive Japan:        Failed (Network Connection)
 World Flipper Japan:                   Yes
 Project Sekai: Colorful Stage:         Failed (Network Connection)
=======================================
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/09/11/7af3a5cb14ce3.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.106.50.1 (202.106.50.1), 30 hops max, 32 byte packets
 1  193.32.148.1  8.77 ms  AS23959  Japan, Tokyo, xtom.com
 2  91.200.240.42  9.32 ms  AS23959  Japan, Tokyo, xtom.com
 3  211.15.32.122  0.40 ms  AS17676  Japan, Tokyo, bbtec.net
 4  211.15.32.121  0.86 ms  AS17676  Japan, Tokyo, bbtec.net
 5  *
 6  *
 7  *
 8  softbank221111202070.bbtec.net (221.111.202.70)  56.36 ms  AS17676  China, Beijing, bbtec.net
 9  219.158.3.145  58.71 ms  AS4837  China, Beijing, ChinaUnicom
10  *
11  *
12  202.106.50.1  50.58 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 32 byte packets
 1  193.32.148.1  20.52 ms  AS23959  Japan, Tokyo, xtom.com
 2  91.200.240.42  2076.33 ms  AS23959  Japan, Tokyo, xtom.com
 3  211.15.32.122  1.42 ms  AS17676  Japan, Tokyo, bbtec.net
 4  211.15.32.121  1.26 ms  AS17676  Japan, Tokyo, bbtec.net
 5  *
 6  *
 7  *
 8  *
 9  202.97.51.242  32.75 ms  AS4134  China, Shanghai, ChinaTelecom
10  202.97.57.26  46.59 ms  AS4134  China, Shanghai, ChinaTelecom
11  *
12  *
13  180.149.128.1  67.55 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.179.155.161 (221.179.155.161), 30 hops max, 32 byte packets
 1  193.32.148.1  17.61 ms  AS23959  Japan, Tokyo, xtom.com
 2  91.200.240.42  11.30 ms  AS23959  Japan, Tokyo, xtom.com
 3  211.15.32.122  0.39 ms  AS17676  Japan, Tokyo, bbtec.net
 4  211.15.32.121  0.80 ms  AS17676  Japan, Tokyo, bbtec.net
 5  *
 6  *
 7  softbank221111202238.bbtec.net (221.111.202.238)  2.35 ms  AS17676  Japan, Tokyo, bbtec.net
 8  223.120.2.198  86.80 ms  AS58453  China, Beijing, ChinaMobile
 9  221.183.55.110  86.73 ms  AS9808  China, Beijing, ChinaMobile
10  221.183.52.2  88.93 ms  AS9808  China, Beijing, ChinaMobile
11  221.183.89.122  94.13 ms  AS9808  China, Beijing, ChinaMobile
12  221.183.46.178  95.73 ms  AS9808  China, Beijing, ChinaMobile
13  221.183.110.162  96.79 ms  AS9808  China, ChinaMobile
14  cachedns03.bj.chinamobile.com (221.179.155.161)  102.25 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.22.97.1 (210.22.97.1), 30 hops max, 32 byte packets
 1  193.32.148.1  12.37 ms  AS23959  Japan, Tokyo, xtom.com
 2  91.200.240.42  13.77 ms  AS23959  Japan, Tokyo, xtom.com
 3  211.15.32.122  0.38 ms  AS17676  Japan, Tokyo, bbtec.net
 4  211.15.32.121  0.78 ms  AS17676  Japan, Tokyo, bbtec.net
 5  *
 6  *
 7  *
 8  softbank221111202070.bbtec.net (221.111.202.70)  49.53 ms  AS17676  China, Beijing, bbtec.net
 9  219.158.22.142  46.96 ms  AS4837  China, Shanghai, ChinaUnicom
10  219.158.19.74  49.07 ms  AS4837  China, Shanghai, ChinaUnicom
11  219.158.19.81  49.74 ms  AS4837  China, Shanghai, ChinaUnicom
12  139.226.225.138  52.84 ms  AS17621  China, Shanghai, ChinaUnicom
13  139.226.201.146  49.50 ms  AS17621  China, Shanghai, ChinaUnicom
14  210.22.97.1  50.46 ms  AS17621  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.96.209.133 (202.96.209.133), 30 hops max, 32 byte packets
 1  193.32.148.1  17.28 ms  AS23959  Japan, Tokyo, xtom.com
 2  91.200.240.42  19.10 ms  AS23959  Japan, Tokyo, xtom.com
 3  211.15.32.122  0.37 ms  AS17676  Japan, Tokyo, bbtec.net
 4  211.15.32.121  0.84 ms  AS17676  Japan, Tokyo, bbtec.net
 5  *
 6  *
 7  *
 8  *
 9  *
10  202.97.57.158  34.83 ms  AS4134  China, Shanghai, ChinaTelecom
11  61.152.24.69  35.57 ms  AS4812  China, Shanghai, ChinaTelecom
12  *
13  180.169.255.118  58.50 ms  AS4812  China, Shanghai, ChinaTelecom
14  ns-pd.online.sh.cn (202.96.209.133)  34.05 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 211.136.112.200 (211.136.112.200), 30 hops max, 32 byte packets
 1  193.32.148.1  11.18 ms  AS23959  Japan, Tokyo, xtom.com
 2  91.200.240.42  0.78 ms  AS23959  Japan, Tokyo, xtom.com
 3  211.15.32.122  5.50 ms  AS17676  Japan, Tokyo, bbtec.net
 4  211.15.32.121  0.76 ms  AS17676  Japan, Tokyo, bbtec.net
 5  *
 6  *
 7  softbank221111202238.bbtec.net (221.111.202.238)  2.26 ms  AS17676  Japan, Tokyo, bbtec.net
 8  223.118.2.237  1.91 ms  AS58453  Japan, Tokyo, ChinaMobile
 9  223.120.3.246  53.48 ms  AS58453  China, Shanghai, ChinaMobile
10  221.183.89.170  54.81 ms  AS9808  China, Shanghai, ChinaMobile
11  221.183.92.169  54.75 ms  AS9808  China, Shanghai, ChinaMobile
12  221.183.89.14  56.14 ms  AS9808  China, Shanghai, ChinaMobile
13  *
14  211.136.190.234  56.93 ms  AS24400  China, Shanghai, ChinaMobile
15  211.136.112.252  56.71 ms  AS24400  China, Shanghai, ChinaMobile
16  211.136.112.200  57.51 ms  AS24400  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  193.32.148.1  16.93 ms  AS23959  Japan, Tokyo, xtom.com
 2  91.200.240.42  4.57 ms  AS23959  Japan, Tokyo, xtom.com
 3  211.15.32.122  0.39 ms  AS17676  Japan, Tokyo, bbtec.net
 4  211.15.32.121  0.88 ms  AS17676  Japan, Tokyo, bbtec.net
 5  *
 6  *
 7  *
 8  softbank221111202070.bbtec.net (221.111.202.70)  49.27 ms  AS17676  China, Beijing, bbtec.net
 9  219.158.111.218  53.44 ms  AS4837  China, Shanghai, ChinaUnicom
10  219.158.19.74  56.07 ms  AS4837  China, Shanghai, ChinaUnicom
11  219.158.19.81  49.41 ms  AS4837  China, Shanghai, ChinaUnicom
12  *
13  112.91.0.246  77.52 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
14  120.80.79.194  77.23 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
15  gz1-dns.gdgz.cncnet.net (210.21.4.130)  76.84 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 116.21.84.1 (116.21.84.1), 30 hops max, 32 byte packets
 1  193.32.148.1  7.62 ms  AS23959  Japan, Tokyo, xtom.com
 2  91.200.240.42  2.48 ms  AS23959  Japan, Tokyo, xtom.com
 3  211.15.32.122  0.41 ms  AS17676  Japan, Tokyo, bbtec.net
 4  211.15.32.121  0.95 ms  AS17676  Japan, Tokyo, bbtec.net
 5  *
 6  *
 7  *
 8  *
 9  *
10  *
11  202.97.33.125  34.33 ms  AS4134  China, Shanghai, ChinaTelecom
12  202.97.94.238  45.09 ms  AS4134  China, Shanghai, ChinaTelecom
13  *
14  113.65.112.6  79.84 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
15  116.21.84.1  74.37 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.183.63.121 (221.183.63.121), 30 hops max, 32 byte packets
 1  193.32.148.1  16.05 ms  AS23959  Japan, Tokyo, xtom.com
 2  91.200.240.42  2.82 ms  AS23959  Japan, Tokyo, xtom.com
 3  211.15.32.122  0.41 ms  AS17676  Japan, Tokyo, bbtec.net
 4  211.15.32.121  0.75 ms  AS17676  Japan, Tokyo, bbtec.net
 5  *
 6  *
 7  softbank221111202238.bbtec.net (221.111.202.238)  2.33 ms  AS17676  Japan, Tokyo, bbtec.net
 8  223.118.2.237  2.27 ms  AS58453  Japan, Tokyo, ChinaMobile
 9  223.120.2.2  56.30 ms  AS58453  China, Guangdong, Guangzhou, ChinaMobile
10  221.183.55.66  57.39 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
11  221.176.24.57  78.26 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
12  221.176.24.101  87.49 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
13  221.183.63.121  84.99 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;三网走软银，可能路由还没调好。&lt;/p&gt;
</content:encoded></item><item><title>微基主机WIKIHOST韩国Lite VPS测评</title><link>https://yushum.com/posts/%E5%BE%AE%E5%9F%BA%E4%B8%BB%E6%9C%BAwikihost%E9%9F%A9%E5%9B%BDlite-vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/%E5%BE%AE%E5%9F%BA%E4%B8%BB%E6%9C%BAwikihost%E9%9F%A9%E5%9B%BDlite-vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Wed, 06 Jul 2022 13:07:40 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;微基主机的韩国VPS似乎不经常放货，今天放货跑个分看看。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-06-11                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Wed Jul  6 04:19:55 UTC 2022

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 1 minutes
Processor  : AMD Ryzen 9 5900X 12-Core Processor
CPU cores  : 1 @ 3693.062 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 475.6 MiB
Swap       : 2.0 GiB
Disk       : 19.6 GiB
Distro     : Debian GNU/Linux 11 (bullseye)
Kernel     : 5.10.0-15-cloud-amd64

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 8.01 MB/s     (2.0k) | 78.21 MB/s    (1.2k)
Write      | 8.04 MB/s     (2.0k) | 78.63 MB/s    (1.2k)
Total      | 16.05 MB/s    (4.0k) | 156.84 MB/s   (2.4k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 158.97 MB/s    (310) | 163.43 MB/s    (159)
Write      | 167.42 MB/s    (327) | 174.32 MB/s    (170)
Total      | 326.40 MB/s    (637) | 337.75 MB/s    (329)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 87.9 Mbits/sec  | 91.0 Mbits/sec
Online.net      | Paris, FR (10G)           | busy            | 285 Kbits/sec
Hybula          | The Netherlands (40G)     | 85.8 Mbits/sec  | 88.7 Mbits/sec
Uztelecom       | Tashkent, UZ (10G)        | busy            | busy
Clouvider       | NYC, NY, US (10G)         | 86.4 Mbits/sec  | 90.3 Mbits/sec
Clouvider       | Dallas, TX, US (10G)      | busy            | 75.1 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 87.8 Mbits/sec  | 87.6 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 422
Multi Core      | 394
Full Test       | https://browser.geekbench.com/v5/cpu/15848546
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-06-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : AMD Ryzen 9 5900X 12-Core Processor
 CPU Cores          : 1 @ 3693.062 MHz
 CPU Cache          : 512 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Enabled
 Total Disk         : 19.6 GB (2.8 GB Used)
 Total Mem          : 475.6 MB (43.5 MB Used)
 Total Swap         : 2.0 GB (22.1 MB Used)
 System uptime      : 0 days, 0 hour 15 min
 Load average       : 0.04, 0.26, 0.17
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-15-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 Organization       : AS138195 MOACK.Co.LTD
 Location           : Seoul / KR
 Region             : Seoul
----------------------------------------------------------------------
 I/O Speed(1st run) : 321 MB/s
 I/O Speed(2nd run) : 314 MB/s
 I/O Speed(3rd run) : 319 MB/s
 I/O Speed(average) : 318.0 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    104.32 Mbps       101.69 Mbps         156.98 ms
 Los Angeles, US  102.62 Mbps       102.04 Mbps         159.72 ms
 Dallas, US       101.23 Mbps       102.95 Mbps         197.35 ms
 Montreal, CA     102.35 Mbps       101.66 Mbps         215.69 ms
 Paris, FR        98.44 Mbps        101.29 Mbps         252.87 ms
 Amsterdam, NL    97.81 Mbps        101.85 Mbps         240.21 ms
 Shanghai, CN     103.79 Mbps       101.83 Mbps         24.02 ms
 Nanjing, CN      104.36 Mbps       99.54 Mbps          51.53 ms
 Guangzhou, CN    48.59 Mbps        75.96 Mbps          54.33 ms
 Hongkong, CN     102.98 Mbps       99.45 Mbps          37.20 ms
 Seoul, KR        96.66 Mbps        99.62 Mbps          2.09 ms
 Singapore, SG    103.58 Mbps       101.01 Mbps         71.83 ms
 Tokyo, JP        102.65 Mbps       99.52 Mbps          30.57 ms
----------------------------------------------------------------------
 Finished in        : 6 min 27 sec
 Timestamp          : 2022-07-06 04:40:08 UTC
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Wed Jul  6 05:00:31 UTC 2022

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: MOACK.Co.LTD (161.129.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               Yes (Region: US)
 Disney+:                               Yes (Region: US)
 Netflix:                               Originals Only
 YouTube Premium:                       Yes (Region: JP)
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   US
 Viu.com:                               No
 YouTube CDN:                           Tokyo
 Netflix Preferred CDN:                 -&amp;gt;awk: line 1: syntax error at or near end of line
 Spotify Registration:                  Yes (Region: US)
 Steam Currency:                        USD
=======================================
当前主机不支持IPv6,跳过...

本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/07/06/4af2841a2f92b.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/07/06/793b5d2c744c3.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/07/06/e8e773403dd06.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/07/06/baabef44c7658.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.106.50.1 (202.106.50.1), 30 hops max, 32 byte packets
 1  161.129.34.1  28.01 ms  AS138195  Republic of Korea, Seoul, rixcloud.com
 2  10.24.80.1  0.56 ms  *  LAN Address
 3  10.10.10.17  0.33 ms  *  LAN Address
 4  211.53.96.21  1.25 ms  AS3786  Republic of Korea, Seoul, uplus.co.kr
 5  1.208.164.25  1.69 ms  AS3786  Republic of Korea, Seoul, uplus.co.kr
 6  1.208.112.38  2.79 ms  AS3786  Republic of Korea, Seoul, uplus.co.kr
 7  219.158.38.117  45.00 ms  AS4837  China, ChinaUnicom
 8  219.158.3.114  47.46 ms  AS4837  China, Beijing, ChinaUnicom
 9  219.158.3.133  49.74 ms  AS4837  China, Beijing, ChinaUnicom
10  219.158.18.65  47.81 ms  AS4837  China, Beijing, ChinaUnicom
11  202.96.12.186  47.60 ms  AS4808  China, Beijing, ChinaUnicom
12  202.106.50.1  45.76 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 32 byte packets
 1  161.129.34.1  14.98 ms  AS138195  Republic of Korea, Seoul, rixcloud.com
 2  10.24.80.1  1.41 ms  *  LAN Address
 3  10.10.10.17  0.36 ms  *  LAN Address
 4  203.195.115.25  43.12 ms  AS4809  Republic of Korea, Seoul, ChinaTelecom
 5  59.43.187.209  43.37 ms  *  China, Shanghai, ChinaTelecom
 6  59.43.247.125  87.48 ms  *  China, Beijing, ChinaTelecom
 7  59.43.246.142  52.09 ms  *  China, Beijing, ChinaTelecom
 8  *
 9  *
10  *
11  *
12  180.149.128.1  65.84 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.179.155.161 (221.179.155.161), 30 hops max, 32 byte packets
 1  161.129.34.1  1.91 ms  AS138195  Republic of Korea, Seoul, rixcloud.com
 2  10.24.80.1  0.64 ms  *  LAN Address
 3  10.10.10.17  0.32 ms  *  LAN Address
 4  223.119.21.13  1.78 ms  AS58453  Republic of Korea, Seoul, ChinaMobile
 5  223.120.3.117  1.85 ms  AS58453  Republic of Korea, Seoul, ChinaMobile
 6  223.120.2.90  26.34 ms  AS58453  China, Shanghai, ChinaMobile
 7  223.120.22.33  48.90 ms  AS58453  China, Beijing, ChinaMobile
 8  221.183.55.110  48.34 ms  AS9808  China, Beijing, ChinaMobile
 9  221.183.25.201  49.82 ms  AS9808  China, Beijing, ChinaMobile
10  221.183.89.122  49.12 ms  AS9808  China, Beijing, ChinaMobile
11  *
12  *
13  cachedns03.bj.chinamobile.com (221.179.155.161)  51.69 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.22.97.1 (210.22.97.1), 30 hops max, 32 byte packets
 1  161.129.34.1  1.88 ms  AS138195  Republic of Korea, Seoul, rixcloud.com
 2  10.24.80.1  0.60 ms  *  LAN Address
 3  10.10.10.17  0.96 ms  *  LAN Address
 4  211.53.96.21  1.69 ms  AS3786  Republic of Korea, Seoul, uplus.co.kr
 5  1.208.167.33  1.59 ms  AS3786  Republic of Korea, Seoul, uplus.co.kr
 6  1.208.179.238  16.55 ms  AS3786  Republic of Korea, Seoul, uplus.co.kr
 7  219.158.38.113  26.40 ms  AS4837  China, ChinaUnicom
 8  219.158.113.134  23.76 ms  AS4837  China, Shanghai, ChinaUnicom
 9  219.158.113.101  23.38 ms  AS4837  China, Shanghai, ChinaUnicom
10  *
11  139.226.201.146  23.54 ms  AS17621  China, Shanghai, ChinaUnicom
12  210.22.97.1  25.70 ms  AS17621  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.96.209.133 (202.96.209.133), 30 hops max, 32 byte packets
 1  161.129.34.1  7.87 ms  AS138195  Republic of Korea, Seoul, rixcloud.com
 2  10.24.80.1  0.56 ms  *  LAN Address
 3  10.10.10.17  5.53 ms  *  LAN Address
 4  203.195.115.25  43.18 ms  AS4809  Republic of Korea, Seoul, ChinaTelecom
 5  59.43.250.33  41.95 ms  *  China, Shanghai, ChinaTelecom
 6  *
 7  *
 8  *
 9  61.152.25.109  27.82 ms  AS4812  China, Shanghai, ChinaTelecom
10  124.74.229.234  30.84 ms  AS4812  China, Shanghai, ChinaTelecom
11  ns-pd.online.sh.cn (202.96.209.133)  26.95 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 211.136.112.200 (211.136.112.200), 30 hops max, 32 byte packets
 1  161.129.34.1  1.84 ms  AS138195  Republic of Korea, Seoul, rixcloud.com
 2  10.24.80.1  0.63 ms  *  LAN Address
 3  10.10.10.17  0.35 ms  *  LAN Address
 4  223.119.21.13  2.77 ms  AS58453  Republic of Korea, Seoul, ChinaMobile
 5  223.120.3.117  1.70 ms  AS58453  Republic of Korea, Seoul, ChinaMobile
 6  223.120.2.90  25.32 ms  AS58453  China, Shanghai, ChinaMobile
 7  221.183.55.46  26.18 ms  AS9808  China, Shanghai, ChinaMobile
 8  221.183.25.189  26.82 ms  AS9808  China, Shanghai, ChinaMobile
 9  221.176.22.29  28.34 ms  AS9808  China, Shanghai, ChinaMobile
10  111.24.3.93  26.82 ms  AS9808  China, Shanghai, ChinaMobile
11  111.24.4.106  27.53 ms  AS9808  China, Shanghai, ChinaMobile
12  221.181.125.85  28.00 ms  AS24400  China, Shanghai, ChinaMobile
13  221.181.125.138  28.72 ms  AS24400  China, Shanghai, ChinaMobile
14  211.136.112.252  28.61 ms  AS24400  China, Shanghai, ChinaMobile
15  211.136.112.200  28.42 ms  AS24400  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  161.129.34.1  1.84 ms  AS138195  Republic of Korea, Seoul, rixcloud.com
 2  10.24.80.1  21.41 ms  *  LAN Address
 3  10.10.10.17  0.36 ms  *  LAN Address
 4  211.53.96.21  1.38 ms  AS3786  Republic of Korea, Seoul, uplus.co.kr
 5  1.208.164.89  2.92 ms  AS3786  Republic of Korea, Seoul, uplus.co.kr
 6  1.208.113.130  13.14 ms  AS3786  Republic of Korea, Seoul, uplus.co.kr
 7  219.158.38.113  26.83 ms  AS4837  China, ChinaUnicom
 8  219.158.19.78  29.59 ms  AS4837  China, Shanghai, ChinaUnicom
 9  219.158.19.81  23.76 ms  AS4837  China, Shanghai, ChinaUnicom
10  219.158.107.30  53.60 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
11  112.89.0.62  56.75 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
12  120.80.170.218  54.94 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
13  120.80.79.194  53.26 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
14  gz1-dns.gdgz.cncnet.net (210.21.4.130)  53.24 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 116.21.84.1 (116.21.84.1), 30 hops max, 32 byte packets
 1  161.129.34.1  3.25 ms  AS138195  Republic of Korea, Seoul, rixcloud.com
 2  10.24.80.1  0.61 ms  *  LAN Address
 3  10.10.10.17  11.14 ms  *  LAN Address
 4  203.195.115.25  44.46 ms  AS4809  Republic of Korea, Seoul, ChinaTelecom
 5  59.43.250.33  41.92 ms  *  China, Shanghai, ChinaTelecom
 6  59.43.182.238  45.58 ms  *  China, Guangdong, Guangzhou, ChinaTelecom
 7  59.43.245.30  66.77 ms  *  China, ChinaTelecom
 8  *
 9  *
10  61.144.3.54  58.85 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
11  116.21.84.1  52.62 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.183.63.121 (221.183.63.121), 30 hops max, 32 byte packets
 1  161.129.34.1  36.94 ms  AS138195  Republic of Korea, Seoul, rixcloud.com
 2  10.24.80.1  0.83 ms  *  LAN Address
 3  10.10.10.17  3.11 ms  *  LAN Address
 4  223.119.21.13  2.69 ms  AS58453  Republic of Korea, Seoul, ChinaMobile
 5  223.120.3.113  1.73 ms  AS58453  Republic of Korea, Seoul, ChinaMobile
 6  223.120.3.225  41.47 ms  AS58453  China, Hong Kong, ChinaMobile
 7  223.120.2.2  48.41 ms  AS58453  China, Guangdong, Guangzhou, ChinaMobile
 8  221.183.55.54  48.81 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
 9  221.176.19.213  47.68 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
10  221.183.68.138  48.79 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
11  221.183.63.121  50.13 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;性能一般，网络不错。&lt;/p&gt;
</content:encoded></item><item><title>Spartan Host西雅图4837线路VPS测评</title><link>https://yushum.com/posts/spartan-host%E8%A5%BF%E9%9B%85%E5%9B%BE4837%E7%BA%BF%E8%B7%AFvps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/spartan-host%E8%A5%BF%E9%9B%85%E5%9B%BE4837%E7%BA%BF%E8%B7%AFvps%E6%B5%8B%E8%AF%84/</guid><pubDate>Thu, 30 Jun 2022 13:39:22 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;和微基主机的4837洛杉矶对比一下 &lt;a href=&quot;https://yushum.com/%E5%BE%AE%E5%9F%BA%E4%B8%BB%E6%9C%BA%E6%B4%9B%E6%9D%89%E7%9F%B64837-lite-vps%E6%B5%8B%E8%AF%84/&quot;&gt;微基主机洛杉矶4837 Lite VPS测评&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-06-11                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Wed 29 Jun 2022 09:44:22 PM PDT

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 13 minutes
Processor  : Intel(R) Xeon(R) CPU E5-2690 v3 @ 2.60GHz
CPU cores  : 2 @ 2599.988 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 978.6 MiB
Swap       : 975.0 MiB
Disk       : 13.7 GiB
Distro     : Debian GNU/Linux 11 (bullseye)
Kernel     : 5.10.0-15-cloud-amd64

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 53.25 MB/s   (13.3k) | 243.04 MB/s   (3.7k)
Write      | 53.34 MB/s   (13.3k) | 244.32 MB/s   (3.8k)
Total      | 106.59 MB/s  (26.6k) | 487.36 MB/s   (7.6k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 367.42 MB/s    (717) | 366.61 MB/s    (358)
Write      | 386.94 MB/s    (755) | 391.02 MB/s    (381)
Total      | 754.37 MB/s   (1.4k) | 757.64 MB/s    (739)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 1.24 Gbits/sec  | 1.33 Gbits/sec
Online.net      | Paris, FR (10G)           | 1.33 Gbits/sec  | 1.21 Gbits/sec
Hybula          | The Netherlands (40G)     | 1.14 Gbits/sec  | 1.16 Gbits/sec
Uztelecom       | Tashkent, UZ (10G)        | 810 Mbits/sec   | 698 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 2.85 Gbits/sec  | 2.83 Gbits/sec
Clouvider       | Dallas, TX, US (10G)      | 967 Mbits/sec   | 1.01 Gbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 5.32 Gbits/sec  | 3.48 Gbits/sec

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 1.31 Gbits/sec  | 1.04 Gbits/sec
Online.net      | Paris, FR (10G)           | 1.46 Gbits/sec  | 671 Mbits/sec
Hybula          | The Netherlands (40G)     | 1.27 Gbits/sec  | 1.32 Gbits/sec
Uztelecom       | Tashkent, UZ (10G)        | 851 Mbits/sec   | 597 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 3.10 Gbits/sec  | 1.67 Gbits/sec
Clouvider       | Dallas, TX, US (10G)      | 3.19 Gbits/sec  | 1.58 Gbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 5.32 Gbits/sec  | 2.25 Gbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 667
Multi Core      | 1316
Full Test       | https://browser.geekbench.com/v5/cpu/15740049
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-06-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) CPU E5-2690 v3 @ 2.60GHz
 CPU Cores          : 2 @ 2599.988 MHz
 CPU Cache          : 30720 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Enabled
 Total Disk         : 13.7 GB (914.3 MB Used)
 Total Mem          : 978.6 MB (44.6 MB Used)
 Total Swap         : 975.0 MB (3.5 MB Used)
 System uptime      : 0 days, 0 hour 51 min
 Load average       : 0.00, 0.00, 0.00
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-15-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 Organization       : AS201106 Spartan Host Ltd
 Location           : Seattle / US
 Region             : Washington
----------------------------------------------------------------------
 I/O Speed(1st run) : 439 MB/s
 I/O Speed(2nd run) : 509 MB/s
 I/O Speed(3rd run) : 476 MB/s
 I/O Speed(average) : 474.7 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    6968.09 Mbps      5830.28 Mbps        4.84 ms
 Los Angeles, US  2667.36 Mbps      2566.64 Mbps        31.07 ms
 Dallas, US       1391.95 Mbps      2942.81 Mbps        59.06 ms
 Montreal, CA     665.22 Mbps       938.67 Mbps         66.25 ms
 Paris, FR        586.18 Mbps       4161.40 Mbps        138.21 ms
 Amsterdam, NL    532.08 Mbps       2028.72 Mbps        154.86 ms
 Shanghai, CN     526.27 Mbps       3024.99 Mbps        160.71 ms
 Nanjing, CN      391.13 Mbps       784.59 Mbps         185.87 ms
 Guangzhou, CN    80.41 Mbps        901.73 Mbps         173.01 ms
 Hongkong, CN     466.99 Mbps       4345.60 Mbps        174.13 ms
 Seoul, KR        489.03 Mbps       695.45 Mbps         117.61 ms
 Singapore, SG    373.13 Mbps       471.09 Mbps         220.26 ms
 Tokyo, JP        713.77 Mbps       3492.60 Mbps        108.69 ms
----------------------------------------------------------------------
 Finished in        : 6 min 52 sec
 Timestamp          : 2022-06-29 22:29:40 PDT
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Wed 29 Jun 2022 10:30:59 PM PDT

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Spartan Host Ltd (45.145.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               Yes (Region: US)
 Disney+:                               Yes (Region: US)
 Netflix:                               Originals Only
 YouTube Premium:                       Yes
 Amazon Prime Video:                    Yes (Region: US)
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   US
 Viu.com:                               No
 YouTube CDN:                           Seattle, WA
 Netflix Preferred CDN:                 Seattle, WA
 Spotify Registration:                  No
 Steam Currency:                        USD
=======================================
===========[ North America ]===========
 FOX:                                   Yes
 Hulu:                                  Failed
 ESPN+:[Sponsored by Jam]               Yes
 Epix:                                  No
 Starz:                                 No
 HBO Now:                               Yes
 HBO Max:                               Yes
 BritBox:                               Yes
 NBA TV:                                Yes
 Fubo TV:                               Yes
 Sling TV:                              Yes
 Pluto TV:                              Yes
 Acorn TV:                              Yes
 SHOWTIME:                              Yes
 AT&amp;amp;T NOW:                              Yes
 encoreTVB:                             Yes
 CineMax Go:                            Yes
 Funimation:                            Yes (Region: US)
 Discovery+:                            Yes
 Paramount+:                            Yes
 Peacock TV:                            Yes
 ---CA---
 CBC Gem:                               No
 Crave:                                 No
=======================================


 ** 正在测试IPv6解锁情况
--------------------------------
 ** 您的网络为: Spartan Host Ltd (2604:9cc0:0:*:*)


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               Yes (Region: US)
 Disney+:                               No
 Netflix:                               Originals Only
 YouTube Premium:                       Yes
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           Seattle, WA
 Netflix Preferred CDN:                 Seattle, WA
 Spotify Registration:                  No
 Steam Currency:                        Failed (Network Connection)
=======================================
===========[ North America ]===========
 FOX:                                   Yes
 Hulu:                                  Failed
 ESPN+:[Sponsored by Jam]               Yes
 Epix:                                  No
 Starz:                                 Failed (Network Connection)
 HBO Now:                               Failed (Network Connection)

 HBO Max:                               Failed (Network Connection)
 BritBox:                               Yes
 NBA TV:                                Yes
 Fubo TV:                               Failed (Network Connection)
 Sling TV:                              Yes
 Pluto TV:                              Yes
 Acorn TV:                              Failed (Network Connection)
 SHOWTIME:                              Failed (Network Connection)
 encoreTVB:                             Failed (Network Connection)             -&amp;gt;
 CineMax Go:                            Failed (Network Connection)
 Funimation:                            IPv6 Not Support
 Discovery+:                            IPv6 Not Support
 Paramount+:                            Yes
 Peacock TV:                            Yes
 ---CA---
 CBC Gem:                               Failed (Network Connection)
 Crave:                                 Failed (Network Connection)
=======================================
本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/06/30/2a03f14d15131.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/06/30/aba0bd68222c5.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/06/30/b96feda0465e1.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/06/30/3febd47d87946.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.106.50.1 (202.106.50.1), 30 hops max, 32 byte packets
 1  10.0.0.73  14.46 ms  *  LAN Address
 2  agg-3-sea.as50131.net (172.83.155.4)  0.28 ms  AS201106  United States, Washington, Seattle, spartanhost.org
 3  six.cnservers.com (206.81.81.38)  4.99 ms  *  United States, Washington, Seattle, seattleix.net
 4  *
 5  23.225.225.65  164.94 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 6  219.158.116.237  154.47 ms  AS4837  China, Shanghai, ChinaUnicom
 7  219.158.8.189  156.80 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.8.209  148.71 ms  AS4837  China, Shanghai, ChinaUnicom
 9  219.158.16.89  166.78 ms  AS4837  China, Beijing, ChinaUnicom
10  124.65.194.162  165.17 ms  AS4808  China, Beijing, ChinaUnicom
11  202.106.50.1  163.71 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 32 byte packets
 1  10.0.0.73  12.53 ms  *  LAN Address
 2  agg-3-sea.as50131.net (172.83.155.4)  0.33 ms  AS201106  United States, Washington, Seattle, spartanhost.org
 3  six.cnservers.com (206.81.81.38)  5.14 ms  *  United States, Washington, Seattle, seattleix.net
 4  *
 5  23.225.225.65  173.85 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 6  219.158.97.177  163.39 ms  AS4837  China, Shanghai, ChinaUnicom
 7  219.158.6.185  160.20 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.8.201  151.75 ms  AS4837  China, Shanghai, ChinaUnicom
 9  219.158.7.229  172.78 ms  AS4837  China, Beijing, ChinaUnicom
10  219.158.103.210  173.53 ms  AS4837  China, Beijing, ChinaUnicom
11  *
12  202.97.17.117  170.41 ms  AS4134  China, Beijing, ChinaTelecom
13  *
14  180.149.128.1  172.84 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.179.155.161 (221.179.155.161), 30 hops max, 32 byte packets
 1  10.0.0.73  24.41 ms  *  LAN Address
 2  agg-3-sea.as50131.net (172.83.155.4)  0.31 ms  AS201106  United States, Washington, Seattle, spartanhost.org
 3  six.cnservers.com (206.81.81.38)  6.00 ms  *  United States, Washington, Seattle, seattleix.net
 4  *
 5  23.225.225.65  164.24 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 6  219.158.97.177  165.56 ms  AS4837  China, Shanghai, ChinaUnicom
 7  219.158.113.118  157.15 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.113.105  159.88 ms  AS4837  China, Shanghai, ChinaUnicom
 9  *
10  219.158.103.70  173.85 ms  AS4837  China, Beijing, ChinaUnicom
11  *
12  *
13  221.183.46.178  221.21 ms  AS9808  China, Beijing, ChinaMobile
14  *
15  cachedns03.bj.chinamobile.com (221.179.155.161)  223.11 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.22.97.1 (210.22.97.1), 30 hops max, 32 byte packets
 1  10.0.0.73  4.29 ms  *  LAN Address
 2  agg-1-sea.as50131.net (172.83.154.1)  0.34 ms  AS201106  United States, Washington, Seattle, spartanhost.org
 3  six.cnservers.com (206.81.81.38)  5.13 ms  *  United States, Washington, Seattle, seattleix.net
 4  *
 5  23.225.225.65  177.17 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 6  219.158.102.113  197.31 ms  AS4837  China, Shanghai, ChinaUnicom
 7  219.158.113.118  173.46 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.113.105  178.07 ms  AS4837  China, Shanghai, ChinaUnicom
 9  *
10  139.226.201.146  166.43 ms  AS17621  China, Shanghai, ChinaUnicom
11  210.22.97.1  168.71 ms  AS17621  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.96.209.133 (202.96.209.133), 30 hops max, 32 byte packets
 1  10.0.0.73  3.88 ms  *  LAN Address
 2  agg-1-sea.as50131.net (172.83.154.1)  1.11 ms  AS201106  United States, Washington, Seattle, spartanhost.org
 3  six.cnservers.com (206.81.81.38)  5.19 ms  *  United States, Washington, Seattle, seattleix.net
 4  *
 5  23.225.225.65  187.23 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 6  219.158.97.177  166.91 ms  AS4837  China, Shanghai, ChinaUnicom
 7  219.158.19.74  161.52 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.19.81  153.70 ms  AS4837  China, Shanghai, ChinaUnicom
 9  219.158.5.74  159.10 ms  AS4837  China, Shanghai, ChinaUnicom
10  202.97.17.181  153.11 ms  AS4134  China, Shanghai, ChinaTelecom
11  *
12  61.152.24.73  158.01 ms  AS4812  China, Shanghai, ChinaTelecom
13  101.95.95.2  159.34 ms  AS4812  China, Shanghai, ChinaTelecom
14  124.74.229.234  156.81 ms  AS4812  China, Shanghai, ChinaTelecom
15  ns-pd.online.sh.cn (202.96.209.133)  159.99 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 211.136.112.200 (211.136.112.200), 30 hops max, 32 byte packets
 1  10.0.0.73  6.42 ms  *  LAN Address
 2  agg-4-sea.as50131.net (172.83.155.6)  0.36 ms  AS201106  United States, Washington, Seattle, spartanhost.org
 3  six.cnservers.com (206.81.81.38)  5.28 ms  *  United States, Washington, Seattle, seattleix.net
 4  *
 5  23.225.225.65  178.41 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 6  219.158.6.5  152.73 ms  AS4837  China, Shanghai, ChinaUnicom
 7  219.158.19.74  145.12 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.19.69  143.27 ms  AS4837  China, Shanghai, ChinaUnicom
 9  219.158.9.98  148.44 ms  AS4837  China, Shanghai, ChinaUnicom
10  221.183.123.105  190.03 ms  AS9808  China, Shanghai, ChinaMobile
11  *
12  *
13  211.136.190.234  182.63 ms  AS24400  China, Shanghai, ChinaMobile
14  211.136.112.252  181.94 ms  AS24400  China, Shanghai, ChinaMobile
15  211.136.112.200  190.19 ms  AS24400  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  10.0.0.73  6.25 ms  *  LAN Address
 2  agg-2-sea.as50131.net (172.83.154.5)  0.30 ms  AS201106  United States, Washington, Seattle, spartanhost.org
 3  six.cnservers.com (206.81.81.38)  5.09 ms  *  United States, Washington, Seattle, seattleix.net
 4  *
 5  23.225.225.65  153.07 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 6  219.158.97.181  147.70 ms  AS4837  China, Shanghai, ChinaUnicom
 7  219.158.19.90  149.09 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.19.81  139.00 ms  AS4837  China, Shanghai, ChinaUnicom
 9  *
10  120.86.0.182  176.73 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
11  120.80.121.22  166.88 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
12  120.80.169.118  166.32 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
13  gz1-dns.gdgz.cncnet.net (210.21.4.130)  171.14 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 116.21.84.1 (116.21.84.1), 30 hops max, 32 byte packets
 1  10.0.0.73  48.89 ms  *  LAN Address
 2  agg-3-sea.as50131.net (172.83.155.4)  2.85 ms  AS201106  United States, Washington, Seattle, spartanhost.org
 3  six.cnservers.com (206.81.81.38)  5.03 ms  *  United States, Washington, Seattle, seattleix.net
 4  *
 5  23.225.225.65  153.82 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 6  219.158.102.129  172.77 ms  AS4837  China, Shanghai, ChinaUnicom
 7  219.158.19.90  172.12 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.19.81  174.13 ms  AS4837  China, Shanghai, ChinaUnicom
 9  219.158.6.254  211.52 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
10  219.158.119.14  206.64 ms  AS4837  China, ChinaUnicom
11  202.97.17.157  201.94 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
12  *
13  183.56.34.30  194.31 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
14  116.21.84.1  201.39 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.183.63.121 (221.183.63.121), 30 hops max, 32 byte packets
 1  10.0.0.73  19.36 ms  *  LAN Address
 2  agg-4-sea.as50131.net (172.83.155.6)  0.28 ms  AS201106  United States, Washington, Seattle, spartanhost.org
 3  six.cnservers.com (206.81.81.38)  5.19 ms  *  United States, Washington, Seattle, seattleix.net
 4  *
 5  23.225.225.65  166.39 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 6  219.158.97.177  165.61 ms  AS4837  China, Shanghai, ChinaUnicom
 7  219.158.113.122  153.77 ms  AS4837  China, Shanghai, ChinaUnicom
 8  *
 9  219.158.9.98  156.49 ms  AS4837  China, Shanghai, ChinaUnicom
10  221.183.123.109  194.28 ms  AS9808  China, Shanghai, ChinaMobile
11  221.183.94.5  200.91 ms  AS9808  China, Shanghai, ChinaMobile
12  111.24.3.206  203.26 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
13  111.24.4.246  211.98 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
14  221.183.63.121  203.58 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;性能比微基主机的强,网络各有千秋.&lt;/p&gt;
</content:encoded></item><item><title>微基主机洛杉矶4837 Lite VPS测评</title><link>https://yushum.com/posts/%E5%BE%AE%E5%9F%BA%E4%B8%BB%E6%9C%BA%E6%B4%9B%E6%9D%89%E7%9F%B64837-lite-vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/%E5%BE%AE%E5%9F%BA%E4%B8%BB%E6%9C%BA%E6%B4%9B%E6%9D%89%E7%9F%B64837-lite-vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Wed, 29 Jun 2022 21:44:34 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;据说速度比斯巴达快，测试看看。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-06-11                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Wed Jun 29 11:56:45 UTC 2022

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 1 minutes
Processor  : AMD Ryzen 9 5900X 12-Core Processor
CPU cores  : 1 @ 3699.998 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 475.6 MiB
Swap       : 0.0 KiB
Disk       : 19.6 GiB
Distro     : Debian GNU/Linux 11 (bullseye)
Kernel     : 5.10.0-15-cloud-amd64

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 29.08 MB/s    (7.2k) | 177.61 MB/s   (2.7k)
Write      | 29.09 MB/s    (7.2k) | 178.55 MB/s   (2.7k)
Total      | 58.18 MB/s   (14.5k) | 356.17 MB/s   (5.5k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 1.03 GB/s     (2.0k) | 1.11 GB/s     (1.0k)
Write      | 1.08 GB/s     (2.1k) | 1.18 GB/s     (1.1k)
Total      | 2.11 GB/s     (4.1k) | 2.30 GB/s     (2.2k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 601 Mbits/sec   | 701 Mbits/sec
Online.net      | Paris, FR (10G)           | 729 Mbits/sec   | 610 Mbits/sec
Hybula          | The Netherlands (40G)     | 693 Mbits/sec   | 658 Mbits/sec
Uztelecom       | Tashkent, UZ (10G)        | 278 Mbits/sec   | 424 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 837 Mbits/sec   | 971 Mbits/sec
Clouvider       | Dallas, TX, US (10G)      | 682 Mbits/sec   | 719 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 935 Mbits/sec   | 991 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 419
Multi Core      | 429
Full Test       | https://browser.geekbench.com/v5/cpu/15728331
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-06-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : AMD Ryzen 9 5900X 12-Core Processor
 CPU Cores          : 1 @ 3699.998 MHz
 CPU Cache          : 512 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Enabled
 Total Disk         : 19.6 GB (2.8 GB Used)
 Total Mem          : 475.6 MB (46.9 MB Used)
 Total Swap         : 2.0 GB (27.1 MB Used)
 System uptime      : 0 days, 0 hour 12 min
 Load average       : 0.34, 0.46, 0.26
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-15-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 Organization       : AS40065 CNSERVERS LLC
 Location           : Los Angeles / US
 Region             : California
----------------------------------------------------------------------
 I/O Speed(1st run) : 313 MB/s
 I/O Speed(2nd run) : 355 MB/s
 I/O Speed(3rd run) : 324 MB/s
 I/O Speed(average) : 330.7 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    451.79 Mbps       690.64 Mbps         158.26 ms
 Los Angeles, US  973.29 Mbps       999.33 Mbps         0.82 ms
 Dallas, US       1013.45 Mbps      778.07 Mbps         29.51 ms
 Montreal, CA     578.81 Mbps       461.37 Mbps         78.03 ms
 Paris, FR        503.32 Mbps       865.81 Mbps         139.07 ms
 Amsterdam, NL    513.72 Mbps       765.83 Mbps         143.76 ms
 Shanghai, CN     408.08 Mbps       444.81 Mbps         177.59 ms
 Nanjing, CN      448.95 Mbps       931.31 Mbps         155.01 ms
 Guangzhou, CN    61.67 Mbps        373.16 Mbps         195.21 ms
 Hongkong, CN     511.21 Mbps       577.66 Mbps         140.97 ms
 Seoul, KR        298.09 Mbps       501.52 Mbps         150.91 ms
 Singapore, SG    404.42 Mbps       911.39 Mbps         172.94 ms
 Tokyo, JP        676.80 Mbps       736.32 Mbps         112.23 ms
----------------------------------------------------------------------
 Finished in        : 6 min 31 sec
 Timestamp          : 2022-06-29 12:14:07 UTC
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Wed Jun 29 12:16:24 UTC 2022

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Cnservers LLC (156.251.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               Yes (Region: US)
 Disney+:                               No
 Netflix:                               Originals Only
 YouTube Premium:                       Yes
 Amazon Prime Video:                    Yes (Region: US)
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   US
 Viu.com:                               No
 YouTube CDN:                           Los Angeles, CA
 Netflix Preferred CDN:                 Los Angeles, CA
 Spotify Registration:                  Yes (Region: SC)
 Steam Currency:                        USD
=======================================
===========[ North America ]===========
 FOX:                                   No
 Hulu:                                  Failed
 ESPN+:[Sponsored by Jam]               No
 Epix:                                  No
 Starz:                                 No
 HBO Now:                               Yes
 HBO Max:                               Yes
 BritBox:                               Yes
 NBA TV:                                Yes
 Fubo TV:                               Yes
 Sling TV:                              No
 Pluto TV:                              No
 Acorn TV:                              No
 SHOWTIME:                              Yes
 AT&amp;amp;T NOW:                              Yes
 encoreTVB:                             Yes
 CineMax Go:                            Yes
 Funimation:                            No
 Discovery+:                            No
 Paramount+:                            Yes
 Peacock TV:                            Yes
 ---CA---
 CBC Gem:                               No
 Crave:                                 No
=======================================
当前主机不支持IPv6,跳过...

本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/06/29/96a22b35d950c.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/06/29/8a79b972d3a32.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/06/29/6797ecb8ac867.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/06/29/b6612e0c8a736.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.106.50.1 (202.106.50.1), 30 hops max, 32 byte packets
 1  23.225.111.169  0.38 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 2  *
 3  *
 4  *
 5  *
 6  23.225.225.65  152.88 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 7  219.158.6.5  168.36 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.113.118  161.88 ms  AS4837  China, Shanghai, ChinaUnicom
 9  *
10  219.158.7.233  176.08 ms  AS4837  China, Beijing, ChinaUnicom
11  *
12  202.106.50.1  169.16 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 32 byte packets
 1  23.225.111.169  0.37 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 2  23.224.21.56  0.32 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 3  *
 4  *
 5  *
 6  23.225.225.65  159.04 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 7  219.158.116.237  171.94 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.8.185  167.75 ms  AS4837  China, Shanghai, ChinaUnicom
 9  219.158.7.129  168.49 ms  AS4837  China, Shanghai, ChinaUnicom
10  *
11  219.158.103.170  166.30 ms  AS4837  China, Beijing, ChinaUnicom
12  219.158.40.70  162.82 ms  AS4837  China, Beijing, ChinaUnicom
13  *
14  180.149.128.1  160.90 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.179.155.161 (221.179.155.161), 30 hops max, 32 byte packets
 1  23.225.111.169  0.37 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 2  23.224.21.56  0.32 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 3  *
 4  *
 5  *
 6  23.225.225.65  157.40 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 7  219.158.102.133  184.49 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.8.173  167.69 ms  AS4837  China, Shanghai, ChinaUnicom
 9  *
10  219.158.16.89  204.59 ms  AS4837  China, Beijing, ChinaUnicom
11  219.158.109.186  207.84 ms  AS4837  China, Beijing, ChinaUnicom
12  *
13  *
14  *
15  *
16  cachedns03.bj.chinamobile.com (221.179.155.161)  197.36 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.22.97.1 (210.22.97.1), 30 hops max, 32 byte packets
 1  23.225.111.169  0.38 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 2  23.224.21.56  0.45 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 3  *
 4  *
 5  *
 6  23.225.225.65  158.07 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 7  219.158.97.177  180.02 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.6.157  176.33 ms  AS4837  China, Shanghai, ChinaUnicom
 9  219.158.7.133  174.17 ms  AS4837  China, Shanghai, ChinaUnicom
10  *
11  139.226.201.146  181.27 ms  AS17621  China, Shanghai, ChinaUnicom
12  210.22.97.1  176.71 ms  AS17621  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 202.96.209.133 (202.96.209.133), 30 hops max, 32 byte packets
 1  23.225.111.169  0.43 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 2  *
 3  *
 4  *
 5  *
 6  23.225.225.65  158.17 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 7  219.158.116.237  169.61 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.8.185  167.60 ms  AS4837  China, Shanghai, ChinaUnicom
 9  *
10  219.158.109.170  140.92 ms  AS4837  China, Shanghai, ChinaUnicom
11  202.97.17.201  144.06 ms  AS4134  China, Shanghai, ChinaTelecom
12  *
13  101.95.120.153  152.65 ms  AS4812  China, Shanghai, ChinaTelecom
14  124.74.229.234  140.25 ms  AS4812  China, Shanghai, ChinaTelecom
15  ns-pd.online.sh.cn (202.96.209.133)  141.69 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 211.136.112.200 (211.136.112.200), 30 hops max, 32 byte packets
 1  23.225.111.169  0.49 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 2  23.224.21.56  0.34 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 3  *
 4  192.168.101.62  0.43 ms  *  LAN Address
 5  *
 6  23.225.225.65  158.51 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 7  219.158.116.241  176.97 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.113.122  175.89 ms  AS4837  China, Shanghai, ChinaUnicom
 9  219.158.113.109  187.24 ms  AS4837  China, Shanghai, ChinaUnicom
10  219.158.9.98  193.30 ms  AS4837  China, Shanghai, ChinaUnicom
11  221.183.95.213  205.38 ms  AS9808  China, Shanghai, ChinaMobile
12  221.183.94.1  206.13 ms  AS9808  China, Shanghai, ChinaMobile
13  *
14  211.136.190.234  205.38 ms  AS24400  China, Shanghai, ChinaMobile
15  211.136.112.252  205.89 ms  AS24400  China, Shanghai, ChinaMobile
16  211.136.112.200  206.53 ms  AS24400  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  23.225.111.169  0.35 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 2  23.224.21.56  0.32 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 3  *
 4  *
 5  *
 6  23.225.225.65  159.11 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 7  219.158.116.237  168.99 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.8.181  167.27 ms  AS4837  China, Shanghai, ChinaUnicom
 9  219.158.7.129  169.05 ms  AS4837  China, Shanghai, ChinaUnicom
10  *
11  120.83.0.58  167.66 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
12  120.80.79.194  167.73 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
13  gz1-dns.gdgz.cncnet.net (210.21.4.130)  162.96 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 116.21.84.1 (116.21.84.1), 30 hops max, 32 byte packets
 1  23.225.111.169  0.40 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 2  23.224.21.56  0.34 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 3  *
 4  *
 5  *
 6  23.225.225.65  153.30 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 7  219.158.97.181  155.23 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.19.78  162.46 ms  AS4837  China, Shanghai, ChinaUnicom
 9  219.158.19.81  162.65 ms  AS4837  China, Shanghai, ChinaUnicom
10  219.158.6.254  159.81 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
11  219.158.106.2  163.64 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
12  202.97.17.169  166.03 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
13  *
14  183.56.34.30  156.45 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
15  116.21.84.1  157.88 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.183.63.121 (221.183.63.121), 30 hops max, 32 byte packets
 1  23.225.111.169  0.36 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 2  *
 3  192.168.101.201  0.34 ms  *  LAN Address
 4  *
 5  *
 6  23.225.225.65  155.89 ms  AS40065  United States, California, Los Angeles, ceranetworks.com
 7  219.158.97.177  183.11 ms  AS4837  China, Shanghai, ChinaUnicom
 8  219.158.6.205  177.76 ms  AS4837  China, Shanghai, ChinaUnicom
 9  219.158.7.133  174.19 ms  AS4837  China, Shanghai, ChinaUnicom
10  *
11  *
12  221.183.94.5  175.25 ms  AS9808  China, Shanghai, ChinaMobile
13  111.24.3.26  178.75 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
14  111.24.4.250  169.03 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
15  221.183.63.121  170.08 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;回程均为4837，延迟看起来比斯巴达低。不过不知道为什么4837回程电信比联通延迟还低。&lt;/p&gt;
</content:encoded></item><item><title>idc.wiki ipv6 only VPS测评</title><link>https://yushum.com/posts/idc-wiki-ipv6-only-vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/idc-wiki-ipv6-only-vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Fri, 24 Jun 2022 09:45:04 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;前些天&lt;a href=&quot;https://idc.wiki/lndex.php?productid=2208&quot;&gt;微基主机&lt;/a&gt;放出了迟到的6.18优惠，只有IPv6的香港VPS，售每年61.8元，测试如下。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-06-11                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Fri Jun 24 01:22:10 UTC 2022

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 50 minutes
Processor  : Intel(R) Xeon(R) CPU E5-2682 v4 @ 2.50GHz
CPU cores  : 1 @ 2494.224 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 978.8 MiB
Swap       : 0.0 KiB
Disk       : 49.2 GiB
Distro     : Debian GNU/Linux 11 (bullseye)
Kernel     : 5.10.0-15-cloud-amd64

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 141.57 MB/s  (35.3k) | 488.81 MB/s   (7.6k)
Write      | 141.94 MB/s  (35.4k) | 491.38 MB/s   (7.6k)
Total      | 283.51 MB/s  (70.8k) | 980.20 MB/s  (15.3k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 3.08 GB/s     (6.0k) | 5.59 GB/s     (5.4k)
Write      | 3.24 GB/s     (6.3k) | 5.96 GB/s     (5.8k)
Total      | 6.33 GB/s    (12.3k) | 11.55 GB/s   (11.2k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 397 Mbits/sec   | 387 Mbits/sec
Online.net      | Paris, FR (10G)           | busy            | 245 Mbits/sec
Hybula          | The Netherlands (40G)     | 375 Mbits/sec   | 370 Mbits/sec
Uztelecom       | Tashkent, UZ (10G)        | 463 Mbits/sec   | 426 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 356 Mbits/sec   | 332 Mbits/sec
Clouvider       | Dallas, TX, US (10G)      | 399 Mbits/sec   | 342 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 402 Mbits/sec   | 375 Mbits/sec

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 337 Mbits/sec   | 428 Mbits/sec
Online.net      | Paris, FR (10G)           | 330 Mbits/sec   | 419 Mbits/sec
Hybula          | The Netherlands (40G)     | 348 Mbits/sec   | 354 Mbits/sec
Uztelecom       | Tashkent, UZ (10G)        | 328 Mbits/sec   | 410 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 297 Mbits/sec   | 417 Mbits/sec
Clouvider       | Dallas, TX, US (10G)      | 330 Mbits/sec   | 423 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 357 Mbits/sec   | 442 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 759
Multi Core      | 758
Full Test       | https://browser.geekbench.com/v5/cpu/15632388
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-06-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) CPU E5-2682 v4 @ 2.50GHz
 CPU Cores          : 1 @ 2494.224 MHz
 CPU Cache          : 16384 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Enabled
 Total Disk         : 49.2 GB (912.0 MB Used)
 Total Mem          : 978.8 MB (93.5 MB Used)
 System uptime      : 0 days, 1 hour 1 min
 Load average       : 0.20, 0.37, 0.25
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-15-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 Organization       : AS13335 Cloudflare, Inc.
 Location           : Zhengzhou / CN
 Region             : Henan
----------------------------------------------------------------------
 I/O Speed(1st run) : 572 MB/s
 I/O Speed(2nd run) : 706 MB/s
 I/O Speed(3rd run) : 654 MB/s
 I/O Speed(average) : 644.0 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    468.11 Mbps       440.61 Mbps         203.57 ms
 Los Angeles, US  457.23 Mbps       444.45 Mbps         166.45 ms
 Dallas, US       442.95 Mbps       455.71 Mbps         195.56 ms
 Montreal, CA     398.91 Mbps       449.03 Mbps         215.43 ms
 Paris, FR        397.53 Mbps       499.08 Mbps         176.79 ms
 Amsterdam, NL    352.82 Mbps       448.50 Mbps         250.20 ms
 Shanghai, CN     373.13 Mbps       442.24 Mbps         331.04 ms
 Nanjing, CN      311.77 Mbps       444.91 Mbps         294.52 ms
 Hongkong, CN     466.46 Mbps       414.40 Mbps         4.08 ms
 Seoul, KR        445.64 Mbps       447.61 Mbps         58.92 ms
 Singapore, SG    461.41 Mbps       433.81 Mbps         39.33 ms
 Tokyo, JP        458.60 Mbps       436.62 Mbps         55.99 ms
----------------------------------------------------------------------
 Finished in        : 6 min 19 sec
 Timestamp          : 2022-06-24 01:39:33 UTC
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;性能不错，可能适合拿来建站？&lt;/p&gt;
</content:encoded></item><item><title>Easy One Cloud日本东京VPS测评</title><link>https://yushum.com/posts/easy-one-cloud%E6%97%A5%E6%9C%AC%E4%B8%9C%E4%BA%ACvps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/easy-one-cloud%E6%97%A5%E6%9C%AC%E4%B8%9C%E4%BA%ACvps%E6%B5%8B%E8%AF%84/</guid><pubDate>Wed, 13 Apr 2022 10:12:22 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;昨晚购入一台新商家的VPS，跑个测试看看。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-02-18                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Tue 12 Apr 2022 09:29:44 PM EDT

Basic System Information:
---------------------------------
Processor  : Intel(R) Xeon(R) CPU E5-2678 v3 @ 2.50GHz
CPU cores  : 1 @ 2499.996 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 483.3 MiB
Swap       : 1023.0 MiB
Disk       : 8.8 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 189.04 MB/s  (47.2k) | 2.50 GB/s    (39.1k)
Write      | 189.54 MB/s  (47.3k) | 2.52 GB/s    (39.3k)
Total      | 378.58 MB/s  (94.6k) | 5.02 GB/s    (78.5k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 5.05 GB/s     (9.8k) | 5.15 GB/s     (5.0k)
Write      | 5.32 GB/s    (10.4k) | 5.49 GB/s     (5.3k)
Total      | 10.38 GB/s   (20.2k) | 10.64 GB/s   (10.3k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 122 Mbits/sec   | 125 Mbits/sec
Online.net      | Paris, FR (10G)           | 103 Mbits/sec   | 151 Mbits/sec
WorldStream     | The Netherlands (10G)     | busy            | 191 Mbits/sec
WebHorizon      | Singapore (400M)          | 271 Mbits/sec   | 160 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 144 Mbits/sec   | 108 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 29.4 Mbits/sec  | 141 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 205 Mbits/sec   | 108 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | busy            | busy

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 725
Multi Core      | 697
Full Test       | https://browser.geekbench.com/v5/cpu/14280562
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-02-22
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) CPU E5-2678 v3 @ 2.50GHz
 CPU Cores          : 1 @ 2499.996 MHz
 CPU Cache          : 30720 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Disabled
 Total Disk         : 8.8 GB (1.0 GB Used)
 Total Mem          : 483.3 MB (35.5 MB Used)
 Total Swap         : 1023.0 MB (24.8 MB Used)
 System uptime      : 0 days, 8 hour 2 min
 Load average       : 0.01, 0.17, 0.12
 OS                 : Debian GNU/Linux 10
 Arch               : x86_64 (64 Bit)
 Kernel             : 4.19.0-5-amd64
 TCP CC             : cubic
 Virtualization     : KVM
 Organization       : AS48024 NEROCLOUD LTD
 Location           : Tokyo / JP
 Region             : Tokyo
----------------------------------------------------------------------
 I/O Speed(1st run) : 468 MB/s
 I/O Speed(2nd run) : 571 MB/s
 I/O Speed(3rd run) : 568 MB/s
 I/O Speed(average) : 535.7 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    286.29 Mbps       286.88 Mbps         0.29 ms
 Los Angeles, US  141.06 Mbps       288.12 Mbps         107.32 ms
 Dallas, US       122.65 Mbps       287.05 Mbps         141.27 ms
 Montreal, CA     113.03 Mbps       284.95 Mbps         173.34 ms
 Paris, FR        89.59 Mbps        288.40 Mbps         232.52 ms
 Amsterdam, NL    108.20 Mbps       273.12 Mbps         234.29 ms
 Shanghai, CN     105.52 Mbps       299.18 Mbps         138.12 ms
 Guangzhou, CN    19.03 Mbps        165.86 Mbps         157.63 ms
 Hongkong, CN     172.47 Mbps       295.81 Mbps         74.05 ms
 Seoul, KR        290.18 Mbps       286.52 Mbps         34.64 ms
----------------------------------------------------------------------
 Finished in        : 5 min 12 sec
 Timestamp          : 2022-04-12 21:46:44 EDT
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Tue 12 Apr 2022 09:50:35 PM EDT

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Nerocloud Ltd (213.173.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               No
 Netflix:                               Originals Only
 YouTube Premium:                       Yes (Region: JP)
 Amazon Prime Video:                    Yes (Region: JP)
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   JP
 Viu.com:                               No
 YouTube CDN:                           Tokyo
 Netflix Preferred CDN:                 Tokyo
 Steam Currency:                        JPY
=======================================
===============[ Japan ]===============
 DMM:                                   Yes
 Abema.TV:                              No
 Niconico:                              No
 Telasa:                                No
 Paravi:                                No
 U-NEXT:                                Yes
 Hulu Japan:                            No
 TVer:                                  Yes
 WOWOW:                                 Yes
 FOD(Fuji TV):                          Yes
 Radiko:                                Yes (City: TOKYO)
 Karaoke@DAM:                           Yes
 ---Game---
 Kancolle Japan:                        Yes
 Pretty Derby Japan:                    No
 Konosuba Fantastic Days:               Yes
 Princess Connect Re:Dive Japan:        Yes
 World Flipper Japan:                   Yes
 Project Sekai: Colorful Stage:         No
=======================================
当前主机不支持IPv6,跳过...

本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/04/13/1a148f710b742.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/04/13/b90cce0a3b3ed.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/04/13/d1c8938bbea71.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/04/13/31cc0ba54c147.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 61.49.137.5 (61.49.137.5), 30 hops max, 32 byte packets
 1  gw-213-173-34-1.nerocloud.io (213.173.34.1)  1.33 ms  AS48024  Japan, Tokyo, parsun.com
 2  lag-0.vlan1900.Equinix.tyo08.jp.nerocloud.io (103.49.130.100)  0.80 ms  *  Japan, Tokyo, jazzvps.com
 3  *
 4  ae-22.a01.tokyjp09.jp.bb.gin.ntt.net (61.200.82.185)  2.86 ms  AS2914  Japan, Tokyo, ntt.com
 5  ae-1.r30.tokyjp05.jp.bb.gin.ntt.net (129.250.7.55)  1.04 ms  AS2914  Japan, Tokyo, ntt.com
 6  ae-3.r26.osakjp02.jp.bb.gin.ntt.net (129.250.7.79)  8.88 ms  AS2914  Japan, Osaka, ntt.com
 7  ae-1.r03.osakjp02.jp.bb.gin.ntt.net (129.250.7.31)  8.48 ms  AS2914  Japan, Osaka, ntt.com
 8  219.158.32.33  85.54 ms  AS4837  China, Beijing, ChinaUnicom
 9  219.158.9.238  58.28 ms  AS4837  China, Beijing, ChinaUnicom
10  *
11  125.33.186.106  92.21 ms  AS4808  China, Beijing, ChinaUnicom
12  61.49.137.5  55.74 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 180.149.128.9 (180.149.128.9), 30 hops max, 32 byte packets
 1  gw-213-173-34-1.nerocloud.io (213.173.34.1)  1.87 ms  AS48024  Japan, Tokyo, parsun.com
 2  lag-0.vlan1900.Equinix.tyo08.jp.nerocloud.io (103.49.130.100)  1.72 ms  *  Japan, Tokyo, jazzvps.com
 3  *
 4  ae-22.a01.tokyjp09.jp.bb.gin.ntt.net (61.200.82.185)  2.15 ms  AS2914  Japan, Tokyo, ntt.com
 5  ae-1.r30.tokyjp05.jp.bb.gin.ntt.net (129.250.7.55)  2.62 ms  AS2914  Japan, Tokyo, ntt.com
 6  ae-2.r02.tokyjp05.jp.bb.gin.ntt.net (129.250.3.22)  1.47 ms  AS2914  Japan, Tokyo, ntt.com
 7  202.97.94.13  94.36 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
 8  *
 9  202.97.12.109  104.57 ms  AS4134  China, Beijing, ChinaTelecom
10  *
11  *
12  36.110.246.198  121.16 ms  AS23724  China, Beijing, ChinaTelecom
13  180.149.128.9  124.45 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
 1  gw-213-173-34-1.nerocloud.io (213.173.34.1)  4.14 ms  AS48024  Japan, Tokyo, parsun.com
 2  lag-0.vlan1900.Equinix.tyo08.jp.nerocloud.io (103.49.130.100)  0.53 ms  *  Japan, Tokyo, jazzvps.com
 3  *
 4  *
 5  *
 6  *
 7  223.120.22.33  53.94 ms  AS58453  China, Beijing, ChinaMobile
 8  221.183.55.110  73.13 ms  AS9808  China, Beijing, ChinaMobile
 9  221.183.52.2  56.11 ms  AS9808  China, Beijing, ChinaMobile
10  221.176.21.189  57.89 ms  AS9808  China, Beijing, ChinaMobile
11  111.24.2.249  57.37 ms  AS9808  China, Beijing, ChinaMobile
12  111.24.14.54  59.23 ms  AS9808  China, Beijing, ChinaMobile
13  211.136.66.125  56.63 ms  AS56048  China, Beijing, ChinaMobile
14  211.136.63.66  61.89 ms  AS56048  China, Beijing, ChinaMobile
15  211.136.95.226  59.21 ms  AS56048  China, Beijing, ChinaMobile
16  *
17  *
18  211.136.25.153  59.62 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 112.65.35.62 (112.65.35.62), 30 hops max, 32 byte packets
 1  gw-213-173-34-1.nerocloud.io (213.173.34.1)  2.88 ms  AS48024  Japan, Tokyo, parsun.com
 2  lag-0.vlan1900.Equinix.tyo08.jp.nerocloud.io (103.49.130.100)  0.50 ms  *  Japan, Tokyo, jazzvps.com
 3  *
 4  vl1109.lax-cs2-core-2.cdn77.com (185.156.45.18)  98.87 ms  *  United States, California, Los Angeles, datacamp.co.uk
 5  *
 6  be3360.ccr42.lax01.atlas.cogentco.com (154.54.25.149)  99.33 ms  AS174  United States, California, Los Angeles, cogentco.com
 7  be3177.ccr22.sjc01.atlas.cogentco.com (154.54.40.146)  109.47 ms  AS174  United States, California, San Jose, cogentco.com
 8  be3144.ccr41.sjc03.atlas.cogentco.com (154.54.5.102)  118.25 ms  AS174  United States, California, San Jose, cogentco.com
 9  38.142.244.250  133.38 ms  AS174  United States, California, San Jose, cogentco.com
10  219.158.6.5  142.68 ms  AS4837  China, Shanghai, ChinaUnicom
11  219.158.6.185  143.27 ms  AS4837  China, Shanghai, ChinaUnicom
12  *
13  *
14  139.226.203.18  140.42 ms  AS17621  China, Shanghai, ChinaUnicom
15  112.65.207.34  147.50 ms  AS17621  China, Shanghai, ChinaUnicom
16  112.65.35.62  138.23 ms  AS17621  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 180.153.28.5 (180.153.28.5), 30 hops max, 32 byte packets
 1  gw-213-173-34-1.nerocloud.io (213.173.34.1)  2.36 ms  AS48024  Japan, Tokyo, parsun.com
 2  lag-0.vlan1900.Equinix.tyo08.jp.nerocloud.io (103.49.130.100)  6.18 ms  *  Japan, Tokyo, jazzvps.com
 3  *
 4  vl1109.lax-cs2-core-1.cdn77.com (185.156.45.17)  98.77 ms  *  United States, California, Los Angeles, datacamp.co.uk
 5  38.142.33.185  99.82 ms  AS174  United States, California, Los Angeles, cogentco.com
 6  be3360.ccr42.lax01.atlas.cogentco.com (154.54.25.149)  99.38 ms  AS174  United States, California, Los Angeles, cogentco.com
 7  be3177.ccr22.sjc01.atlas.cogentco.com (154.54.40.146)  111.41 ms  AS174  United States, California, San Jose, cogentco.com
 8  be3144.ccr41.sjc03.atlas.cogentco.com (154.54.5.102)  109.08 ms  AS174  United States, California, San Jose, cogentco.com
 9  38.104.138.106  175.33 ms  AS174  United States, California, San Jose, cogentco.com
10  202.97.6.1  142.41 ms  AS4134  China, Shanghai, ChinaTelecom
11  202.97.12.185  143.76 ms  AS4134  China, Shanghai, ChinaTelecom
12  *
13  101.95.120.117  158.59 ms  AS4812  China, Shanghai, ChinaTelecom
14  124.74.166.218  159.98 ms  AS4812  China, Shanghai, ChinaTelecom
15  101.95.225.158  160.82 ms  AS4811  China, Shanghai, ChinaTelecom
16  101.227.255.34  159.22 ms  AS4812  China, Shanghai, ChinaTelecom
17  180.153.28.5  158.31 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 36.134.117.147 (36.134.117.147), 30 hops max, 32 byte packets
 1  gw-213-173-34-1.nerocloud.io (213.173.34.1)  3.16 ms  AS48024  Japan, Tokyo, parsun.com
 2  lag-0.vlan1900.Equinix.tyo08.jp.nerocloud.io (103.49.130.100)  15.17 ms  *  Japan, Tokyo, jazzvps.com
 3  *
 4  *
 5  *
 6  *
 7  223.120.2.162  55.14 ms  AS58453  China, Shanghai, ChinaMobile
 8  221.183.55.34  55.00 ms  AS9808  China, Shanghai, ChinaMobile
 9  221.183.25.193  54.98 ms  AS9808  China, Shanghai, ChinaMobile
10  221.176.22.33  55.90 ms  AS9808  China, Shanghai, ChinaMobile
11  111.24.3.89  57.36 ms  AS9808  China, Shanghai, ChinaMobile
12  *
13  117.135.18.214  57.12 ms  AS24400  China, Shanghai, ChinaMobile
14  183.194.197.94  58.96 ms  AS9808  China, Shanghai, ChinaMobile
15  *
16  *
17  *
18  36.134.117.147  58.92 ms  AS9808  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;9929&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 32 byte packets
 1  gw-213-173-34-1.nerocloud.io (213.173.34.1)  1.76 ms  AS48024  Japan, Tokyo, parsun.com
 2  lag-0.vlan1900.Equinix.tyo08.jp.nerocloud.io (103.49.130.100)  0.64 ms  *  Japan, Tokyo, jazzvps.com
 3  *
 4  ae-14.a01.tokyjp09.jp.bb.gin.ntt.net (117.103.177.145)  7.86 ms  AS2914  Japan, Tokyo, ntt.com
 5  ae-2.r31.tokyjp05.jp.bb.gin.ntt.net (129.250.7.63)  0.90 ms  AS2914  Japan, Tokyo, ntt.com
 6  ae-3.r02.tokyjp05.jp.bb.gin.ntt.net (129.250.3.28)  1.39 ms  AS2914  Japan, Tokyo, ntt.com
 7  xe-0.cnc-h.tokyjp05.jp.bb.gin.ntt.net (129.250.8.54)  36.04 ms  AS2914  Japan, Tokyo, ntt.com
 8  218.105.2.205  34.16 ms  AS9929  China, Shanghai, ChinaUnicom
 9  218.105.2.210  34.47 ms  AS9929  China, Shanghai, ChinaUnicom
10  210.13.116.86  42.24 ms  AS9929  China, Shanghai, ChinaUnicom
11  *
12  210.13.64.110  37.74 ms  AS9929  China, Shanghai, ChinaUnicom
13  210.13.66.237  39.26 ms  AS9929  China, Shanghai, ChinaUnicom
14  210.13.66.238  41.29 ms  AS9929  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 32 byte packets
 1  gw-213-173-34-1.nerocloud.io (213.173.34.1)  5.50 ms  AS48024  Japan, Tokyo, parsun.com
 2  lag-0.vlan1900.Equinix.tyo08.jp.nerocloud.io (103.49.130.100)  0.29 ms  *  Japan, Tokyo, jazzvps.com
 3  *
 4  *
 5  *
 6  softbank221110131230.bbtec.net (221.110.131.230)  2.03 ms  AS17676  Japan, Tokyo, bbtec.net
 7  HundredGE0-5-0-0.br03.hkg15.pccwbtn.net (63.223.17.162)  49.75 ms  AS3491,AS31713  China, Hong Kong, pccw.com
 8  HundredGE0-5-0-0.br03.hkg15.pccwbtn.net (63.223.17.162)  49.99 ms  AS3491,AS31713  China, Hong Kong, pccw.com
 9  ct.te0-2-1-16.Br04.hkg15.pccwbtn.net (63.218.211.66)  83.62 ms  AS3491,AS31713  China, Hong Kong, pccw.com
10  59.43.183.77  107.06 ms  *  China, Shanghai, ChinaTelecom
11  *
12  59.43.138.69  109.48 ms  *  China, Shanghai, ChinaTelecom
13  61.152.24.210  56.68 ms  AS4812  China, Shanghai, ChinaTelecom
14  58.32.0.1  113.39 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  gw-213-173-34-1.nerocloud.io (213.173.34.1)  2.79 ms  AS48024  Japan, Tokyo, parsun.com
 2  lag-0.vlan1900.Equinix.tyo08.jp.nerocloud.io (103.49.130.100)  0.23 ms  *  Japan, Tokyo, jazzvps.com
 3  *
 4  ix-ae-14-0.tcore1.tv2-tokyo.as6453.net (180.87.181.81)  0.95 ms  AS6453  Japan, Tokyo, tatacommunications.com
 5  if-et-24-2.hcore2.kv8-chiba.as6453.net (180.87.181.73)  3.33 ms  AS6453  Japan, Chiba, tatacommunications.com
 6  if-ae-53-6.tcore2.lvw-losangeles.as6453.net (64.86.252.60)  105.18 ms  AS6453  United States, California, Los Angeles, tatacommunications.com
 7  if-ae-2-2.tcore1.lvw-losangeles.as6453.net (66.110.59.1)  104.92 ms  AS6453  United States, California, Los Angeles, tatacommunications.com
 8  219.158.40.189  177.23 ms  AS4837  United States, California, Los Angeles, ChinaUnicom
 9  219.158.98.17  175.36 ms  AS4837  China, Beijing, ChinaUnicom
10  219.158.111.134  177.31 ms  AS4837  China, Shanghai, ChinaUnicom
11  219.158.8.177  180.30 ms  AS4837  China, Shanghai, ChinaUnicom
12  219.158.7.133  176.81 ms  AS4837  China, Shanghai, ChinaUnicom
13  219.158.6.246  209.31 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
14  112.89.0.58  207.29 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
15  120.80.79.186  202.53 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
16  gz1-dns.gdgz.cncnet.net (210.21.4.130)  201.58 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
 1  gw-213-173-34-1.nerocloud.io (213.173.34.1)  2.23 ms  AS48024  Japan, Tokyo, parsun.com
 2  lag-0.vlan1900.Equinix.tyo08.jp.nerocloud.io (103.49.130.100)  0.33 ms  *  Japan, Tokyo, jazzvps.com
 3  *
 4  vl1109.lax-cs2-core-1.cdn77.com (185.156.45.17)  98.85 ms  *  United States, California, Los Angeles, datacamp.co.uk
 5  ix-et-1-1-5-0.tcore2.lvw-losangeles.as6453.net (64.86.252.169)  99.19 ms  AS6453  United States, California, Los Angeles, tatacommunications.com
 6  64.86.252.63  134.36 ms  AS6453  United States, California, Los Angeles, tatacommunications.com
 7  202.97.83.221  172.12 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
 8  *
 9  202.97.82.21  157.91 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
10  113.108.209.1  164.49 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.183.63.121 (221.183.63.121), 30 hops max, 32 byte packets
 1  gw-213-173-34-1.nerocloud.io (213.173.34.1)  30.07 ms  AS48024  Japan, Tokyo, parsun.com
 2  lag-0.vlan1900.Equinix.tyo08.jp.nerocloud.io (103.49.130.100)  6.78 ms  *  Japan, Tokyo, jazzvps.com
 3  *
 4  *
 5  *
 6  *
 7  223.118.2.237  1.87 ms  AS58453  Japan, Tokyo, ChinaMobile
 8  223.120.2.10  59.42 ms  AS58453  China, Guangdong, Guangzhou, ChinaMobile
 9  221.183.55.74  62.23 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
10  221.176.24.61  66.82 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
11  221.176.24.181  65.74 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
12  221.183.63.121  68.23 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;平平无奇。&lt;/p&gt;
</content:encoded></item><item><title>VirMach东京8.88刀/年VPS测评</title><link>https://yushum.com/posts/virmach%E4%B8%9C%E4%BA%AC8-88%E5%88%80-%E5%B9%B4vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/virmach%E4%B8%9C%E4%BA%AC8-88%E5%88%80-%E5%B9%B4vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Fri, 08 Apr 2022 19:14:00 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;这家老板出了名的耍猴，正规用途千万不要买，实在手痒再买来当玩具。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-02-18                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Fri 08 Apr 2022 07:37:19 PM JST

Basic System Information:
---------------------------------
Processor  : AMD Ryzen 9 5900X 12-Core Processor
CPU cores  : 1 @ 3692.988 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 349.6 MiB
Swap       : 473.0 MiB
Disk       : 9.3 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 273.95 MB/s  (68.4k) | 897.31 MB/s  (14.0k)
Write      | 274.67 MB/s  (68.6k) | 902.04 MB/s  (14.0k)
Total      | 548.63 MB/s (137.1k) | 1.79 GB/s    (28.1k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 1.02 GB/s     (2.0k) | 993.42 MB/s    (970)
Write      | 1.08 GB/s     (2.1k) | 1.05 GB/s     (1.0k)
Total      | 2.10 GB/s     (4.1k) | 2.05 GB/s     (2.0k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 359 Mbits/sec   | 246 Mbits/sec
Online.net      | Paris, FR (10G)           | 314 Mbits/sec   | 239 Mbits/sec
WorldStream     | The Netherlands (10G)     | 321 Mbits/sec   | 264 Mbits/sec
WebHorizon      | Singapore (400M)          | 684 Mbits/sec   | 271 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 354 Mbits/sec   | 262 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 507 Mbits/sec   | 335 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 523 Mbits/sec   | 344 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 285 Mbits/sec   | 196 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 1055
Multi Core      | 947
Full Test       | https://browser.geekbench.com/v5/cpu/14178888
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-02-22
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : AMD Ryzen 9 5900X 12-Core Processor
 CPU Cores          : 1 @ 3692.988 MHz
 CPU Cache          : 512 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Enabled
 Total Disk         : 9.3 GB (2.2 GB Used)
 Total Mem          : 349.6 MB (46.1 MB Used)
 Total Swap         : 2.0 GB (18.6 MB Used)
 System uptime      : 0 days, 0 hour 25 min
 Load average       : 0.10, 0.20, 0.10
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-13-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 Organization       : AS23959 Owl Limited
 Location           : Tokyo / JP
 Region             : Tokyo
----------------------------------------------------------------------
 I/O Speed(1st run) : 1.1 GB/s
 I/O Speed(2nd run) : 1.2 GB/s
 I/O Speed(3rd run) : 1.2 GB/s
 I/O Speed(average) : 1194.7 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    720.72 Mbps       161.88 Mbps         1.69 ms
 Los Angeles, US  503.84 Mbps       544.48 Mbps         109.39 ms
 Dallas, US       306.05 Mbps       551.08 Mbps         137.30 ms
 Montreal, CA     303.88 Mbps       502.76 Mbps         176.29 ms
 Paris, FR        198.95 Mbps       467.01 Mbps         237.66 ms
 Amsterdam, NL    185.37 Mbps       418.36 Mbps         249.95 ms
 Shanghai, CN     257.53 Mbps       4.62 Mbps           167.36 ms
 Nanjing, CN      742.77 Mbps       363.19 Mbps         33.17 ms
 Guangzhou, CN    355.94 Mbps       76.99 Mbps          54.56 ms
 Hongkong, CN     372.75 Mbps       506.25 Mbps         99.65 ms
 Seoul, KR        591.15 Mbps       169.73 Mbps         79.15 ms
----------------------------------------------------------------------
 Finished in        : 5 min 45 sec
 Timestamp          : 2022-04-08 19:54:21 JST
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Fri 08 Apr 2022 07:55:05 PM JST

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Owl Limited (45.66.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               Yes (Region: JP)
 Netflix:                               Originals Only
 YouTube Premium:                       No
 Amazon Prime Video:                    Yes (Region: JP)
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   JP
 Viu.com:                               No
 YouTube CDN:                           Tokyo
 Netflix Preferred CDN:                 Tokyo
 Steam Currency:                        JPY
=======================================
===============[ Japan ]===============
 DMM:                                   Yes
 Abema.TV:                              No
 Niconico:                              No
 Telasa:                                Yes
 Paravi:                                No
 U-NEXT:                                Yes
 Hulu Japan:                            No
 TVer:                                  Yes
 WOWOW:                                 No
 FOD(Fuji TV):                          No
 Radiko:                                No
 Karaoke@DAM:                           No
 ---Game---
 Kancolle Japan:                        No
 Pretty Derby Japan:                    Yes
 Konosuba Fantastic Days:               No
 Princess Connect Re:Dive Japan:        Yes
 World Flipper Japan:                   Yes
 Project Sekai: Colorful Stage:         No
=======================================
当前主机不支持IPv6,跳过...

本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/04/08/cb6aef8b475a5.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/04/08/6f64bac9062f1.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/04/08/701e6609cbafb.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/04/08/9b9e515905e3f.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 32 byte packets
 1  45.66.128.1.static.xtom.com (45.66.128.1)  1.22 ms  AS23959  Japan, Tokyo, xtom.com
 2  45.149.159.1  16.11 ms  AS23959  Japan, Tokyo, xtom.com
 3  AS23959.xe-0-1-6.tedge0503.newote.bbtower.ad.jp (211.14.4.177)  0.40 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 4  xe-0-1-6.tedge0503.newote.bbtower.ad.jp (211.14.4.178)  0.72 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 5  et-100-0-18.core0501.newote.bbtower.ad.jp (124.147.3.69)  1.18 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 6  172.25.0.9  1.41 ms  *  LAN Address
 7  *
 8  *
 9  CHINA-UNICO.ear1.LosAngeles6.Level3.net (4.26.2.118)  176.99 ms  AS3356  United States, California, Los Angeles, level3.com
10  *
11  219.158.9.238  180.83 ms  AS4837  China, Beijing, ChinaUnicom
12  *
13  61.49.214.30  167.23 ms  AS4808  China, Beijing, ChinaUnicom
14  61.51.169.178  165.28 ms  AS4808  China, Beijing, ChinaUnicom
15  61.148.158.102  164.82 ms  AS4808  China, Beijing, ChinaUnicom
16  61.135.113.158  170.83 ms  AS4808  China, Beijing, ChinaUnicom
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 180.149.128.9 (180.149.128.9), 30 hops max, 32 byte packets
 1  45.66.128.1.static.xtom.com (45.66.128.1)  1.23 ms  AS23959  Japan, Tokyo, xtom.com
 2  45.149.159.1  113.37 ms  AS23959  Japan, Tokyo, xtom.com
 3  AS23959.xe-0-1-6.tedge0503.newote.bbtower.ad.jp (211.14.4.177)  0.65 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 4  xe-0-1-6.tedge0503.newote.bbtower.ad.jp (211.14.4.178)  0.93 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 5  et-100-0-18.core0501.newote.bbtower.ad.jp (124.147.3.69)  0.99 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 6  vlan103.xborder0501.newote.bbtower.ad.jp (124.147.2.1)  4.02 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 7  210.138.130.225  0.94 ms  AS2497  Japan, Tokyo, iij.ad.jp
 8  tky009bb00.IIJ.Net (58.138.98.73)  18.00 ms  AS2497  Japan, Tokyo, iij.ad.jp
 9  tky009ix03.IIJ.Net (58.138.112.138)  1.71 ms  AS2497  Japan, Tokyo, iij.ad.jp
10  203.215.237.13  2.03 ms  *  Japan, Tokyo, ChinaTelecom
11  202.97.43.133  30.72 ms  AS4134  China, Shanghai, ChinaTelecom
12  202.97.12.209  47.93 ms  AS4134  China, Shanghai, ChinaTelecom
13  202.97.24.229  31.95 ms  AS4134  China, Shanghai, ChinaTelecom
14  *
15  *
16  36.110.251.57  56.10 ms  AS23724  China, Beijing, ChinaTelecom
17  180.149.128.9  56.49 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
 1  45.66.128.1.static.xtom.com (45.66.128.1)  2.06 ms  AS23959  Japan, Tokyo, xtom.com
 2  45.149.159.1  15.00 ms  AS23959  Japan, Tokyo, xtom.com
 3  AS23959.xe-0-1-6.tedge0503.newote.bbtower.ad.jp (211.14.4.177)  0.40 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 4  xe-0-1-6.tedge0503.newote.bbtower.ad.jp (211.14.4.178)  16.36 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 5  et-100-0-18.core0501.newote.bbtower.ad.jp (124.147.3.69)  0.38 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 6  172.25.0.1  0.59 ms  *  LAN Address
 7  unknown.telstraglobal.net (202.127.69.134)  2.76 ms  AS4637  Japan, Tokyo, telstra.com
 8  134.159.125.201  2.20 ms  AS4637  Japan, Tokyo, telstra.com
 9  223.120.22.33  75.35 ms  AS58453  China, Beijing, ChinaMobile
10  221.183.55.106  73.30 ms  AS9808  China, Beijing, ChinaMobile
11  221.183.46.250  71.78 ms  AS9808  China, Beijing, ChinaMobile
12  221.176.21.185  74.75 ms  AS9808  China, Beijing, ChinaMobile
13  111.24.2.245  74.96 ms  AS9808  China, Beijing, ChinaMobile
14  111.24.3.18  75.57 ms  AS9808  China, Beijing, ChinaMobile
15  211.136.67.113  82.43 ms  AS56048  China, Beijing, ChinaMobile
16  211.136.66.125  76.71 ms  AS56048  China, Beijing, ChinaMobile
17  211.136.63.66  86.90 ms  AS56048  China, Beijing, ChinaMobile
18  211.136.95.226  76.13 ms  AS56048  China, Beijing, ChinaMobile
19  *
20  *
21  211.136.25.153  78.45 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 58.247.8.158 (58.247.8.158), 30 hops max, 32 byte packets
 1  45.66.128.1.static.xtom.com (45.66.128.1)  2.66 ms  AS23959  Japan, Tokyo, xtom.com
 2  *
 3  AS23959.xe-0-1-6.tedge0503.newote.bbtower.ad.jp (211.14.4.177)  0.45 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 4  xe-0-1-6.tedge0503.newote.bbtower.ad.jp (211.14.4.178)  1.92 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 5  et-100-0-18.core0501.newote.bbtower.ad.jp (124.147.3.69)  0.74 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 6  172.25.0.9  0.99 ms  *  LAN Address
 7  *
 8  4.69.209.169  101.60 ms  AS3356  United States, California, San Jose, level3.com
 9  CHINA-NETCO.edge1.SanJose3.Level3.net (4.53.208.102)  169.54 ms  AS3356  United States, California, San Jose, level3.com
10  219.158.97.177  180.19 ms  AS4837  China, Shanghai, ChinaUnicom
11  219.158.113.126  182.47 ms  AS4837  China, Shanghai, ChinaUnicom
12  *
13  *
14  139.226.228.46  180.32 ms  AS17621  China, Shanghai, ChinaUnicom
15  139.226.225.22  195.75 ms  AS17621  China, Shanghai, ChinaUnicom
16  58.247.8.153  185.57 ms  AS17621  China, Shanghai, ChinaUnicom
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 180.153.28.5 (180.153.28.5), 30 hops max, 32 byte packets
 1  45.66.128.1.static.xtom.com (45.66.128.1)  3.76 ms  AS23959  Japan, Tokyo, xtom.com
 2  45.149.159.1  11.82 ms  AS23959  Japan, Tokyo, xtom.com
 3  AS23959.xe-0-1-6.tedge0503.newote.bbtower.ad.jp (211.14.4.177)  28.30 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 4  xe-0-1-2.tedge0504.newote.bbtower.ad.jp (211.14.4.222)  8.41 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 5  et-100-0-19.core0501.newote.bbtower.ad.jp (124.147.3.77)  1.15 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 6  vlan103.xborder0501.newote.bbtower.ad.jp (124.147.2.1)  17.87 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 7  210.138.130.225  20.54 ms  AS2497  Japan, Tokyo, iij.ad.jp
 8  tky009bb00.IIJ.Net (58.138.98.73)  10.11 ms  AS2497  Japan, Tokyo, iij.ad.jp
 9  tky009ix03.IIJ.Net (58.138.112.138)  1.49 ms  AS2497  Japan, Tokyo, iij.ad.jp
10  203.215.237.13  3.48 ms  *  Japan, Tokyo, ChinaTelecom
11  *
12  202.97.12.185  38.54 ms  AS4134  China, Shanghai, ChinaTelecom
13  *
14  101.95.120.121  69.89 ms  AS4812  China, Shanghai, ChinaTelecom
15  *
16  101.95.225.34  73.73 ms  AS4811  China, Shanghai, ChinaTelecom
17  101.227.255.34  71.02 ms  AS4812  China, Shanghai, ChinaTelecom
18  180.153.28.5  56.45 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 32 byte packets
 1  45.66.128.1.static.xtom.com (45.66.128.1)  1.17 ms  AS23959  Japan, Tokyo, xtom.com
 2  45.149.159.1  13.31 ms  AS23959  Japan, Tokyo, xtom.com
 3  AS23959.xe-0-1-6.tedge0503.newote.bbtower.ad.jp (211.14.4.177)  19.63 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 4  xe-0-1-2.tedge0504.newote.bbtower.ad.jp (211.14.4.222)  1.25 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 5  et-100-0-19.core0501.newote.bbtower.ad.jp (124.147.3.77)  0.50 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 6  172.25.0.1  0.63 ms  *  LAN Address
 7  unknown.telstraglobal.net (202.127.69.134)  1.48 ms  AS4637  Japan, Tokyo, telstra.com
 8  134.159.125.201  2.03 ms  AS4637  Japan, Tokyo, telstra.com
 9  223.118.4.114  1.87 ms  AS58453  Japan, Tokyo, ChinaMobile
10  223.120.2.193  2.48 ms  AS58453  Japan, Tokyo, ChinaMobile
11  223.120.2.162  88.98 ms  AS58453  China, Shanghai, ChinaMobile
12  221.183.55.22  55.95 ms  AS9808  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  45.66.128.1.static.xtom.com (45.66.128.1)  1.23 ms  AS23959  Japan, Tokyo, xtom.com
 2  45.149.159.1  19.93 ms  AS23959  Japan, Tokyo, xtom.com
 3  AS23959.xe-0-1-6.tedge0503.newote.bbtower.ad.jp (211.14.4.177)  25.24 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 4  xe-0-1-2.tedge0504.newote.bbtower.ad.jp (211.14.4.222)  0.62 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 5  et-100-0-19.core0501.newote.bbtower.ad.jp (124.147.3.77)  0.69 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 6  172.25.0.9  0.77 ms  *  LAN Address
 7  *
 8  ae4.31.edge1.LosAngeles6.level3.net (4.69.153.129)  117.20 ms  AS3356  United States, California, Los Angeles, level3.com
 9  CHINA-UNICO.edge1.LosAngeles6.Level3.net (4.26.1.134)  195.55 ms  AS3356  United States, California, Los Angeles, level3.com
10  219.158.96.29  200.12 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
11  219.158.24.133  201.13 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
12  219.158.8.113  196.15 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
13  120.83.0.234  194.47 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
14  120.80.170.250  184.73 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
15  gz1-dns.gdgz.cncnet.net (210.21.4.130)  196.49 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
 1  45.66.128.1.static.xtom.com (45.66.128.1)  1.77 ms  AS23959  Japan, Tokyo, xtom.com
 2  45.149.159.1  16.74 ms  AS23959  Japan, Tokyo, xtom.com
 3  AS23959.xe-0-1-6.tedge0503.newote.bbtower.ad.jp (211.14.4.177)  0.46 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 4  xe-0-1-6.tedge0503.newote.bbtower.ad.jp (211.14.4.178)  0.82 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 5  et-100-0-18.core0501.newote.bbtower.ad.jp (124.147.3.69)  0.78 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 6  vlan103.xborder0501.newote.bbtower.ad.jp (124.147.2.1)  0.77 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 7  210.138.130.225  3.56 ms  AS2497  Japan, Tokyo, iij.ad.jp
 8  tky009bb00.IIJ.Net (58.138.98.73)  24.71 ms  AS2497  Japan, Tokyo, iij.ad.jp
 9  tky009ix03.IIJ.Net (58.138.112.50)  1.37 ms  AS2497  Japan, Tokyo, iij.ad.jp
10  203.215.237.13  9.46 ms  *  Japan, Tokyo, ChinaTelecom
11  202.97.43.5  53.07 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
12  202.97.91.138  57.66 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
13  202.97.91.129  54.49 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
14  *
15  113.108.209.1  79.44 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 120.196.212.25 (120.196.212.25), 30 hops max, 32 byte packets
 1  45.66.128.1.static.xtom.com (45.66.128.1)  5.17 ms  AS23959  Japan, Tokyo, xtom.com
 2  45.149.159.1  18.21 ms  AS23959  Japan, Tokyo, xtom.com
 3  AS23959.xe-0-1-6.tedge0503.newote.bbtower.ad.jp (211.14.4.177)  7.51 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 4  xe-0-1-2.tedge0504.newote.bbtower.ad.jp (211.14.4.222)  1.14 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 5  et-100-0-19.core0501.newote.bbtower.ad.jp (124.147.3.77)  7.91 ms  AS9607  Japan, Tokyo, bbtower.co.jp
 6  172.25.0.9  8.58 ms  *  LAN Address
 7  *
 8  4.69.218.126  6.29 ms  AS3356  Japan, Tokyo, level3.com
 9  4.68.38.226  11.71 ms  AS3356  Japan, Tokyo, level3.com
10  223.120.2.189  7.86 ms  AS58453  Japan, Tokyo, ChinaMobile
11  223.120.3.169  73.43 ms  AS58453  China, Hong Kong, ChinaMobile
12  223.120.2.14  59.25 ms  AS58453  China, Guangdong, Guangzhou, ChinaMobile
13  221.183.55.70  62.65 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
14  221.176.24.57  81.81 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
15  221.176.24.101  69.67 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
16  *
17  *
18  211.136.203.18  70.71 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
19  211.136.196.214  78.48 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
20  211.139.180.106  75.07 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;目前网络和硬盘还可以，不过由于预售还有很多没开完，且VirMach的作风一向不正，应该还是小丑一个。&lt;/p&gt;
</content:encoded></item><item><title>2CY西雅图再次测评</title><link>https://yushum.com/posts/2cy%E8%A5%BF%E9%9B%85%E5%9B%BE%E5%86%8D%E6%AC%A1%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/2cy%E8%A5%BF%E9%9B%85%E5%9B%BE%E5%86%8D%E6%AC%A1%E6%B5%8B%E8%AF%84/</guid><pubDate>Thu, 24 Mar 2022 13:02:03 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;黑五购买了2CY的西雅图VPS，当时是三网9929，后来改了线路，据其老板&lt;a href=&quot;https://t.me/mkdml&quot;&gt;Mk&lt;/a&gt;说是由于上游改线路，所以要等上游改回来才行。后来又续费了两个月还是没改回来，流媒体解锁也取消了，现在到国内的线路可以说很拉跨了；而且前几天开始2CY家所有VPS的网络都出现了故障，无法使用，一直到昨天才修了西雅图；老板也无心经营，VNC坏了也一直没修；WHMCS配置似乎有问题，一直在乱发续费邮件；vps也会不定期挂掉，必须要重装，所以无法用于生产。所以还是不怎么建议购买的。&lt;/p&gt;
&lt;p&gt;当时的测评可以看这里：&lt;a href=&quot;https://yushum.com/2cy%E8%A5%BF%E9%9B%85%E5%9B%BEvps%E6%B5%8B%E8%AF%95/&quot;&gt;2CY西雅图9929 VPS测试&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-02-18                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Thu 24 Mar 2022 12:30:20 AM EDT

Basic System Information:
---------------------------------
Processor  : Common KVM processor
CPU cores  : 2 @ 2499.964 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 978.6 MiB
Swap       : 975.0 MiB
Disk       : 8.8 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 170.66 MB/s  (42.6k) | 2.17 GB/s    (33.9k)
Write      | 171.11 MB/s  (42.7k) | 2.18 GB/s    (34.1k)
Total      | 341.77 MB/s  (85.4k) | 4.35 GB/s    (68.1k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 5.73 GB/s    (11.2k) | 5.38 GB/s     (5.2k)
Write      | 6.04 GB/s    (11.8k) | 5.74 GB/s     (5.6k)
Total      | 11.78 GB/s   (23.0k) | 11.12 GB/s   (10.8k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 1.20 Gbits/sec  | 1.24 Gbits/sec
Online.net      | Paris, FR (10G)           | 1.41 Gbits/sec  | 1.27 Gbits/sec
WorldStream     | The Netherlands (10G)     | 1.15 Gbits/sec  | 1.13 Gbits/sec
WebHorizon      | Singapore (400M)          | 784 Mbits/sec   | 426 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 2.82 Gbits/sec  | 2.85 Gbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 3.10 Gbits/sec  | 2.83 Gbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 3.07 Gbits/sec  | 6.16 Gbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 706 Mbits/sec   | 942 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 609
Multi Core      | 1185
Full Test       | https://browser.geekbench.com/v5/cpu/13791105
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-02-22
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Common KVM processor
 CPU Cores          : 4 @ 2499.964 MHz
 CPU Cache          : 16384 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Disabled
 Total Disk         : 8.8 GB (757.7 MB Used)
 Total Mem          : 978.6 MB (44.8 MB Used)
 Total Swap         : 975.0 MB (3.7 MB Used)
 System uptime      : 0 days, 0 hour 14 min
 Load average       : 0.02, 0.38, 0.34
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-12-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 Organization       : AS48024 NEROCLOUD LTD
 Location           : Shiraz / IR
 Region             : Fars
----------------------------------------------------------------------
 I/O Speed(1st run) : 97.3 MB/s
 I/O Speed(2nd run) : 59.1 MB/s
 I/O Speed(3rd run) : 59.8 MB/s
 I/O Speed(average) : 72.1 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    461.60 Mbps       927.59 Mbps         158.02 ms
 Los Angeles, US  3106.45 Mbps      5095.90 Mbps        26.50 ms
 Dallas, US       1515.06 Mbps      5244.75 Mbps        54.43 ms
 Montreal, CA     699.49 Mbps       934.41 Mbps         61.68 ms
 Paris, FR        575.49 Mbps       4430.00 Mbps        143.14 ms
 Amsterdam, NL    542.66 Mbps       3809.72 Mbps        153.20 ms
 Shanghai, CN     403.72 Mbps       1444.80 Mbps        196.71 ms
 Nanjing, CN      624.95 Mbps       2893.49 Mbps        127.66 ms
 Guangzhou, CN    105.00 Mbps       1703.81 Mbps        133.90 ms
 Hongkong, CN     479.67 Mbps       4805.86 Mbps        177.23 ms
 Seoul, KR        511.98 Mbps       566.71 Mbps         112.14 ms
----------------------------------------------------------------------
 Finished in        : 6 min 19 sec
 Timestamp          : 2022-03-24 00:49:13 EDT
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Thu 24 Mar 2022 12:51:31 AM EDT

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: NEROCLOUD Limited (178.173.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               Yes (Region: US)
 Disney+:                               Yes (Region: AU)
 Netflix:                               Originals Only
 YouTube Premium:                       Yes (Region: AU)
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   HK
 Viu.com:                               No
 YouTube CDN:                           Seattle, WA
 Netflix Preferred CDN:                 Seattle, WA
 Steam Currency:                        AUD
=======================================
===========[ North America ]===========
 FOX:                                   No
 ESPN+:[Sponsored by Jam]               No
 Epix:                                  No
 Starz:                                 No
 HBO Now:                               Yes
 HBO Max:                               Yes
 BritBox:                               Yes
 NBA TV:                                Yes
 Fubo TV:                               No
 Sling TV:                              No
 Pluto TV:                              No
 Acorn TV:                              Yes
 SHOWTIME:                              Yes
 AT&amp;amp;T NOW:                              Yes
 encoreTVB:                             Yes
 CineMax Go:                            No
 Funimation:                            Yes (Region: AU)
 Discovery+:                            No
 Paramount+:                            Yes
 Peacock TV:                            Yes
 ---CA---
 CBC Gem:                               No
 Crave:                                 No
=======================================
当前主机不支持IPv6,跳过...

本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/03/24/d8aa16fc0adf1.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/03/24/cb98ee0159c85.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/03/24/88237b79c127e.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/03/24/739d3e367a244.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 32 byte packets
 1  178.173.245.1  0.37 ms  AS48024  United States, Washington, Seattle, parsun.com
 2  138.199.1.176  0.53 ms  AS60068  cdn77.com
 3  50.248.116.121  1.46 ms  AS7922  United States, Washington, Seattle, comcast.com
 4  96.110.34.129  1.43 ms  AS7922  United States, Washington, Seattle, comcast.com
 5  96.110.47.206  1.78 ms  AS7922  United States, Washington, Seattle, comcast.com
 6  96.110.38.38  4.52 ms  AS7922  United States, Oregon, Portland, comcast.com
 7  96.110.46.213  5.07 ms  AS7922  United States, Oregon, Portland, comcast.com
 8  96.110.46.226  4.67 ms  http: 503  http: 503
 9  96.110.36.125  29.38 ms  http: 503  http: 503
10  96.110.46.9  29.58 ms  http: 503  United States, California, Sunnyvale, comcast.com
11  96.110.46.18  29.37 ms  http: 503  http: 503
12  96.110.37.182  28.95 ms  http: 503  http: 503
13  68.86.166.157  29.76 ms  http: 503  http: 503
14  96.110.36.226  28.70 ms  http: 503  http: 503
15  219.158.40.117  189.82 ms  http: 503  http: 503
16  219.158.96.41  184.21 ms  http: 503  http: 503
17  219.158.9.238  190.60 ms  http: 503  http: 503
18  *
19  *
20  221.219.202.254  243.43 ms  http: 503  http: 503
21  61.148.158.106  232.82 ms  http: 503  http: 503
22  61.135.113.154  247.52 ms  AS4808  China, Beijing, ChinaUnicom
23  *
24  123.125.99.1  247.25 ms  http: 503  http: 503
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.9 (180.149.128.9), 30 hops max, 32 byte packets
 1  178.173.245.1  0.32 ms  http: 503  http: 503
 2  138.199.1.176  0.30 ms  http: 503  http: 503
 3  50.248.116.121  2.03 ms  http: 503  http: 503
 4  96.110.34.137  3.87 ms  http: 503  http: 503
 5  96.110.39.202  0.64 ms  http: 503  United States, Washington, Seattle, comcast.com
 6  66.208.232.82  5.71 ms  http: 503  http: 503
 7  202.97.59.89  128.21 ms  AS4134  China, Beijing, ChinaTelecom
 8  202.97.84.209  128.80 ms  http: 503  http: 503
 9  *
10  *
11  36.110.246.206  146.24 ms  http: 503  http: 503
12  180.149.128.9  141.76 ms  http: 503  http: 503
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
 1  178.173.245.1  0.35 ms  AS48024  United States, Washington, Seattle, parsun.com
 2  138.199.1.176  0.47 ms  http: 503  http: 503
 3  80.239.193.193  0.58 ms  http: 503  http: 503
 4  62.115.118.169  24.19 ms  http: 503  http: 503
 5  62.115.171.215  22.52 ms  http: 503  United States, California, San Jose, telia.com
 6  223.120.6.69  23.81 ms  http: 503  http: 503
 7  *
 8  *
 9  *
10  221.176.16.213  326.63 ms  http: 503  http: 503
11  111.24.2.245  241.32 ms  http: 503  http: 503
12  *
13  *
14  *
15  211.136.63.66  242.50 ms  http: 503  http: 503
16  211.136.95.226  238.54 ms  http: 503  China, Beijing, ChinaMobile
17  *
18  211.136.25.153  243.50 ms  http: 503  http: 503
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;鹏博士家宽&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 14.131.128.1 (14.131.128.1), 30 hops max, 32 byte packets
 1  178.173.245.1  0.37 ms  AS48024  United States, Washington, Seattle, parsun.com
 2  138.199.1.176  0.34 ms  AS60068  cdn77.com
 3  *
 4  *
 5  *
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;鹏博士商宽&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 32 byte packets
 1  178.173.245.1  0.39 ms  AS48024  United States, Washington, Seattle, parsun.com
 2  138.199.1.176  0.41 ms  AS60068  cdn77.com
 3  50.248.116.121  1.14 ms  AS7922  United States, Washington, Seattle, comcast.com
 4  96.110.34.129  1.05 ms  AS7922  United States, Washington, Seattle, comcast.com
 5  96.110.47.182  1.91 ms  AS7922  United States, Washington, Seattle, comcast.com
 6  96.110.38.42  5.23 ms  http: 503  http: 503
 7  96.110.46.245  4.59 ms  http: 503  http: 503
 8  96.110.46.226  5.01 ms  AS7922  United States, Oregon, Portland, comcast.com
 9  96.110.36.121  29.43 ms  http: 503  http: 503
10  96.110.46.33  29.56 ms  http: 503  http: 503
11  96.110.46.42  29.37 ms  http: 503  http: 503
12  96.110.37.178  29.29 ms  http: 503  http: 503
13  68.86.166.133  29.50 ms  http: 503  http: 503
14  96.110.36.226  28.89 ms  http: 503  http: 503
15  75.149.229.42  181.67 ms  http: 503  http: 503
16  219.158.96.37  210.14 ms  http: 503  http: 503
17  219.158.3.29  212.49 ms  http: 503  http: 503
18  *
19  *
20  202.96.13.250  213.74 ms  AS4808  China, Beijing, ChinaUnicom
21  *
22  202.99.1.238  212.14 ms  http: 503  http: 503
23  218.241.255.138  211.41 ms  http: 503  China, Beijing, DRPENG
24  218.241.245.102  218.51 ms  http: 503  http: 503
25  218.241.245.158  213.00 ms  http: 503  http: 503
26  *
27  211.167.230.100  214.22 ms  http: 503  China, Beijing, DRPENG
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;教育网&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 32 byte packets
 1  178.173.245.1  0.34 ms  http: 503  http: 503
 2  206.81.82.40  0.45 ms  http: 503  http: 503
 3  184.105.213.118  81.73 ms  http: 503  http: 503
 4  184.105.64.129  125.71 ms  http: 503  http: 503
 5  184.104.197.90  138.78 ms  http: 503  http: 503
 6  123.255.91.118  152.21 ms  *  China, Hong Kong, hkix.net
 7  101.4.114.181  186.23 ms  http: 503  http: 503
 8  101.4.118.121  186.00 ms  http: 503  China, Beijing, CHINAEDU
 9  *
10  *
11  101.4.113.110  170.36 ms  http: 503  http: 503
12  219.224.102.230  167.40 ms  AS4538  http: 503
13  *
14  202.205.109.205  170.66 ms  http: 503  http: 503
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;中国科技网&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 32 byte packets
 1  178.173.245.1  0.29 ms  http: 503  http: 503
 2  138.199.1.176  0.45 ms  http: 503  http: 503
 3  38.88.50.73  1.04 ms  http: 503  http: 503
 4  154.54.42.150  4.22 ms  http: 503  http: 503
 5  154.54.87.122  138.94 ms  http: 503  China, Hong Kong, cogentco.com
 6  154.18.4.2  163.41 ms  http: 503  http: 503
 7  159.226.254.61  200.40 ms  AS7497  China, Beijing, CSTNET
 8  159.226.254.1  199.45 ms  http: 503  http: 503
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;广电网络&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 32 byte packets
 1  178.173.245.1  0.28 ms  http: 503  http: 503
 2  138.199.1.176  0.32 ms  http: 503  http: 503
 3  50.248.116.121  1.58 ms  http: 503  http: 503
 4  96.110.34.133  1.57 ms  http: 503  United States, Washington, Seattle, comcast.com
 5  96.110.39.206  0.72 ms  http: 503  http: 503
 6  66.208.232.82  5.49 ms  AS7922  United States, Washington, Seattle, comcast.com
 7  *
 8  *
 9  *
10  *
11  106.120.252.158  133.68 ms  http: 503  http: 503
12  106.120.252.158  142.16 ms  AS4847  China, Beijing, ChinaTelecom
13  60.247.93.254  144.71 ms  http: 503  http: 503
14  211.156.131.93  140.19 ms  http: 503  http: 503
15  211.156.140.17  133.36 ms  http: 503  http: 503
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.8.158 (58.247.8.158), 30 hops max, 32 byte packets
 1  178.173.245.1  0.30 ms  http: 503  http: 503
 2  138.199.1.176  0.32 ms  http: 503  http: 503
 3  50.248.116.121  1.40 ms  AS7922  United States, Washington, Seattle, comcast.com
 4  96.110.34.129  0.79 ms  http: 503  http: 503
 5  96.110.47.194  1.90 ms  http: 503  http: 503
 6  96.110.38.46  5.04 ms  http: 503  http: 503
 7  96.110.46.229  4.93 ms  http: 503  http: 503
 8  96.110.46.210  5.81 ms  http: 503  http: 503
 9  96.110.36.121  29.71 ms  http: 503  http: 503
10  96.110.46.45  29.62 ms  http: 503  http: 503
11  96.110.46.6  29.05 ms  AS7922  United States, California, Sunnyvale, comcast.com
12  96.110.37.178  29.22 ms  http: 503  http: 503
13  68.86.166.169  30.01 ms  http: 503  http: 503
14  96.110.36.218  28.65 ms  AS7922  United States, California, San Jose, comcast.com
15  75.149.229.42  183.77 ms  http: 503  http: 503
16  219.158.96.41  190.16 ms  http: 503  http: 503
17  219.158.5.198  199.43 ms  http: 503  http: 503
18  219.158.113.142  190.75 ms  http: 503  http: 503
19  *
20  *
21  58.247.221.178  193.47 ms  http: 503  China, Shanghai, ChinaUnicom
22  139.226.225.22  203.41 ms  http: 503  http: 503
23  58.247.8.153  195.72 ms  http: 503  http: 503
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.5 (180.153.28.5), 30 hops max, 32 byte packets
 1  178.173.245.1  0.34 ms  AS48024  United States, Washington, Seattle, parsun.com
 2  138.199.1.176  0.46 ms  http: 503  http: 503
 3  50.248.116.121  1.01 ms  AS7922  United States, Washington, Seattle, comcast.com
 4  96.110.34.129  1.48 ms  AS7922  United States, Washington, Seattle, comcast.com
 5  96.110.39.202  1.18 ms  http: 503  http: 503
 6  66.208.232.82  6.89 ms  http: 503  http: 503
 7  202.97.30.245  122.66 ms  http: 503  http: 503
 8  202.97.12.185  116.91 ms  http: 503  http: 503
 9  202.97.94.238  131.75 ms  http: 503  http: 503
10  101.95.120.153  140.86 ms  http: 503  http: 503
11  101.95.207.226  132.28 ms  http: 503  China, Shanghai, ChinaTelecom
12  124.74.232.58  141.10 ms  http: 503  http: 503
13  101.227.255.34  132.28 ms  http: 503  http: 503
14  180.153.28.5  139.07 ms  http: 503  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 32 byte packets
 1  178.173.245.1  0.32 ms  http: 503  http: 503
 2  138.199.1.176  0.40 ms  http: 503  http: 503
 3  38.88.50.73  1.07 ms  http: 503  http: 503
 4  154.54.0.233  22.03 ms  http: 503  cogentco.com
 5  154.54.43.14  22.75 ms  http: 503  http: 503
 6  38.88.224.162  22.63 ms  AS174  United States, California, San Jose, cogentco.com
 7  223.120.6.69  22.64 ms  http: 503  http: 503
 8  *
 9  221.183.55.22  280.26 ms  http: 503  http: 503
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;9929&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 32 byte packets
 1  178.173.245.1  0.23 ms  http: 503  http: 503
 2  138.199.1.176  0.36 ms  http: 503  http: 503
 3  38.88.50.73  1.06 ms  AS174  United States, Washington, Seattle, cogentco.com
 4  154.54.86.209  21.93 ms  http: 503  http: 503
 5  154.54.43.70  23.00 ms  http: 503  cogentco.com
 6  154.54.40.145  31.31 ms  http: 503  http: 503
 7  154.54.42.102  31.52 ms  http: 503  http: 503
 8  38.142.239.114  158.17 ms  http: 503  http: 503
 9  210.14.186.141  156.00 ms  http: 503  http: 503
10  218.105.2.210  156.63 ms  http: 503  http: 503
11  210.13.116.86  158.03 ms  http: 503  http: 503
12  210.13.64.109  159.07 ms  http: 503  http: 503
13  210.13.64.110  157.45 ms  AS9929  China, Shanghai, ChinaUnicom
14  210.13.66.237  160.52 ms  http: 503  http: 503
15  210.13.66.238  160.56 ms  http: 503  http: 503
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 32 byte packets
 1  178.173.245.1  0.30 ms  http: 503  http: 503
 2  138.199.1.176  0.38 ms  http: 503  http: 503
 3  80.239.193.193  0.45 ms  http: 503  http: 503
 4  62.115.118.169  21.77 ms  http: 503  http: 503
 5  62.115.125.161  23.84 ms  http: 503  telia.com
 6  80.239.132.158  24.19 ms  http: 503  http: 503
 7  59.43.182.85  197.45 ms  *  China, Shanghai, ChinaTelecom
 8  *
 9  59.43.138.65  214.16 ms  http: 503  http: 503
10  61.152.24.190  137.79 ms  http: 503  http: 503
11  101.95.95.66  136.68 ms  http: 503  http: 503
12  58.32.0.1  214.14 ms  http: 503  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  178.173.245.1  0.26 ms  http: 503  http: 503
 2  138.199.1.176  0.43 ms  http: 503  http: 503
 3  50.248.116.121  1.46 ms  http: 503  http: 503
 4  96.110.34.137  2.10 ms  AS7922  United States, Washington, Seattle, comcast.com
 5  96.110.47.218  1.78 ms  http: 503  http: 503
 6  96.110.38.42  4.49 ms  http: 503  United States, Oregon, Portland, comcast.com
 7  96.110.47.5  4.87 ms  http: 503  http: 503
 8  96.110.46.226  4.50 ms  http: 503  http: 503
 9  96.110.36.125  28.94 ms  http: 503  http: 503
10  96.110.46.45  29.75 ms  http: 503  http: 503
11  96.110.46.6  29.27 ms  http: 503  http: 503
12  96.110.37.170  29.51 ms  http: 503  http: 503
13  68.86.166.133  29.65 ms  http: 503  http: 503
14  96.110.36.230  28.85 ms  http: 503  United States, California, San Jose, comcast.com
15  219.158.40.117  192.36 ms  http: 503  http: 503
16  219.158.98.9  190.48 ms  http: 503  http: 503
17  219.158.111.218  200.57 ms  http: 503  http: 503
18  219.158.6.205  193.88 ms  http: 503  http: 503
19  219.158.7.129  199.24 ms  http: 503  http: 503
20  *
21  112.92.0.62  201.55 ms  http: 503  http: 503
22  120.80.175.70  195.17 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
 1  178.173.245.1  0.32 ms  AS48024  United States, Washington, Seattle, parsun.com
 2  138.199.1.176  0.29 ms  http: 503  http: 503
 3  50.248.116.121  1.59 ms  AS7922  United States, Washington, Seattle, comcast.com
 4  96.110.34.137  1.87 ms  AS7922  http: 503
 5  96.110.39.202  0.93 ms  http: 503  http: 503
 6  66.208.232.82  9.31 ms  http: 503  http: 503
 7  202.97.71.1  133.39 ms  http: 503  http: 503
 8  202.97.12.42  138.14 ms  http: 503  http: 503
 9  *
10  *
11  *
12  113.108.209.1  140.34 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 120.196.212.25 (120.196.212.25), 30 hops max, 32 byte packets
 1  178.173.245.1  0.29 ms  AS48024  United States, Washington, Seattle, parsun.com
 2  138.199.1.176  0.36 ms  http: 503  http: 503
 3  38.88.50.73  0.98 ms  http: 503  http: 503
 4  154.54.86.105  21.98 ms  http: 503  http: 503
 5  154.54.43.150  22.80 ms  AS174  http: 503
 6  154.54.31.189  31.27 ms  http: 503  http: 503
 7  154.54.27.118  31.38 ms  http: 503  http: 503
 8  38.19.140.98  33.12 ms  http: 503  http: 503
 9  223.118.10.153  36.30 ms  http: 503  http: 503
10  *
11  221.183.25.122  260.23 ms  http: 503  http: 503
12  221.183.68.146  271.69 ms  http: 503  http: 503
13  111.24.14.149  270.57 ms  http: 503  http: 503
14  111.24.5.22  272.08 ms  http: 503  http: 503
15  211.136.203.22  270.82 ms  http: 503  http: 503
16  211.136.196.246  273.46 ms  http: 503  http: 503
17  211.139.180.106  278.62 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
18  *
19  *
20  *
21  120.196.212.25  273.43 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT CN2 Gaming Broadband (TCP Mode, Max 30 Hop)
============================================================
traceroute to 119.121.0.1 (119.121.0.1), 30 hops max, 32 byte packets
 1  178.173.245.1  0.27 ms  http: 503  http: 503
 2  138.199.1.176  0.32 ms  http: 503  http: 503
 3  80.239.193.193  4.92 ms  http: 503  http: 503
 4  62.115.118.169  21.79 ms  http: 503  http: 503
 5  62.115.125.161  22.15 ms  http: 503  telia.com
 6  80.239.132.158  22.00 ms  http: 503  http: 503
 7  59.43.189.217  205.57 ms  *  China, Guangdong, Guangzhou, ChinaTelecom
 8  *
 9  59.43.130.161  211.56 ms  http: 503  http: 503
10  183.57.161.14  167.75 ms  http: 503  http: 503
11  119.121.0.1  206.58 ms  http: 503  http: 503
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;不建议购买。&lt;/p&gt;
</content:encoded></item><item><title>HostingViet越南VPS优惠活动</title><link>https://yushum.com/posts/hostingviet%E8%B6%8A%E5%8D%97vps%E4%BC%98%E6%83%A0%E6%B4%BB%E5%8A%A8/</link><guid isPermaLink="true">https://yushum.com/posts/hostingviet%E8%B6%8A%E5%8D%97vps%E4%BC%98%E6%83%A0%E6%B4%BB%E5%8A%A8/</guid><pubDate>Wed, 23 Mar 2022 08:46:08 GMT</pubDate><content:encoded>&lt;p&gt;以往测试：&lt;a href=&quot;https://yushum.com/archives/395&quot;&gt;HostingViet越南河内VPS测评&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;购买地址：&lt;a href=&quot;https://quanly.hostingviet.vn/dich-vu/vps/dWlkPTIxMTEyNzExMTQxMDU1&quot;&gt;Cloud VPS Basic 1&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;内容：&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;特别优惠计划为云 VPS 服务、托管服务。新订阅服务的 25% 折扣或 X2 RAM。对于续订服务，提供长达 12 个月的使用。 为了感谢客户对托管Viet的服务的信任。托管维特为云 VPS 和托管服务提供特别优惠。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;新注册服务的优惠计划：&lt;/strong&gt;&lt;br /&gt;
新注册云 VPS、托管服务可优惠 25%。 折扣代码适用于新订阅服务的一次性。&lt;br /&gt;
折扣代码： &lt;strong&gt;32022UUDAI25&lt;/strong&gt;&lt;br /&gt;
使用云 VPS，您可以选择加 RAM 选项，而不是 -25% 选项：&lt;br /&gt;
折扣代码： &lt;strong&gt;X2RAM32022&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;续订服务时的优惠：&lt;/strong&gt;&lt;br /&gt;
在续费托管 / 电子邮件服务器 / 云 VPS 时适用&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;延长1年赠送3个月&lt;/li&gt;
&lt;li&gt;延长2年赠送6个月&lt;/li&gt;
&lt;li&gt;延长3年赠送12个月&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;注：&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;优惠不适用于其他优惠（如有）。&lt;/li&gt;
&lt;li&gt;有效期为2022年3月18日至2022年3月23日&lt;/li&gt;
&lt;/ul&gt;
</content:encoded></item><item><title>Instagram-Bot——Instagram下载机器人</title><link>https://yushum.com/posts/instagram-bot-instagram%E4%B8%8B%E8%BD%BD%E6%9C%BA%E5%99%A8%E4%BA%BA/</link><guid isPermaLink="true">https://yushum.com/posts/instagram-bot-instagram%E4%B8%8B%E8%BD%BD%E6%9C%BA%E5%99%A8%E4%BA%BA/</guid><pubDate>Tue, 22 Mar 2022 20:55:21 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;因为Instagram的限制，我们无法直接下载其内容，因此有很多相关项目，比如在桌面浏览器使用很方便的&lt;a href=&quot;https://theus.github.io/instantgram/&quot;&gt;theus/instantgram&lt;/a&gt;，还有本文要介绍的&lt;a href=&quot;https://github.com/subinps/Instagram-Bot&quot;&gt;Instagram-Bot&lt;/a&gt;。&lt;/p&gt;
&lt;h2&gt;变量&lt;/h2&gt;
&lt;h3&gt;Telegram&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;API_HASH&lt;/code&gt;：从&lt;a href=&quot;https://my.telegram.org/&quot;&gt;APP&lt;/a&gt;获取&lt;/li&gt;
&lt;li&gt;&lt;code&gt;API_ID&lt;/code&gt;：从&lt;a href=&quot;https://my.telegram.org/&quot;&gt;APP&lt;/a&gt;获取&lt;/li&gt;
&lt;li&gt;&lt;code&gt;BOT_TOKEN&lt;/code&gt;：从&lt;a href=&quot;https://t.me/botfather&quot;&gt;Bot&lt;/a&gt;获取&lt;/li&gt;
&lt;li&gt;&lt;code&gt;OWNER_ID&lt;/code&gt;：从&lt;a href=&quot;https://t.me/userinfobot&quot;&gt;Telegram ID&lt;/a&gt;获取&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Instagram&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;INSTAGRAM_USERNAME&lt;/code&gt;：从&lt;a href=&quot;https://www.instagram.com/&quot;&gt;Instagram&lt;/a&gt;获取&lt;/li&gt;
&lt;li&gt;&lt;code&gt;INSTA_SESSIONFILE_ID&lt;/code&gt;：通过运行&lt;a href=&quot;https://raw.githubusercontent.com/subinps/Instagram-Bot/main/generate_instagram_session.py&quot;&gt;generate_instagram_session.py&lt;/a&gt;获取&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;安装&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;cd /usr/local/share/
git clone https://github.com/subinps/Instagram-Bot
cd Instagram-Bot
pip3 install -r requirements.txt
# 在config.py中设置合适的变量
python3 main.py
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;测试无误后&lt;code&gt;Ctrl+C&lt;/code&gt;结束运行。&lt;/p&gt;
&lt;h2&gt;守护&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;chown -R nobody:nogroup /usr/local/share/Instagram-Bot
vi /etc/systemd/system/instagram-bot.service
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;systemd文件示例如下：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[Unit]
Description=Instagram-Bot service
Wants=network.target network-online.target
After=network.target network.service network-online.target

[Service]
Type=simple
User=nobody
WorkingDirectory=/usr/local/share/Instagram-Bot
ExecStart=/usr/bin/python3 /usr/local/share/Instagram-Bot/main.py
RestartPreventExitStatus=23
Restart=on-failure
RestartSec=10

[Install]
WantedBy=multi-user.target
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;启动&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;systemctl enable instagram-bot.service --now
&lt;/code&gt;&lt;/pre&gt;
</content:encoded></item><item><title>Cybree台湾VPS测评</title><link>https://yushum.com/posts/cybree%E5%8F%B0%E6%B9%BEvps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/cybree%E5%8F%B0%E6%B9%BEvps%E6%B5%8B%E8%AF%84/</guid><pubDate>Sun, 20 Mar 2022 20:05:45 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;突然想起以前注册过一个Cybree，有很多很少见的机房，开个台湾的测试一下。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-02-18                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

2022年 03月 22日 星期二 19:49:03 CST

Basic System Information:
---------------------------------
Processor  : AMD EPYC Processor
CPU cores  : 1 @ 2899.998 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 978.8 MiB
Swap       : 975.0 MiB
Disk       : 38.1 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 7.58 MB/s     (1.8k) | 38.23 MB/s     (597)
Write      | 7.61 MB/s     (1.9k) | 38.56 MB/s     (602)
Total      | 15.19 MB/s    (3.7k) | 76.79 MB/s    (1.1k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 37.39 MB/s      (73) | 37.09 MB/s      (36)
Write      | 39.39 MB/s      (76) | 39.74 MB/s      (38)
Total      | 76.79 MB/s     (149) | 76.83 MB/s      (74)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 307 Mbits/sec   | 303 Mbits/sec
Online.net      | Paris, FR (10G)           | 309 Mbits/sec   | 164 Mbits/sec
WorldStream     | The Netherlands (10G)     | 309 Mbits/sec   | 83.8 Mbits/sec
WebHorizon      | Singapore (400M)          | 338 Mbits/sec   | 331 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 321 Mbits/sec   | 313 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 314 Mbits/sec   | 338 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 332 Mbits/sec   | 320 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | busy            | 263 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 921
Multi Core      | 940
Full Test       | https://browser.geekbench.com/v5/cpu/13746406
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-02-22
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : AMD EPYC Processor
 CPU Cores          : 1 @ 2899.998 MHz
 CPU Cache          : 512 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Disabled
 Total Disk         : 39.2 GB (2.6 GB Used)
 Total Mem          : 795.2 MB (45.8 MB Used)
 System uptime      : 0 days, 0 hour 20 min
 Load average       : 0.34, 0.26, 0.15
 OS                 : Debian GNU/Linux 10
 Arch               : x86_64 (64 Bit)
 Kernel             : 4.19.0-11-amd64
 TCP CC             : cubic
 Virtualization     : KVM
 Organization       : AS142002 Scloud Pte Ltd
 Location           : Shanghai / CN
 Region             : Shanghai
----------------------------------------------------------------------
 I/O Speed(1st run) : 78.4 MB/s
 I/O Speed(2nd run) : 78.2 MB/s
 I/O Speed(3rd run) : 78.4 MB/s
 I/O Speed(average) : 78.3 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    296.14 Mbps       292.70 Mbps         1.41 ms
 Los Angeles, US  279.96 Mbps       347.93 Mbps         233.02 ms
 Dallas, US       348.73 Mbps       530.51 Mbps         243.13 ms
 Montreal, CA     96.13 Mbps        348.78 Mbps         245.65 ms
 Paris, FR        264.82 Mbps       335.06 Mbps         274.77 ms
 Amsterdam, NL    329.43 Mbps       391.81 Mbps         244.69 ms
 Shanghai, CN     5.92 Mbps         158.53 Mbps         52.30 ms
 Nanjing, CN      47.74 Mbps        339.94 Mbps         281.35 ms
 Guangzhou, CN    5.55 Mbps         299.67 Mbps         285.55 ms
 Hongkong, CN     315.04 Mbps       288.91 Mbps         29.72 ms
 Seoul, KR        308.84 Mbps       345.54 Mbps         71.33 ms
----------------------------------------------------------------------
 Finished in        : 6 min 36 sec
 Timestamp          : 2022-03-20 19:21:39 CST
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Sun 20 Mar 2022 07:22:38 PM CST

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Scloud Pte (165.154.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               Yes (Region: SG)
 Disney+:                               Yes (Region: SG)
 Netflix:                               Yes (Region: SG)
 YouTube Premium:                       No  (Region: CN)
 Amazon Prime Video:                    Yes (Region: SG)
 TVBAnywhere+:                          Yes
 iQyi Oversea Region:                   TW
 Viu.com:                               No
 YouTube CDN:                           Taipei
 Netflix Preferred CDN:                 Associated with [Chunghwa Telecom] in [Taipei ]
 Steam Currency:                        TWD
=======================================
==============[ Taiwan ]===============
 KKTV:                                  Yes
 LiTV:                                  Yes
 MyVideo:                               No
 4GTV.TV:                               No
 LineTV.TW:                             Yes
 Hami Video:                            Yes
 CatchPlay+:                            Yes
 HBO GO Asia:                           Yes (Region: TW)
 Bahamut Anime:                         Yes
 Eleven Sports TW:                      Yes
 Bilibili Taiwan Only:                  Yes
=======================================
当前主机不支持IPv6,跳过...

本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/03/20/7e0e33480b1d7.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/03/20/f11f23384cc04.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/03/20/be974c9568962.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/03/20/b0117430592b5.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  1.26 ms  *  LAN Address
 3  172.30.94.118  5.63 ms  *  LAN Address
 4  172.30.94.89  4.94 ms  *  LAN Address
 5  172.30.94.197  7.39 ms  *  LAN Address
 6  172.30.94.188  9.22 ms  *  LAN Address
 7  *
 8  104.254.115.46  1.06 ms  *  China, Taiwan, Taipei City, zenlayer.com
 9  128.1.64.109  1.64 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.66  1.82 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  203.75.72.238  1.70 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
12  *
13  220.128.26.106  2.29 ms  *  China, Taiwan, Taipei City, cht.com.tw
14  220.128.25.137  5.10 ms  *  China, Taiwan, Taipei City, cht.com.tw
15  220.128.11.33  2.17 ms  *  China, Taiwan, New Taipei City, cht.com.tw
16  220.128.6.125  2.16 ms  *  China, Taiwan, Taipei City, cht.com.tw
17  219.158.38.209  36.93 ms  AS4837  China, Shanghai, ChinaUnicom
18  219.158.19.90  34.53 ms  AS4837  China, Shanghai, ChinaUnicom
19  219.158.19.81  18.53 ms  AS4837  China, Shanghai, ChinaUnicom
20  *
21  *
22  221.219.202.242  39.24 ms  AS4808  China, Beijing, ChinaUnicom
23  61.148.158.106  40.54 ms  AS4808  China, Beijing, ChinaUnicom
24  61.135.113.154  55.31 ms  AS4808  China, Beijing, ChinaUnicom
25  *
26  123.125.99.1  41.19 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.9 (180.149.128.9), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  1.00 ms  *  LAN Address
 3  172.30.94.118  5.21 ms  *  LAN Address
 4  172.30.94.91  6.17 ms  *  LAN Address
 5  172.30.94.57  3.85 ms  *  LAN Address
 6  172.30.94.186  4.73 ms  *  LAN Address
 7  104.254.113.180  63.26 ms  *  China, Hong Kong, zenlayer.com
 8  104.254.115.46  1.02 ms  *  China, Taiwan, Taipei City, zenlayer.com
 9  23.236.103.73  1.55 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.2  2.40 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  203.75.72.234  1.62 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
12  *
13  220.128.27.78  2.17 ms  *  China, Taiwan, Taipei City, cht.com.tw
14  220.128.27.5  4.44 ms  *  China, Taiwan, Taipei City, cht.com.tw
15  220.128.11.157  2.00 ms  *  China, Taiwan, Taipei City, cht.com.tw
16  220.128.6.125  1.93 ms  *  China, Taiwan, Taipei City, cht.com.tw
17  220.128.6.121  2.00 ms  *  China, Taiwan, cht.com.tw
18  202.39.91.77  131.08 ms  AS9680  United States, California, Palo Alto, cht.com.tw
19  38.122.183.33  131.64 ms  AS174  United States, California, San Jose, cogentco.com
20  154.54.88.189  126.87 ms  AS174  United States, California, San Jose, cogentco.com
21  38.104.138.106  142.22 ms  AS174  United States, California, San Jose, cogentco.com
22  202.97.51.194  278.60 ms  AS4134  China, Beijing, ChinaTelecom
23  202.97.85.41  271.15 ms  AS4134  China, Beijing, ChinaTelecom
24  *
25  *
26  36.110.246.214  286.96 ms  AS23724  China, Beijing, ChinaTelecom
27  180.149.128.9  284.53 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  0.98 ms  *  LAN Address
 3  172.30.94.118  5.29 ms  *  LAN Address
 4  172.30.94.91  4.35 ms  *  LAN Address
 5  172.30.94.3  4.25 ms  *  LAN Address
 6  172.30.94.188  4.53 ms  *  LAN Address
 7  104.254.113.182  7.85 ms  *  China, Hong Kong, zenlayer.com
 8  104.254.115.44  1.04 ms  *  United States, zenlayer.com
 9  23.236.103.88  1.56 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.66  1.54 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  203.75.72.238  1.55 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
12  *
13  220.128.26.78  2.17 ms  *  China, Taiwan, Taipei City, cht.com.tw
14  220.128.27.5  3.82 ms  *  China, Taiwan, Taipei City, cht.com.tw
15  220.128.11.161  1.89 ms  *  China, Taiwan, Taipei City, cht.com.tw
16  220.128.6.253  1.92 ms  *  China, Taiwan, Taipei City, cht.com.tw
17  211.72.233.145  25.75 ms  AS3462  China, Hong Kong, cht.com.tw
18  223.120.3.89  24.13 ms  AS58453  China, Hong Kong, ChinaMobile
19  *
20  *
21  *
22  *
23  221.176.21.229  69.98 ms  AS9808  China, Beijing, ChinaMobile
24  111.24.2.249  71.21 ms  AS9808  China, Beijing, ChinaMobile
25  111.24.2.134  76.23 ms  AS9808  China, Beijing, ChinaMobile
26  *
27  *
28  211.136.67.166  75.11 ms  AS56048  China, Beijing, ChinaMobile
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;鹏博士家宽&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 14.131.128.1 (14.131.128.1), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  1.00 ms  *  LAN Address
 3  172.30.94.118  4.69 ms  *  LAN Address
 4  172.30.94.95  6.23 ms  *  LAN Address
 5  172.30.94.191  3.76 ms  *  LAN Address
 6  172.30.94.188  4.75 ms  *  LAN Address
 7  104.254.113.182  803.04 ms  *  China, Hong Kong, zenlayer.com
 8  128.1.64.102  1.15 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
 9  23.236.103.73  1.54 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.2  1.53 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  203.75.72.234  1.52 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
12  220.128.13.46  1.54 ms  *  China, Taiwan, New Taipei City, cht.com.tw
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;鹏博士商宽&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  0.60 ms  *  LAN Address
 3  172.30.94.118  4.47 ms  *  LAN Address
 4  172.30.94.89  3.92 ms  *  LAN Address
 5  172.30.94.191  4.43 ms  *  LAN Address
 6  172.30.94.188  4.41 ms  *  LAN Address
 7  104.254.113.180  2.15 ms  *  China, Hong Kong, zenlayer.com
 8  104.254.115.46  0.93 ms  *  China, Taiwan, Taipei City, zenlayer.com
 9  23.236.103.88  1.11 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.2  1.35 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  211.22.229.106  2.95 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
12  *
13  220.128.26.78  1.86 ms  *  China, Taiwan, Taipei City, cht.com.tw
14  220.128.24.101  3.68 ms  *  China, Taiwan, Taipei City, cht.com.tw
15  220.128.11.169  1.52 ms  *  China, Taiwan, Taipei City, cht.com.tw
16  220.128.6.125  1.51 ms  *  China, Taiwan, Taipei City, cht.com.tw
17  219.158.44.61  30.64 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
18  219.158.8.189  37.49 ms  AS4837  China, Shanghai, ChinaUnicom
19  *
20  *
21  *
22  202.96.13.186  38.46 ms  AS4808  China, Beijing, ChinaUnicom
23  61.149.212.242  41.33 ms  AS4808  China, Beijing, ChinaUnicom
24  202.99.1.126  37.26 ms  AS4808  China, Beijing, ChinaUnicom
25  218.241.255.138  37.95 ms  AS4808  China, Beijing, DRPENG
26  218.241.255.174  40.44 ms  AS4808  China, Beijing, DRPENG
27  218.241.245.158  49.31 ms  AS4808  China, Beijing, DRPENG
28  *
29  211.167.230.100  54.34 ms  AS17964  China, Beijing, DRPENG
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;教育网&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  1.23 ms  *  LAN Address
 3  172.30.94.114  6.05 ms  *  LAN Address
 4  172.30.94.93  4.11 ms  *  LAN Address
 5  172.30.94.57  4.11 ms  *  LAN Address
 6  172.30.94.186  4.40 ms  *  LAN Address
 7  104.254.113.180  5.46 ms  *  China, Hong Kong, zenlayer.com
 8  104.254.115.46  1.03 ms  *  China, Taiwan, Taipei City, zenlayer.com
 9  23.236.103.88  1.52 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.2  1.56 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  211.22.229.106  1.58 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
12  *
13  220.128.26.106  5.73 ms  *  China, Taiwan, Taipei City, cht.com.tw
14  220.128.3.161  1.98 ms  *  China, Taiwan, cht.com.tw
15  220.128.3.185  1.74 ms  *  China, Taiwan, Taipei City, cht.com.tw
16  211.72.233.73  27.50 ms  AS3462  China, Hong Kong, cht.com.tw
17  *
18  129.250.6.123  28.59 ms  AS2914  China, Hong Kong, ntt.com
19  203.131.254.214  26.88 ms  AS2914  China, Hong Kong, ntt.com
20  101.4.114.181  61.05 ms  AS4538  China, Beijing, CHINAEDU
21  *
22  *
23  *
24  101.4.113.110  59.76 ms  AS4538  China, Beijing, CHINAEDU
25  219.224.102.230  59.22 ms  AS4538  China, Beijing, CHINAEDU
26  *
27  202.205.109.205  60.89 ms  AS4538  China, Beijing, CHINAEDU
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;中国科技网&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  0.99 ms  *  LAN Address
 3  172.30.94.118  4.94 ms  *  LAN Address
 4  172.30.94.89  4.38 ms  *  LAN Address
 5  172.30.94.191  3.99 ms  *  LAN Address
 6  172.30.94.188  4.69 ms  *  LAN Address
 7  104.254.113.180  570.58 ms  *  China, Hong Kong, zenlayer.com
 8  104.254.115.44  4.67 ms  *  United States, zenlayer.com
 9  23.236.103.88  1.67 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.2  1.64 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  203.75.72.238  1.65 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
12  *
13  220.128.27.78  2.00 ms  *  China, Taiwan, Taipei City, cht.com.tw
14  220.128.4.161  1.72 ms  *  China, Taiwan, cht.com.tw
15  220.128.3.185  1.86 ms  *  China, Taiwan, Taipei City, cht.com.tw
16  63.218.215.125  25.54 ms  AS3491,AS31713  China, Hong Kong, pccw.com
17  63.223.17.94  30.79 ms  AS3491,AS31713  China, Hong Kong, pccw.com
18  63.217.16.34  23.45 ms  AS3491,AS31713  China, Hong Kong, pccw.com
19  63.217.16.34  25.72 ms  AS3491,AS31713  China, Hong Kong, pccw.com
20  159.226.254.9  65.43 ms  AS7497  China, Beijing, CSTNET
21  159.226.254.1  61.16 ms  AS7497  China, Beijing, CSTNET
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;广电网络&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  0.42 ms  *  LAN Address
 3  172.30.94.118  4.49 ms  *  LAN Address
 4  172.30.94.91  7.96 ms  *  LAN Address
 5  172.30.94.197  3.90 ms  *  LAN Address
 6  172.30.94.188  5.41 ms  *  LAN Address
 7  104.254.113.180  1.21 ms  *  China, Hong Kong, zenlayer.com
 8  104.254.115.46  0.59 ms  *  China, Taiwan, Taipei City, zenlayer.com
 9  23.236.103.86  0.97 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.66  1.11 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  211.22.229.110  1.12 ms  AS3462  China, Taiwan, cht.com.tw
12  *
13  220.128.27.82  1.80 ms  *  China, Taiwan, Taipei City, cht.com.tw
14  220.128.26.5  1.95 ms  *  China, Taiwan, Taipei City, cht.com.tw
15  220.128.12.201  1.37 ms  *  China, Taiwan, Taipei City, cht.com.tw
16  220.128.6.125  31.53 ms  *  China, Taiwan, Taipei City, cht.com.tw
17  219.158.44.45  50.47 ms  AS4837  China, Shanghai, ChinaUnicom
18  219.158.115.121  67.04 ms  AS4837  China, Beijing, ChinaUnicom
19  219.158.3.177  50.88 ms  AS4837  China, Beijing, ChinaUnicom
20  219.158.7.233  58.54 ms  AS4837  China, Beijing, ChinaUnicom
21  125.33.186.130  47.24 ms  AS4808  China, Beijing, ChinaUnicom
22  202.106.37.50  47.54 ms  AS4808  China, Beijing, ChinaUnicom
23  61.148.116.118  47.19 ms  AS4808  China, Beijing, ChinaUnicom
24  211.156.128.97  64.45 ms  AS7641  China, Beijing, CATV
25  211.156.140.17  55.11 ms  AS7641  China, Beijing, CATV
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.8.158 (58.247.8.158), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  1.12 ms  *  LAN Address
 3  172.30.94.118  6.06 ms  *  LAN Address
 4  172.30.94.93  4.51 ms  *  LAN Address
 5  172.30.94.197  4.59 ms  *  LAN Address
 6  172.30.94.188  4.45 ms  *  LAN Address
 7  104.254.113.182  3.65 ms  *  China, Hong Kong, zenlayer.com
 8  104.254.115.46  1.28 ms  *  China, Taiwan, Taipei City, zenlayer.com
 9  23.236.103.73  1.81 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.2  1.91 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  211.22.229.110  4.09 ms  AS3462  China, Taiwan, cht.com.tw
12  *
13  220.128.27.78  2.28 ms  *  China, Taiwan, Taipei City, cht.com.tw
14  220.128.25.137  4.60 ms  *  China, Taiwan, Taipei City, cht.com.tw
15  220.128.12.201  2.04 ms  *  China, Taiwan, Taipei City, cht.com.tw
16  220.128.6.125  1.87 ms  *  China, Taiwan, Taipei City, cht.com.tw
17  211.72.233.193  57.15 ms  AS3462  China, Guangdong, Guangzhou, cht.com.tw
18  *
19  219.158.8.177  50.27 ms  AS4837  China, Shanghai, ChinaUnicom
20  *
21  *
22  139.226.228.46  76.87 ms  AS17621  China, Shanghai, ChinaUnicom
23  *
24  58.247.8.153  73.05 ms  AS17621  China, Shanghai, ChinaUnicom
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.5 (180.153.28.5), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  0.62 ms  *  LAN Address
 3  172.30.94.114  5.54 ms  *  LAN Address
 4  172.30.94.91  4.03 ms  *  LAN Address
 5  172.30.94.3  5.24 ms  *  LAN Address
 6  172.30.94.186  3.92 ms  *  LAN Address
 7  104.254.113.182  9.41 ms  *  China, Hong Kong, zenlayer.com
 8  104.254.115.44  1.05 ms  *  United States, zenlayer.com
 9  23.236.103.73  1.23 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.2  1.23 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  211.22.229.110  1.35 ms  AS3462  China, Taiwan, cht.com.tw
12  *
13  220.128.27.78  1.67 ms  *  China, Taiwan, Taipei City, cht.com.tw
14  220.128.27.5  5.09 ms  *  China, Taiwan, Taipei City, cht.com.tw
15  220.128.11.161  1.50 ms  *  China, Taiwan, Taipei City, cht.com.tw
16  220.128.6.253  11.01 ms  *  China, Taiwan, Taipei City, cht.com.tw
17  220.128.7.121  12.75 ms  *  China, Taiwan, cht.com.tw
18  202.39.91.37  130.44 ms  AS9680  United States, California, Palo Alto, cht.com.tw
19  32.141.85.13  128.48 ms  AS7018  United States, California, att.com
20  12.123.242.38  131.88 ms  AS7018  United States, California, San Jose, att.com
21  12.122.149.225  135.44 ms  AS7018  United States, California, San Francisco, att.com
22  12.122.114.5  136.51 ms  AS7018  United States, California, San Francisco, att.com
23  202.97.33.125  306.66 ms  AS4134  China, Shanghai, ChinaTelecom
24  202.97.94.238  285.80 ms  AS4134  China, Shanghai, ChinaTelecom
25  101.95.88.89  309.94 ms  AS4812  China, Shanghai, ChinaTelecom
26  *
27  *
28  101.227.255.34  300.58 ms  AS4812  China, Shanghai, ChinaTelecom
29  180.153.28.5  310.98 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  0.62 ms  *  LAN Address
 3  172.30.94.118  5.20 ms  *  LAN Address
 4  172.30.94.95  4.03 ms  *  LAN Address
 5  172.30.94.3  3.84 ms  *  LAN Address
 6  172.30.94.188  5.06 ms  *  LAN Address
 7  104.254.113.182  4.15 ms  *  China, Hong Kong, zenlayer.com
 8  23.236.103.84  0.73 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
 9  23.236.103.86  1.14 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.2  3.06 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  211.22.229.110  1.23 ms  AS3462  China, Taiwan, cht.com.tw
12  *
13  220.128.26.106  1.69 ms  *  China, Taiwan, Taipei City, cht.com.tw
14  220.128.26.5  4.92 ms  *  China, Taiwan, Taipei City, cht.com.tw
15  220.128.11.41  1.35 ms  *  China, Taiwan, New Taipei City, cht.com.tw
16  220.128.6.253  1.44 ms  *  China, Taiwan, Taipei City, cht.com.tw
17  211.72.233.145  24.88 ms  AS3462  China, Hong Kong, cht.com.tw
18  223.120.3.89  24.13 ms  AS58453  China, Hong Kong, ChinaMobile
19  *
20  *
21  *
22  221.183.55.22  65.43 ms  AS9808  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;9929&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  0.45 ms  *  LAN Address
 3  172.30.94.114  9.25 ms  *  LAN Address
 4  172.30.94.95  4.31 ms  *  LAN Address
 5  172.30.94.3  3.19 ms  *  LAN Address
 6  172.30.94.186  3.96 ms  *  LAN Address
 7  104.254.113.182  3.20 ms  *  China, Hong Kong, zenlayer.com
 8  104.254.115.44  0.64 ms  *  United States, zenlayer.com
 9  23.236.103.88  1.02 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.66  1.07 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  203.75.72.238  1.89 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
12  *
13  220.128.27.106  1.82 ms  *  China, Taiwan, Taipei City, cht.com.tw
14  220.128.1.41  1.62 ms  *  China, Taiwan, Taipei City, cht.com.tw
15  220.128.3.185  1.46 ms  *  China, Taiwan, Taipei City, cht.com.tw
16  *
17  116.0.82.62  165.62 ms  AS6453  China, Hong Kong, tatacommunications.com
18  116.0.82.25  28.95 ms  AS6453  China, Hong Kong, tatacommunications.com
19  43.252.86.65  37.24 ms  AS10099  China, Hong Kong, ChinaUnicom
20  202.77.23.161  30.37 ms  AS10099  China, Hong Kong, ChinaUnicom
21  218.105.10.129  32.16 ms  AS9929  China, Guangdong, Guangzhou, ChinaUnicom
22  *
23  *
24  218.105.2.198  88.83 ms  AS9929  China, Shanghai, ChinaUnicom
25  210.13.116.86  70.36 ms  AS9929  China, Shanghai, ChinaUnicom
26  210.13.64.109  71.33 ms  AS9929  China, Shanghai, ChinaUnicom
27  210.13.64.110  71.33 ms  AS9929  China, Shanghai, ChinaUnicom
28  210.13.66.237  74.96 ms  AS9929  China, Shanghai, ChinaUnicom
29  210.13.66.238  70.46 ms  AS9929  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  0.37 ms  *  LAN Address
 3  172.30.94.118  5.18 ms  *  LAN Address
 4  172.30.94.89  3.80 ms  *  LAN Address
 5  172.30.94.197  4.06 ms  *  LAN Address
 6  172.30.94.186  3.83 ms  *  LAN Address
 7  104.254.113.180  3.49 ms  *  China, Hong Kong, zenlayer.com
 8  23.236.103.84  0.57 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
 9  23.236.103.86  1.05 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.2  0.90 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  211.22.229.110  1.19 ms  AS3462  China, Taiwan, cht.com.tw
12  *
13  220.128.26.106  1.95 ms  *  China, Taiwan, Taipei City, cht.com.tw
14  220.128.1.69  1.45 ms  *  China, Taiwan, Taipei City, cht.com.tw
15  211.22.33.73  30.61 ms  AS3462  China, Hong Kong, cht.com.tw
16  59.43.248.242  56.35 ms  *  China, Shanghai, ChinaTelecom
17  *
18  59.43.138.49  62.71 ms  *  China, Shanghai, ChinaTelecom
19  101.95.88.34  176.19 ms  AS4812  China, Shanghai, ChinaTelecom
20  101.95.95.10  169.03 ms  AS4812  China, Shanghai, ChinaTelecom
21  *
22  58.32.0.1  58.53 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  0.39 ms  *  LAN Address
 3  172.30.94.118  4.35 ms  *  LAN Address
 4  172.30.94.93  12.62 ms  *  LAN Address
 5  172.30.94.191  3.89 ms  *  LAN Address
 6  172.30.94.188  4.70 ms  *  LAN Address
 7  104.254.113.182  19.95 ms  *  China, Hong Kong, zenlayer.com
 8  128.1.64.102  0.72 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
 9  128.1.64.109  1.09 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.66  1.00 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  203.75.72.238  1.08 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
12  *
13  220.128.26.78  1.62 ms  *  China, Taiwan, Taipei City, cht.com.tw
14  220.128.24.89  5.18 ms  *  China, Taiwan, Taipei City, cht.com.tw
15  220.128.11.5  1.43 ms  *  China, Taiwan, cht.com.tw
16  220.128.6.125  1.35 ms  *  China, Taiwan, Taipei City, cht.com.tw
17  211.72.233.193  55.83 ms  AS3462  China, Guangdong, Guangzhou, cht.com.tw
18  219.158.98.93  50.81 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
19  219.158.8.113  63.32 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
20  120.83.0.62  59.45 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
21  120.80.175.70  59.55 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  0.92 ms  *  LAN Address
 3  172.30.94.114  5.26 ms  *  LAN Address
 4  172.30.94.93  4.37 ms  *  LAN Address
 5  172.30.94.57  3.30 ms  *  LAN Address
 6  172.30.94.186  6.04 ms  *  LAN Address
 7  104.254.113.180  2.77 ms  *  China, Hong Kong, zenlayer.com
 8  104.254.115.44  0.68 ms  *  United States, zenlayer.com
 9  128.1.64.109  4.95 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.2  1.26 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  203.75.72.238  1.29 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
12  *
13  220.128.26.78  1.68 ms  *  China, Taiwan, Taipei City, cht.com.tw
14  220.128.27.5  1.92 ms  *  China, Taiwan, Taipei City, cht.com.tw
15  220.128.11.157  1.68 ms  *  China, Taiwan, Taipei City, cht.com.tw
16  220.128.6.125  1.39 ms  *  China, Taiwan, Taipei City, cht.com.tw
17  220.128.6.121  1.54 ms  *  China, Taiwan, cht.com.tw
18  220.128.3.94  27.84 ms  *  China, Taiwan, Taipei City, cht.com.tw
19  202.39.91.29  126.53 ms  AS9680  United States, California, Palo Alto, cht.com.tw
20  202.39.84.29  126.39 ms  AS9680  United States, California, Los Angeles, cht.com.tw
21  *
22  4.69.219.65  127.85 ms  AS3356  United States, California, San Jose, level3.com
23  4.15.125.54  128.23 ms  AS3356  United States, California, San Jose, level3.com
24  *
25  202.97.91.138  284.82 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
26  *
27  *
28  113.108.209.1  279.31 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 120.196.212.25 (120.196.212.25), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  0.43 ms  *  LAN Address
 3  172.30.94.118  4.12 ms  *  LAN Address
 4  172.30.94.95  3.60 ms  *  LAN Address
 5  172.30.94.191  5.01 ms  *  LAN Address
 6  172.30.94.188  4.16 ms  *  LAN Address
 7  104.254.113.180  341.18 ms  *  China, Hong Kong, zenlayer.com
 8  23.236.103.84  0.60 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
 9  23.236.103.73  1.07 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.2  0.94 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  211.22.229.106  2.18 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
12  220.128.13.62  1.28 ms  *  China, Taiwan, cht.com.tw
13  220.128.13.113  1.22 ms  *  China, Taiwan, New Taipei City, cht.com.tw
14  220.128.7.149  1.42 ms  *  China, Taiwan, Taipei City, cht.com.tw
15  223.119.47.73  28.92 ms  AS58453  China, Hong Kong, ChinaMobile
16  223.120.2.53  26.28 ms  AS58453  China, Hong Kong, ChinaMobile
17  *
18  221.183.55.62  34.19 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
19  221.183.25.205  31.73 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
20  221.176.24.5  63.14 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
21  111.24.5.1  60.67 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
22  111.24.14.82  64.50 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
23  211.136.203.6  68.39 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
24  211.136.196.230  65.55 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
25  211.139.180.110  63.71 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
26  211.139.180.110  67.51 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
27  120.196.212.25  64.68 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT CN2 Gaming Broadband (TCP Mode, Max 30 Hop)
============================================================
traceroute to 119.121.0.1 (119.121.0.1), 30 hops max, 32 byte packets
 1  *
 2  172.30.83.68  0.38 ms  *  LAN Address
 3  172.30.94.118  4.68 ms  *  LAN Address
 4  172.30.94.89  3.96 ms  *  LAN Address
 5  172.30.94.3  2.86 ms  *  LAN Address
 6  172.30.94.186  3.90 ms  *  LAN Address
 7  104.254.113.180  2375.85 ms  *  China, Hong Kong, zenlayer.com
 8  128.1.64.102  0.53 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
 9  128.1.64.109  1.16 ms  AS21859  China, Taiwan, Taipei City, zenlayer.com
10  203.69.110.2  1.05 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
11  203.75.72.234  5.97 ms  AS3462  China, Taiwan, New Taipei City, cht.com.tw
12  *
13  220.128.27.78  1.75 ms  *  China, Taiwan, Taipei City, cht.com.tw
14  220.128.1.69  1.37 ms  *  China, Taiwan, Taipei City, cht.com.tw
15  211.22.33.73  30.55 ms  AS3462  China, Hong Kong, cht.com.tw
16  59.43.187.177  30.83 ms  *  China, Guangdong, Guangzhou, ChinaTelecom
17  *
18  59.43.130.161  36.55 ms  *  China, Guangdong, Guangzhou, ChinaTelecom
19  183.57.161.14  160.25 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
20  119.121.0.1  60.97 ms  AS4809  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;硬盘很有一如既往的大厂风范，网络对电信不友好。&lt;/p&gt;
</content:encoded></item><item><title>Hysteria流量转发记录</title><link>https://yushum.com/posts/hysteria%E6%B5%81%E9%87%8F%E8%BD%AC%E5%8F%91%E8%AE%B0%E5%BD%95/</link><guid isPermaLink="true">https://yushum.com/posts/hysteria%E6%B5%81%E9%87%8F%E8%BD%AC%E5%8F%91%E8%AE%B0%E5%BD%95/</guid><pubDate>Mon, 07 Mar 2022 09:15:47 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;在netcup购买的VPS安装了windows系统，mstsc连接很卡，所以想着该怎么优化一下。试过用联通转发，稳定是稳定，但是速度不够快，而且晚高峰速度也不行；换CN2转发，速度上来了，钱包下去了。所以想到用现有的亚洲VPS转发一下。&lt;/p&gt;
&lt;p&gt;用到的netcup VPS之前做过测评：&lt;a href=&quot;https://yushum.com/netcup-vps1337%E6%B5%8B%E8%AF%84/&quot;&gt;netcup vps1337测评&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;用来转发的VPS是越南的150M无限流量小鸡，移动使用效果极佳，之前也做过测评：&lt;a href=&quot;https://yushum.com/archives/395&quot;&gt;HostingViet越南河内VPS测评&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;HostingViet的购买地址：&lt;a href=&quot;https://hostingviet.vn/vps-starter-gia-re?dWlkPTIxMTEyNzExMTQxMDU1&quot;&gt;Cloud VPS Basic 1&lt;/a&gt; ，最便宜这款年付1,080,000越南盾，折合人民币24.89元/月。&lt;/p&gt;
&lt;p&gt;流量转发使用的是idc.wiki家的，应该是市面上最稳定的流量转发商家了。&lt;a href=&quot;https://idc.wiki/lndex.php?productid=2208&quot;&gt;官网地址&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;Hysteria&lt;/h2&gt;
&lt;h3&gt;介绍&lt;/h3&gt;
&lt;p&gt;想要连接到德国的netcup，需要通过：&lt;code&gt;本地=&amp;gt;移动转发节点=&amp;gt;HostingViet=&amp;gt;netcup&lt;/code&gt;，&lt;code&gt;本地=&amp;gt;移动转发节点=&amp;gt;HostingViet&lt;/code&gt;这一段的网络非常流畅，所以现在要加速的是&lt;code&gt;HostingViet=&amp;gt;netcup&lt;/code&gt;这一段。&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Hysteria 是一个功能丰富的，专为恶劣网络环境进行优化的网络工具（双边加速），比如卫星网络、拥挤的公共 Wi-Fi、在中国连接国外服务器等。 基于修改版的 QUIC 协议。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;功能类似于kcptun和以前的finalspeed，kcptun的名气很大，甚至已经进入了debian的官方仓库，所以我首先尝试的是kcptun，然而使用效果很不理想，即使使用了&lt;code&gt;fast3&lt;/code&gt;模式也和直连差不多。&lt;/p&gt;
&lt;h3&gt;安装配置&lt;/h3&gt;
&lt;p&gt;可以在&lt;a href=&quot;https://github.com/HyNetwork/hysteria/releases&quot;&gt;Releases&lt;/a&gt;找到编译好的文件，当然也可以自行编译。&lt;/p&gt;
&lt;h4&gt;服务端(Windows)&lt;/h4&gt;
&lt;p&gt;直接下载最新版的文件放到想要的目录下即可，&lt;a href=&quot;https://github.com/HyNetwork/hysteria/releases/download/v1.0.1/hysteria-tun-windows-6.0-amd64.exe&quot;&gt;点击下载&lt;/a&gt;，我是放在&lt;code&gt;C:\Applications\HyNetwork&lt;/code&gt;目录下，下载好后重命名为&lt;code&gt;hysteria.exe&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;在同文件夹下创建&lt;code&gt;config.json&lt;/code&gt;文件，将下列内容写入：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;{
	&quot;listen&quot;: &quot;:10000&quot;,
	&quot;up_mbps&quot;: 1000,
	&quot;down_mbps&quot;: 1000,
	&quot;cert&quot;: &quot;C:\\Your\\Path\\to\\ssl\\ssl.cer&quot;,
	&quot;key&quot;: &quot;C:\\Your\\Path\\to\\ssl\\ssl.key&quot;,
	&quot;obfs&quot;: &quot;fuck me till the daylight&quot;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;在&lt;code&gt;C:\Applications\HyNetwork&lt;/code&gt;目录下按住&lt;code&gt;Shift&lt;/code&gt;键点击右键，点击&lt;code&gt;在此处打开PowerShell窗口&lt;/code&gt;：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;.\hysteria.exe server
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;如此便可运行了。如果需要守护进程可以使用NSSM，参考&lt;a href=&quot;https://yushum.com/nginx%E5%AE%89%E8%A3%85%E6%95%99%E7%A8%8B%EF%BC%88windows%EF%BC%89/&quot;&gt;Nginx安装教程（Windows）&lt;/a&gt;。&lt;/p&gt;
&lt;h4&gt;客户端(Linux)&lt;/h4&gt;
&lt;p&gt;下面以amd64为例：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;wget https://github.com/HyNetwork/hysteria/releases/latest/download/hysteria-tun-linux-amd64 -O /usr/local/bin/hysteria &amp;amp;&amp;amp; \
chmod +x /usr/local/bin/hysteria &amp;amp;&amp;amp; \
mkdir /usr/local/etc/hysteria/ &amp;amp;&amp;amp; \
touch /usr/local/etc/hysteria/config.json &amp;amp;&amp;amp; \
chown -R nobody:nogroup /usr/local/etc/hysteria/
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;编辑&lt;code&gt;/usr/local/etc/hysteria/config.json&lt;/code&gt;文件如下：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;{
        &quot;server&quot;: &quot;your.server.IP:10000&quot;,
        &quot;obfs&quot;: &quot;fuck me till the daylight&quot;,
        &quot;up_mbps&quot;: 150,
        &quot;down_mbps&quot;: 150,
        &quot;relay_tcps&quot;: [
                {
                        &quot;listen&quot;: &quot;0.0.0.0:3389&quot;,
                        &quot;remote&quot;: &quot;127.0.0.1:3389&quot;,
                        &quot;timeout&quot;: 300
                }
        ],
        &quot;server_name&quot;: &quot;your.server.name&quot;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;如此便可使用&lt;code&gt;/usr/local/bin/hysteria -c /usr/local/etc/hysteria/config.json client&lt;/code&gt;运行了，也可以使用&lt;code&gt;systemd&lt;/code&gt;守护一下，给个配置：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[Unit]
Description=Hysteria, a feature-packed network utility optimized for networks of poor quality
Documentation=https://github.com/HyNetwork/hysteria/wiki
After=network.target
[Service]
User=nobody
CapabilityBoundingSet=CAP_NET_BIND_SERVICE CAP_NET_RAW
AmbientCapabilities=CAP_NET_BIND_SERVICE CAP_NET_RAW
NoNewPrivileges=true
WorkingDirectory=/usr/local/etc/hysteria
Environment=HYSTERIA_LOG_LEVEL=info
ExecStart=/usr/local/bin/hysteria -c /usr/local/etc/hysteria/config.json client
Restart=on-failure
RestartPreventExitStatus=1
RestartSec=5
[Install]
WantedBy=multi-user.target
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;安装好后即可通过客户端的3389端口访问服务端的3389端口。&lt;/p&gt;
&lt;h2&gt;测速&lt;/h2&gt;
&lt;h3&gt;直连&lt;/h3&gt;
&lt;p&gt;上传&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/03/07/b5b72c2f05844.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;下载&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/03/07/29289078978e7.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Hysteria&lt;/h3&gt;
&lt;p&gt;上传：&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/03/07/2e0b129d72574.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;下载：&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/03/07/21a73077b3d2b.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;结语&lt;/h2&gt;
&lt;p&gt;可以看到在超高延迟的场景下，使用hysteria可以加速十倍以上。利用的方式还有很多，不做赘述。&lt;/p&gt;
</content:encoded></item><item><title>Azure免费学生机测评</title><link>https://yushum.com/posts/azure%E5%85%8D%E8%B4%B9%E5%AD%A6%E7%94%9F%E6%9C%BA%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/azure%E5%85%8D%E8%B4%B9%E5%AD%A6%E7%94%9F%E6%9C%BA%E6%B5%8B%E8%AF%84/</guid><pubDate>Sun, 06 Mar 2022 21:41:00 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;拿学校邮箱申请了个学生机一直没用，测试一下留作纪念。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2022-02-18                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Sun 06 Mar 2022 08:00:56 AM EST

Basic System Information:
---------------------------------
Processor  : Intel(R) Xeon(R) Platinum 8272CL CPU @ 2.60GHz
CPU cores  : 1 @ 2593.905 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 914.5 MiB
Swap       : 975.0 MiB
Disk       : 61.8 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 2.44 MB/s      (611) | 27.40 MB/s     (428)
Write      | 2.46 MB/s      (615) | 27.81 MB/s     (434)
Total      | 4.90 MB/s     (1.2k) | 55.22 MB/s     (862)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 26.63 MB/s      (52) | 26.27 MB/s      (25)
Write      | 28.55 MB/s      (55) | 28.83 MB/s      (28)
Total      | 55.19 MB/s     (107) | 55.10 MB/s      (53)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 21.3 Mbits/sec  | 28.4 Mbits/sec
Online.net      | Paris, FR (10G)           | 863 Mbits/sec   | 968 Mbits/sec
WorldStream     | The Netherlands (10G)     | 801 Mbits/sec   | 855 Mbits/sec
WebHorizon      | Singapore (400M)          | 920 Mbits/sec   | 485 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 760 Mbits/sec   | 758 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 820 Mbits/sec   | 844 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 779 Mbits/sec   | 42.8 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 453 Mbits/sec   | 482 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 868
Multi Core      | 867
Full Test       | https://browser.geekbench.com/v5/cpu/13243017
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2022-02-22
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) Platinum 8272CL CPU @ 2.60GHz
 CPU Cores          : 1 @ 2593.905 MHz
 CPU Cache          : 36608 KB
 AES-NI             : Enabled
 VM-x/AMD-V         : Disabled
 Total Disk         : 61.8 GB (2.7 GB Used)
 Total Mem          : 914.5 MB (82.9 MB Used)
 Total Swap         : 975.0 MB (6.2 MB Used)
 System uptime      : 0 days, 0 hour 30 min
 Load average       : 0.00, 0.15, 0.22
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-11-cloud-amd64
 TCP CC             : bbr
 Virtualization     : Hyper-V
 Organization       : AS8075 Microsoft Corporation
 Location           : Hong Kong / HK
 Region             : Central and Western
----------------------------------------------------------------------
 I/O Speed(1st run) : 52.5 MB/s
 I/O Speed(2nd run) : 53.9 MB/s
 I/O Speed(3rd run) : 52.3 MB/s
 I/O Speed(average) : 52.9 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    998.59 Mbps       9302.30 Mbps        1.49 ms
 Los Angeles, US  507.25 Mbps       4739.25 Mbps        161.81 ms
 Dallas, US       422.24 Mbps       4117.35 Mbps        191.06 ms
 Montreal, CA     367.98 Mbps       939.41 Mbps         211.91 ms
 Paris, FR        470.37 Mbps       4405.33 Mbps        175.90 ms
 Amsterdam, NL    247.61 Mbps       2323.72 Mbps        323.40 ms
 Shanghai, CN     998.64 Mbps       1959.48 Mbps        34.40 ms
 Nanjing, CN      998.67 Mbps       6123.14 Mbps        31.13 ms
 Guangzhou, CN    78.91 Mbps        5400.53 Mbps        34.46 ms
 Hongkong, CN     999.04 Mbps       6729.13 Mbps        2.74 ms
 Seoul, KR        752.10 Mbps       701.96 Mbps         41.33 ms
----------------------------------------------------------------------
 Finished in        : 6 min 14 sec
 Timestamp          : 2022-03-06 08:21:23 EST
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Sun 06 Mar 2022 08:27:39 AM EST

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Microsoft Azure (13.75.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               No
 Netflix:                               Originals Only
 YouTube Premium:                       Yes (Region: HK)
 Amazon Prime Video:                    Yes (Region: HK)
 TVBAnywhere+:                          No
 iQyi Oversea Region:                   HK
 Viu.com:                               Yes (Region: HK)
 YouTube CDN:                           Hong Kong
 Netflix Preferred CDN:                 Associated with [Telxius Cable Argentina S.A.] in [Barranquilla ]
 Steam Currency:                        HKD
=======================================
=============[ Hong Kong ]=============
 Now E:                                 Yes
 Viu.TV:                                Yes
 MyTVSuper:                             No
 HBO GO Asia:                           Yes (Region: HK)
 BiliBili Hongkong/Macau/Taiwan:        Yes
=======================================
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/03/06/0b33f553e2301.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/03/06/8c647be27d46e.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/03/06/9ceb79d764369.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/03/06/55ab94e395713.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 32 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  *
 7  104.44.237.200  1.88 ms  AS8075  China, Hong Kong, microsoft.com
 8  219.158.33.113  6.72 ms  AS4837  China, Hong Kong, ChinaUnicom
 9  219.158.10.29  9.80 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
10  219.158.111.213  45.32 ms  AS4837  China, Beijing, ChinaUnicom
11  219.158.3.145  43.52 ms  AS4837  China, Beijing, ChinaUnicom
12  219.158.4.169  69.02 ms  AS4837  China, Beijing, ChinaUnicom
13  *
14  219.232.11.134  108.17 ms  AS4808  China, Beijing, ChinaUnicom
15  61.148.158.102  74.76 ms  AS4808  China, Beijing, ChinaUnicom
16  61.135.113.158  74.82 ms  AS4808  China, Beijing, ChinaUnicom
17  *
18  123.125.99.1  59.98 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.9 (180.149.128.9), 30 hops max, 32 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  *
 7  104.44.237.200  1.69 ms  AS8075  China, Hong Kong, microsoft.com
 8  203.215.232.209  9.51 ms  AS4134  China, Hong Kong, ChinaTelecom
 9  *
10  202.97.12.57  35.24 ms  AS4134  China, Beijing, ChinaTelecom
11  *
12  *
13  *
14  180.149.128.9  58.04 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  *
 7  104.44.237.202  1.89 ms  AS8075  China, Hong Kong, microsoft.com
 8  223.119.0.173  11.69 ms  AS58453  China, Hong Kong, ChinaMobile
 9  223.120.3.85  2.50 ms  AS58453  China, Hong Kong, ChinaMobile
10  *
11  *
12  *
13  *
14  221.176.16.213  41.02 ms  AS9808  China, Beijing, ChinaMobile
15  111.24.2.241  41.21 ms  AS9808  China, Beijing, ChinaMobile
16  111.24.3.18  51.01 ms  AS9808  China, Beijing, ChinaMobile
17  *
18  *
19  211.136.67.166  54.80 ms  AS56048  China, Beijing, ChinaMobile
20  211.136.95.226  52.39 ms  AS56048  China, Beijing, ChinaMobile
21  *
22  *
23  211.136.25.153  45.50 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;鹏博士商宽&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 32 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  *
 7  104.44.237.200  1.64 ms  AS8075  China, Hong Kong, microsoft.com
 8  219.158.33.113  7.36 ms  AS4837  China, Hong Kong, ChinaUnicom
 9  219.158.20.93  8.61 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
10  219.158.111.121  40.75 ms  AS4837  China, Beijing, ChinaUnicom
11  219.158.3.177  44.99 ms  AS4837  China, Beijing, ChinaUnicom
12  *
13  *
14  202.96.13.226  62.30 ms  AS4808  China, Beijing, ChinaUnicom
15  61.149.212.242  60.99 ms  AS4808  China, Beijing, ChinaUnicom
16  202.99.1.234  67.50 ms  AS4808  China, Beijing, ChinaUnicom
17  *
18  218.241.254.230  62.30 ms  http: 403  http: 403
19  218.241.245.158  60.74 ms  http: 403  http: 403
20  *
21  211.167.230.100  71.31 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;教育网&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 32 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  *
 7  104.44.11.141  2.36 ms  http: 403  http: 403
 8  104.44.13.5  1.82 ms  http: 403  http: 403
 9  63.223.17.110  2.94 ms  http: 403  http: 403
10  63.218.115.14  2.24 ms  http: 403  http: 403
11  63.223.17.110  2.61 ms  http: 403  http: 403
12  101.4.114.181  191.02 ms  http: 403  http: 403
13  63.218.115.14  12.01 ms  http: 403  http: 403
14  *
15  *
16  219.224.102.230  195.53 ms  http: 403  http: 403
17  101.4.118.213  195.17 ms  http: 403  http: 403
18  101.4.113.110  192.02 ms  http: 403  http: 403
19  219.224.102.230  195.52 ms  http: 403  http: 403
20  *
21  202.205.109.205  195.95 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;中国科技网&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 32 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  *
 7  104.44.237.202  1.67 ms  http: 403  http: 403
 8  104.44.11.146  1.43 ms  http: 403  http: 403
 9  63.223.15.70  2.26 ms  http: 403  http: 403
10  104.44.13.5  2.06 ms  http: 403  http: 403
11  63.223.15.70  2.32 ms  http: 403  http: 403
12  159.226.254.9  40.01 ms  http: 403  http: 403
13  63.217.16.34  2.47 ms  http: 403  http: 403
14  159.226.254.9  41.58 ms  http: 403  http: 403
15  159.226.254.1  48.24 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;广电网络&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 32 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  *
 7  104.44.237.202  1.63 ms  http: 403  http: 403
 8  219.158.33.113  2.01 ms  http: 403  http: 403
 9  219.158.10.29  12.56 ms  http: 403  http: 403
10  219.158.115.157  41.86 ms  http: 403  http: 403
11  219.158.3.49  46.19 ms  http: 403  http: 403
12  *
13  61.49.214.14  55.20 ms  http: 403  http: 403
14  202.106.37.50  232.90 ms  http: 403  http: 403
15  61.148.116.118  42.81 ms  http: 403  http: 403
16  211.156.128.97  50.06 ms  http: 403  http: 403
17  211.156.140.17  55.62 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.8.158 (58.247.8.158), 30 hops max, 32 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  *
 7  104.44.237.196  2.03 ms  AS8075  China, Hong Kong, microsoft.com
 8  219.158.33.109  8.58 ms  AS4837  China, Hong Kong, ChinaUnicom
 9  219.158.10.61  6.87 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
10  219.158.115.125  32.73 ms  AS4837  China, Shanghai, ChinaUnicom
11  219.158.19.74  36.57 ms  AS4837  China, Shanghai, ChinaUnicom
12  *
13  *
14  58.247.221.178  33.03 ms  AS17621  China, Shanghai, ChinaUnicom
15  139.226.225.22  32.39 ms  AS17621  China, Shanghai, ChinaUnicom
16  58.247.8.153  47.00 ms  AS17621  China, Shanghai, ChinaUnicom
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.5 (180.153.28.5), 30 hops max, 32 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  *
 7  104.44.237.196  1.59 ms  AS8075  China, Hong Kong, microsoft.com
 8  183.91.34.149  1.85 ms  *  China, Hong Kong, ChinaTelecom
 9  202.97.6.49  26.78 ms  AS4134  China, Shanghai, ChinaTelecom
10  202.97.12.181  29.91 ms  AS4134  China, Shanghai, ChinaTelecom
11  *
12  *
13  *
14  *
15  101.227.255.34  43.71 ms  AS4812  China, Shanghai, ChinaTelecom
16  *
17  *
18  *
19  180.153.28.5  43.67 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 32 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  *
 7  104.44.237.199  1.61 ms  AS8075  China, Hong Kong, microsoft.com
 8  223.119.47.33  2.28 ms  AS58453  China, Hong Kong, ChinaMobile
 9  223.120.3.85  10.90 ms  AS58453  China, Hong Kong, ChinaMobile
10  223.120.2.41  6.34 ms  AS58453  China, Hong Kong, ChinaMobile
11  *
12  *
13  221.183.55.22  46.74 ms  AS9808  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;9929&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 32 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  *
 7  104.44.11.141  2.30 ms  AS8075  China, Hong Kong, microsoft.com
 8  104.44.11.136  2.15 ms  AS8075  China, Hong Kong, microsoft.com
 9  104.44.236.206  1.22 ms  AS8075  China, Hong Kong, microsoft.com
10  123.255.91.154  6.34 ms  *  China, Hong Kong, hkix.net
11  43.252.86.65  3.30 ms  AS10099  China, Hong Kong, ChinaUnicom
12  202.77.23.161  4.42 ms  AS10099  China, Hong Kong, ChinaUnicom
13  218.105.7.217  11.11 ms  AS9929  China, Guangdong, Guangzhou, ChinaUnicom
14  218.105.2.157  12.12 ms  AS9929  China, Guangdong, Guangzhou, ChinaUnicom
15  218.105.131.182  35.12 ms  AS9929  China, Shanghai, ChinaUnicom
16  218.105.2.198  37.89 ms  AS9929  China, Shanghai, ChinaUnicom
17  210.13.64.110  38.66 ms  AS9929  China, Shanghai, ChinaUnicom
18  210.13.66.237  39.95 ms  AS9929  China, Shanghai, ChinaUnicom
19  210.13.64.110  47.06 ms  AS9929  China, Shanghai, ChinaUnicom
20  210.13.66.238  39.36 ms  AS9929  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 32 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  *
 7  104.44.11.125  2.39 ms  AS8075  China, Hong Kong, microsoft.com
 8  104.44.11.130  1.84 ms  AS8075  China, Hong Kong, microsoft.com
 9  63.218.211.10  2.05 ms  AS3491,AS31713  China, Hong Kong, pccw.com
10  59.43.189.81  29.48 ms  *  China, Shanghai, ChinaTelecom
11  63.218.210.78  2.49 ms  AS3491,AS31713  China, Hong Kong, pccw.com
12  *
13  61.152.24.182  44.78 ms  AS4812  China, Shanghai, ChinaTelecom
14  *
15  *
16  58.32.0.1  31.32 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  *
 7  104.44.237.199  1.71 ms  AS8075  China, Hong Kong, microsoft.com
 8  219.158.33.109  3.90 ms  AS4837  China, Hong Kong, ChinaUnicom
 9  219.158.20.93  11.23 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
10  219.158.96.206  11.49 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
11  219.158.8.117  19.71 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
12  112.89.0.62  26.05 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
13  120.80.79.194  20.29 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  *
 7  104.44.237.202  1.81 ms  AS8075  China, Hong Kong, microsoft.com
 8  203.215.232.209  6.62 ms  AS4134  China, Hong Kong, ChinaTelecom
 9  202.97.22.125  5.34 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
10  202.97.12.18  7.27 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
11  202.97.94.149  16.06 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
12  *
13  113.108.209.1  17.04 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 120.196.212.25 (120.196.212.25), 30 hops max, 32 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  *
 7  104.44.237.196  1.88 ms  AS8075  China, Hong Kong, microsoft.com
 8  223.119.47.33  2.62 ms  AS58453  China, Hong Kong, ChinaMobile
 9  223.120.2.117  2.71 ms  AS58453  China, Hong Kong, ChinaMobile
10  *
11  *
12  221.183.25.122  34.62 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
13  221.176.24.181  9.31 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
14  *
15  111.24.5.222  15.16 ms  AS9808  China, Guangdong, Shenzhen, ChinaMobile
16  *
17  211.136.196.214  32.46 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
18  211.139.180.110  12.91 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
19  211.139.180.110  14.49 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
20  *
21  *
22  120.196.212.25  23.37 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT CN2 Gaming Broadband (TCP Mode, Max 30 Hop)
============================================================
traceroute to 119.121.0.1 (119.121.0.1), 30 hops max, 32 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  *
 7  104.44.237.199  1.78 ms  AS8075  China, Hong Kong, microsoft.com
 8  104.44.45.198  2.15 ms  AS8075  United States, microsoft.com
 9  63.216.143.46  2.07 ms  AS3491,AS31713  China, Hong Kong, pccw.com
10  59.43.187.177  40.14 ms  *  China, Guangdong, Guangzhou, ChinaTelecom
11  63.218.211.66  1.76 ms  AS3491,AS31713  China, Hong Kong, pccw.com
12  63.218.210.138  2.46 ms  AS3491,AS31713  China, Hong Kong, pccw.com
13  59.43.130.121  9.01 ms  *  China, Guangdong, Guangzhou, ChinaTelecom
14  119.121.0.1  10.29 ms  AS4809  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;石头盘，网络极其优秀。&lt;/p&gt;
</content:encoded></item><item><title>青龙安装依赖</title><link>https://yushum.com/posts/%E9%9D%92%E9%BE%99%E5%AE%89%E8%A3%85%E4%BE%9D%E8%B5%96/</link><guid isPermaLink="true">https://yushum.com/posts/%E9%9D%92%E9%BE%99%E5%AE%89%E8%A3%85%E4%BE%9D%E8%B5%96/</guid><pubDate>Sat, 26 Feb 2022 21:58:06 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;最近折腾青龙每次迁移都要重新安装一大堆依赖，记录一下安装过程。&lt;/p&gt;
&lt;h2&gt;Linux&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;apk add bash curl gcc git jq libffi-dev make musl-dev openssl-dev perl perl-app-cpanminus perl-dev py3-pip python3 python3-dev wget g++ libxslt-dev
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Python&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;pip3 install wheel
pip3 install bs4 cryptography pyaes requests rsa tomli lxml
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;NodeJS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;pnpm i -g @types/node
pnpm i -g png-js date-fns axios crypto-js ts-md5 tslib dotenv got md5 requests typescript fs require jsdom download js-base64 tough-cookie tunnel ws jieba prettytable form-data json5 global-agent
pnpm i -g canvas --ignore-scripts
pnpm i -g @iarna/toml
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Bot&lt;/h2&gt;
&lt;p&gt;安装好上述依赖后再安装Bot&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;ql bot
&lt;/code&gt;&lt;/pre&gt;
</content:encoded></item><item><title>Kimsufi KS1测评</title><link>https://yushum.com/posts/kimsufi-ks1%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/kimsufi-ks1%E6%B5%8B%E8%AF%84/</guid><pubDate>Wed, 16 Feb 2022 11:41:57 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;买了5欧的KS1来做存储，记录一下性能和网络。CPU还不如上次买的1C的&lt;a href=&quot;https://yushum.com/netcup-vps-200-g8-10%E4%BC%98%E6%83%A0%E6%AC%BE%E6%B5%8B%E8%AF%84/&quot;&gt;netcup VPS&lt;/a&gt;，也只能做存储了。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-28                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Wed Feb 16 02:48:14 UTC 2022

Basic System Information:
---------------------------------
Processor  : Intel(R) Atom(TM) CPU N2800   @ 1.86GHz
CPU cores  : 4 @ 799.832 MHz
AES-NI     : ❌ Disabled
VM-x/AMD-V : ❌ Disabled
RAM        : 3.8 GiB
Swap       : 2.0 GiB
Disk       : 1.8 TiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 596.00 KB/s    (149) | 8.82 MB/s      (137)
Write      | 626.00 KB/s    (156) | 9.33 MB/s      (145)
Total      | 1.22 MB/s      (305) | 18.16 MB/s     (282)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 35.85 MB/s      (70) | 51.16 MB/s      (49)
Write      | 38.06 MB/s      (74) | 54.33 MB/s      (53)
Total      | 73.92 MB/s     (144) | 105.49 MB/s    (102)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 94.1 Mbits/sec  | 94.2 Mbits/sec
Online.net      | Paris, FR (10G)           | 94.1 Mbits/sec  | 94.1 Mbits/sec
WorldStream     | The Netherlands (10G)     | 94.0 Mbits/sec  | 94.1 Mbits/sec
WebHorizon      | Singapore (400M)          | 82.5 Mbits/sec  | 78.1 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 91.7 Mbits/sec  | 92.6 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 88.7 Mbits/sec  | 80.4 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 84.6 Mbits/sec  | 89.5 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 84.4 Mbits/sec  | 83.2 Mbits/sec

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 92.8 Mbits/sec  | 92.8 Mbits/sec
Online.net      | Paris, FR (10G)           | 92.8 Mbits/sec  | 92.8 Mbits/sec
WorldStream     | The Netherlands (10G)     | 92.7 Mbits/sec  | 92.8 Mbits/sec
WebHorizon      | Singapore (400M)          | 82.5 Mbits/sec  | 59.2 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 90.5 Mbits/sec  | 91.2 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 84.2 Mbits/sec  | 86.7 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 112
Multi Core      | 310
Full Test       | https://browser.geekbench.com/v5/cpu/12804497
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Intro              : https://teddysun.com/444.html
 Version            : v2022-01-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Atom(TM) CPU N2800   @ 1.86GHz
 CPU Cores          : 4
 CPU Frequency      : 1061.550 MHz
 CPU Cache          : 512 KB
 Total Disk         : 1843.2 GB (3.4 GB Used)
 Total Mem          : 3913 MB (76 MB Used)
 Total Swap         : 2047 MB (0 MB Used)
 System uptime      : 0 days, 0 hour 42 min
 Load average       : 0.88, 2.15, 1.52
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-11-amd64
 TCP CC             :
 Virtualization     : Dedicated
 Organization       : AS16276 OVH SAS
 Location           : Paris / FR
 Region             : Île-de-France
----------------------------------------------------------------------
 I/O Speed(1st run) : 118 MB/s
 I/O Speed(2nd run) : 120 MB/s
 I/O Speed(3rd run) : 120 MB/s
 I/O Speed(average) : 119.3 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    89.62 Mbps        86.03 Mbps          1.77 ms
 Los Angeles, US  93.74 Mbps        95.63 Mbps          138.94 ms
 Dallas, US       93.22 Mbps        95.07 Mbps          113.05 ms
 Montreal, CA     93.93 Mbps        95.11 Mbps          83.61 ms
 Paris, FR        92.80 Mbps        92.83 Mbps          5.21 ms
 Amsterdam, NL    93.74 Mbps        96.28 Mbps          135.71 ms
 Shanghai, CN     89.24 Mbps        98.13 Mbps          267.00 ms
 Nanjing, CN      35.87 Mbps        92.40 Mbps          292.26 ms
 Guangzhou, CN    2.63 Mbps         23.75 Mbps          282.98 ms
 Hongkong, CN     93.32 Mbps        100.18 Mbps         193.61 ms
 Seoul, KR        86.33 Mbps        94.81 Mbps          248.59 ms
 Tokyo, JP        84.06 Mbps        94.27 Mbps          249.78 ms
----------------------------------------------------------------------
 Finished in        : 6 min 46 sec
 Timestamp          : 2022-02-16 03:21:45
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Wed Feb 16 03:24:33 UTC 2022

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: OVH SAS (5.196.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               No
 Netflix:                               No
 YouTube Premium:                       Yes (Region: FR)
 Amazon Prime Video:                    Yes (Region: FR)
 TVBAnywhere+:                          Yes
 Tiktok Region:                         Failed
 iQyi Oversea Region:                   FR
 Viu.com:                               No
 YouTube CDN:                           Paris
 Netflix Preferred CDN:                 Failed
 Steam Currency:                        EUR
=======================================
===============[ Europe ]==============
 Rakuten TV:                            Yes
 Funimation:                            No
 HBO Nordic:                            Failed
 HBO GO Europe:                         No
 ---GB---
 Sky Go:                                No
 BritBox:                               No
 ITV Hub:                               No
 Channel 4:                             No
 Channel 5:                             No
 BBC iPLAYER:                           No
 Discovery+ UK:                         No
 ---FR---
 Salto:                                 No
 Canal+:                                Yes
 Molotov:                               Yes
 ---DE---
 Joyn:                                  No
 Sky:                                   No
 ZDF:                                   No
 ---NL---
 NLZIET:                                Failed
 videoland:                             Yes
 NPO Start Plus:                        No
 ---ES---
 HBO Spain:                             Failed
 PANTAYA:                               No
 ---IT---
 Rai Play:                              No
 ---RU---
 Amediateka:                            Yes
 ---PT---
 HBO Portugal:                          No
=======================================


 ** 正在测试IPv6解锁情况
--------------------------------
 ** 您的网络为: OVH SAS (2001:41d0:e:*:*)


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               No
 Disney+:                               No
 Netflix:                               No
 YouTube Premium:                       Yes (Region: FR)
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 Tiktok Region:                         Failed
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           Associated with LILLIXFR
 Netflix Preferred CDN:                 Failed
 Steam Currency:                        Failed (Network Connection)
=======================================
===============[ Europe ]==============
 Rakuten TV:                            Failed (Network Connection)
 Funimation:                            IPv6 Not Support
 HBO Nordic:                            Failed (Network Connection)
 HBO GO Europe:                         Failed (Network Connection)
 ---GB---
 Sky Go:                                Failed (Network Connection)
 BritBox:                               No
 ITV Hub:                               Failed (Network Connection)
 Channel 4:                             Failed (Network Connection)
 Channel 5:                             IPv6 Not Support
 BBC iPLAYER:                           Failed
 Discovery+ UK:                         IPv6 Not Support
 ---FR---
 Salto:                                 No
 Canal+:                                Failed (Network Connection)
 Molotov:                               Yes
 ---DE---
 Joyn:                                  Failed (Network Connection)
 Sky:                                   Failed (Network Connection)
 ZDF:                                   Failed (Network Connection)
 ---NL---
 NLZIET:                                Failed
 videoland:                             Yes
 NPO Start Plus:                        Failed (Network Connection)
 ---ES---
 HBO Spain:                             Failed (Network Connection)
 PANTAYA:                               Failed (Network Connection)
 ---IT---
 Rai Play:                              Failed (Network Connection)
 ---RU---
 Amediateka:                            Failed (Network Connection)
 ---PT---
 HBO Portugal:                          Failed (Network Connection)
=======================================
本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/02/16/2fb53346f8872.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/02/16/a23e49f605135.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/02/16/e39e05cb35d68.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/02/16/8b43bb0bfe643.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 32 byte packets
 1  5.196.74.252  0.87 ms  AS16276  France, Hauts-de-France, Gravelines, ovh.com
 2  10.17.135.48  0.86 ms  *  LAN Address
 3  10.73.0.238  0.51 ms  *  LAN Address
 4  10.95.33.8  1.49 ms  *  LAN Address
 5  213.186.32.215  4.95 ms  AS16276  ovh.com
 6  10.200.2.71  5.08 ms  *  LAN Address
 7  37.49.237.174  5.21 ms  *  France, Ile-de-France, Paris, franceix.net
 8  140.222.236.59  12.27 ms  *  Germany, Hesse, Frankfurt, verizon.com
 9  139.4.15.174  38.86 ms  AS702  Germany, Hesse, Frankfurt, verizon.com
10  219.158.20.201  175.86 ms  AS4837  China, Beijing, ChinaUnicom
11  219.158.16.69  200.84 ms  AS4837  China, Beijing, ChinaUnicom
12  *
13  202.96.12.6  170.28 ms  AS4808  China, Beijing, ChinaUnicom
14  61.148.158.10  164.32 ms  AS4808  China, Beijing, ChinaUnicom
15  124.65.194.122  179.73 ms  AS4808  China, Beijing, ChinaUnicom
16  61.135.113.154  175.46 ms  AS4808  China, Beijing, ChinaUnicom
17  *
18  123.125.99.1  174.46 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.9 (180.149.128.9), 30 hops max, 32 byte packets
 1  5.196.74.252  0.77 ms  AS16276  France, Hauts-de-France, Gravelines, ovh.com
 2  10.17.135.48  1.18 ms  *  LAN Address
 3  10.73.0.236  0.50 ms  *  LAN Address
 4  10.95.33.8  1.58 ms  *  LAN Address
 5  91.121.215.177  4.70 ms  AS16276  France, ovh.com
 6  10.200.2.65  5.21 ms  *  LAN Address
 7  *
 8  154.54.38.65  5.57 ms  AS174  France, Ile-de-France, Paris, cogentco.com
 9  154.54.57.69  8.49 ms  AS174  United Kingdom, London, cogentco.com
10  154.54.61.158  8.18 ms  AS174  United Kingdom, London, cogentco.com
11  149.14.81.226  9.88 ms  AS174  United Kingdom, London, cogentco.com
12  202.97.86.153  228.47 ms  AS4134  China, Beijing, ChinaTelecom
13  202.97.27.165  237.77 ms  AS4134  China, Beijing, ChinaTelecom
14  202.97.48.241  255.66 ms  AS4134  China, Beijing, ChinaTelecom
15  *
16  36.110.246.198  227.12 ms  AS23724  China, Beijing, ChinaTelecom
17  180.149.128.9  248.37 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
 1  5.196.74.252  0.93 ms  AS16276  France, Hauts-de-France, Gravelines, ovh.com
 2  10.17.135.48  0.95 ms  *  LAN Address
 3  10.73.0.238  0.49 ms  *  LAN Address
 4  10.95.33.8  1.52 ms  *  LAN Address
 5  91.121.215.177  4.57 ms  AS16276  France, ovh.com
 6  91.121.215.177  4.71 ms  AS16276  France, ovh.com
 7  10.200.2.77  5.18 ms  *  LAN Address
 8  223.120.10.113  12.00 ms  AS58453  Germany, Hesse, Frankfurt, ChinaMobile
 9  223.120.10.113  12.73 ms  AS58453  Germany, Hesse, Frankfurt, ChinaMobile
10  *
11  *
12  *
13  221.176.21.229  202.25 ms  AS9808  China, Beijing, ChinaMobile
14  111.24.2.134  145.61 ms  AS9808  China, Beijing, ChinaMobile
15  211.136.66.121  146.21 ms  AS56048  China, Beijing, ChinaMobile
16  211.136.66.121  298.14 ms  AS56048  China, Beijing, ChinaMobile
17  *
18  211.136.95.226  204.82 ms  AS56048  China, Beijing, ChinaMobile
19  *
20  *
21  211.136.25.153  205.04 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;鹏博士家宽&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 14.131.128.1 (14.131.128.1), 30 hops max, 32 byte packets
 1  5.196.74.252  0.79 ms  http: 403  http: 403
 2  10.17.135.48  0.83 ms  http: 403  http: 403
 3  10.73.0.244  0.55 ms  http: 403  http: 403
 4  10.95.33.10  1.95 ms  http: 403  http: 403
 5  213.251.128.65  3.67 ms  http: 403  http: 403
 6  10.200.0.139  3.76 ms  http: 403  http: 403
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;鹏博士商宽&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 32 byte packets
 1  5.196.74.252  0.77 ms  http: 403  http: 403
 2  10.17.135.50  0.84 ms  http: 403  http: 403
 3  10.73.0.232  0.49 ms  http: 403  http: 403
 4  10.95.33.8  1.68 ms  http: 403  http: 403
 5  213.186.32.215  4.98 ms  http: 403  http: 403
 6  10.200.2.71  5.11 ms  http: 403  http: 403
 7  37.49.237.174  5.36 ms  http: 403  http: 403
 8  140.222.235.165  12.14 ms  http: 403  http: 403
 9  139.4.15.178  12.84 ms  http: 403  http: 403
10  219.158.21.121  168.33 ms  http: 403  http: 403
11  219.158.3.29  178.37 ms  http: 403  http: 403
12  219.158.18.65  198.54 ms  http: 403  http: 403
13  *
14  61.148.153.238  181.07 ms  http: 403  http: 403
15  61.149.212.242  180.91 ms  http: 403  http: 403
16  202.99.1.238  162.66 ms  http: 403  http: 403
17  124.205.97.138  210.83 ms  http: 403  http: 403
18  218.241.254.226  164.65 ms  http: 403  http: 403
19  218.241.245.158  190.25 ms  http: 403  http: 403
20  *
21  211.167.230.100  170.77 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;教育网&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 32 byte packets
 1  5.196.74.252  0.75 ms  http: 403  http: 403
 2  10.17.135.50  0.93 ms  http: 403  http: 403
 3  10.73.0.234  0.56 ms  http: 403  http: 403
 4  10.95.33.8  1.50 ms  http: 403  http: 403
 5  91.121.215.177  4.87 ms  http: 403  http: 403
 6  10.200.2.77  5.14 ms  http: 403  http: 403
 7  10.200.2.77  5.17 ms  http: 403  http: 403
 8  *
 9  223.120.10.113  12.25 ms  http: 403  http: 403
10  223.120.3.122  195.54 ms  http: 403  http: 403
11  223.120.3.122  200.53 ms  http: 403  http: 403
12  223.120.3.86  194.07 ms  http: 403  http: 403
13  101.4.114.181  247.95 ms  http: 403  http: 403
14  *
15  *
16  101.4.118.213  248.43 ms  http: 403  http: 403
17  *
18  101.4.113.110  226.72 ms  http: 403  http: 403
19  *
20  202.205.109.205  248.23 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;中国科技网&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 32 byte packets
 1  5.196.74.252  0.79 ms  http: 403  http: 403
 2  10.17.135.50  0.75 ms  http: 403  http: 403
 3  10.73.0.234  0.46 ms  http: 403  http: 403
 4  10.95.33.10  1.49 ms  http: 403  http: 403
 5  91.121.215.177  4.80 ms  http: 403  http: 403
 6  10.200.2.73  5.05 ms  http: 403  http: 403
 7  *
 8  154.54.38.157  5.82 ms  http: 403  http: 403
 9  154.54.72.226  16.52 ms  http: 403  http: 403
10  154.54.6.26  251.45 ms  http: 403  http: 403
11  154.18.4.2  238.61 ms  http: 403  http: 403
12  159.226.254.61  280.46 ms  http: 403  http: 403
13  159.226.254.1  286.28 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;广电网络&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 32 byte packets
 1  5.196.74.252  1.35 ms  http: 403  http: 403
 2  10.17.135.48  0.78 ms  http: 403  http: 403
 3  10.73.0.236  0.42 ms  http: 403  http: 403
 4  10.95.33.8  3.30 ms  http: 403  http: 403
 5  91.121.215.177  4.80 ms  http: 403  http: 403
 6  10.200.2.71  24.62 ms  http: 403  http: 403
 7  37.49.237.174  5.08 ms  http: 403  http: 403
 8  140.222.235.165  11.88 ms  http: 403  http: 403
 9  139.4.15.178  13.77 ms  http: 403  http: 403
10  219.158.20.197  169.53 ms  http: 403  http: 403
11  219.158.3.49  201.25 ms  http: 403  http: 403
12  219.158.5.145  186.57 ms  http: 403  http: 403
13  *
14  125.33.187.78  1304.82 ms  http: 403  http: 403
15  211.89.235.250  200.38 ms  http: 403  http: 403
16  211.156.128.97  235.47 ms  http: 403  http: 403
17  211.156.140.17  218.46 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.8.158 (58.247.8.158), 30 hops max, 32 byte packets
 1  5.196.74.252  0.76 ms  AS16276  France, Hauts-de-France, Gravelines, ovh.com
 2  10.17.135.50  0.91 ms  *  LAN Address
 3  10.73.0.234  0.45 ms  *  LAN Address
 4  10.95.33.8  1.65 ms  *  LAN Address
 5  213.186.32.215  6.25 ms  AS16276  ovh.com
 6  10.200.2.67  6.75 ms  *  LAN Address
 7  *
 8  4.69.209.165  148.73 ms  AS3356  United States, California, San Jose, level3.com
 9  4.53.208.118  238.13 ms  AS3356  United States, California, San Jose, level3.com
10  219.158.116.233  264.89 ms  AS4837  China, Shanghai, ChinaUnicom
11  219.158.113.118  269.12 ms  AS4837  China, Shanghai, ChinaUnicom
12  219.158.113.113  262.08 ms  AS4837  China, Shanghai, ChinaUnicom
13  139.226.227.42  265.14 ms  AS17621  China, Shanghai, ChinaUnicom
14  58.247.221.178  266.27 ms  AS17621  China, Shanghai, ChinaUnicom
15  139.226.225.22  262.51 ms  AS17621  China, Shanghai, ChinaUnicom
16  58.247.8.153  271.87 ms  AS17621  China, Shanghai, ChinaUnicom
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.5 (180.153.28.5), 30 hops max, 32 byte packets
 1  5.196.74.252  0.75 ms  AS16276  France, Hauts-de-France, Gravelines, ovh.com
 2  10.17.135.48  0.76 ms  *  LAN Address
 3  10.73.0.238  0.45 ms  *  LAN Address
 4  10.95.33.10  1.74 ms  *  LAN Address
 5  91.121.215.177  5.20 ms  AS16276  France, ovh.com
 6  10.200.2.65  4.87 ms  *  LAN Address
 7  *
 8  154.54.61.9  5.52 ms  AS174  France, Ile-de-France, Paris, cogentco.com
 9  154.54.56.129  8.39 ms  AS174  United Kingdom, London, cogentco.com
10  154.54.61.162  8.03 ms  AS174  United Kingdom, London, cogentco.com
11  149.14.81.226  9.35 ms  AS174  United Kingdom, London, cogentco.com
12  202.97.93.153  260.69 ms  AS4134  China, Shanghai, ChinaTelecom
13  202.97.12.181  252.85 ms  AS4134  China, Shanghai, ChinaTelecom
14  202.97.50.133  283.49 ms  AS4134  China, Shanghai, ChinaTelecom
15  101.95.120.113  264.54 ms  AS4812  China, Shanghai, ChinaTelecom
16  101.95.207.226  279.27 ms  AS4812  China, Shanghai, ChinaTelecom
17  124.74.232.242  280.27 ms  AS4811  China, Shanghai, ChinaTelecom
18  101.227.255.46  276.43 ms  AS4812  China, Shanghai, ChinaTelecom
19  180.153.28.5  274.52 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 32 byte packets
 1  5.196.74.252  0.76 ms  AS16276  France, Hauts-de-France, Gravelines, ovh.com
 2  10.17.135.48  0.91 ms  *  LAN Address
 3  10.73.0.240  0.49 ms  *  LAN Address
 4  10.95.33.10  1.96 ms  *  LAN Address
 5  91.121.215.177  4.90 ms  AS16276  France, ovh.com
 6  10.200.2.77  5.19 ms  *  LAN Address
 7  *
 8  *
 9  223.120.10.73  15.34 ms  AS58453  United Kingdom, London, ChinaMobile
10  *
11  221.183.55.22  234.53 ms  AS9808  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;9929&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 32 byte packets
 1  5.196.74.252  0.82 ms  http: 403  http: 403
 2  10.17.135.50  0.87 ms  http: 403  http: 403
 3  10.73.0.232  0.55 ms  http: 403  http: 403
 4  10.95.33.8  1.91 ms  http: 403  http: 403
 5  213.186.32.215  5.96 ms  http: 403  http: 403
 6  10.200.2.65  5.02 ms  http: 403  http: 403
 7  *
 8  154.54.38.65  5.68 ms  http: 403  http: 403
 9  154.54.58.233  14.74 ms  http: 403  http: 403
10  130.117.1.117  14.43 ms  http: 403  http: 403
11  149.14.157.130  151.72 ms  http: 403  http: 403
12  210.78.28.169  149.32 ms  http: 403  http: 403
13  *
14  218.105.2.198  170.95 ms  http: 403  http: 403
15  210.13.116.82  176.05 ms  http: 403  http: 403
16  210.13.64.109  173.20 ms  http: 403  http: 403
17  210.13.64.110  171.82 ms  http: 403  http: 403
18  210.13.66.237  174.28 ms  http: 403  http: 403
19  210.13.66.238  174.69 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 32 byte packets
 1  5.196.74.252  0.79 ms  http: 403  http: 403
 2  10.17.135.50  0.73 ms  http: 403  http: 403
 3  10.73.0.244  0.51 ms  http: 403  http: 403
 4  10.95.33.10  1.85 ms  http: 403  http: 403
 5  91.121.131.19  11.01 ms  http: 403  http: 403
 6  10.200.0.19  9.28 ms  http: 403  http: 403
 7  80.81.196.212  160.66 ms  http: 403  http: 403
 8  203.208.131.50  173.64 ms  http: 403  http: 403
 9  59.43.180.125  195.25 ms  http: 403  http: 403
10  *
11  *
12  101.95.88.174  262.27 ms  http: 403  http: 403
13  58.32.0.1  203.98 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  5.196.74.252  0.77 ms  AS16276  France, Hauts-de-France, Gravelines, ovh.com
 2  10.17.135.48  0.78 ms  *  LAN Address
 3  10.73.0.232  0.49 ms  *  LAN Address
 4  10.95.33.10  1.55 ms  *  LAN Address
 5  91.121.215.177  4.87 ms  AS16276  France, ovh.com
 6  10.200.2.75  5.14 ms  *  LAN Address
 7  *
 8  4.69.153.129  148.43 ms  AS3356  United States, California, Los Angeles, level3.com
 9  4.26.0.122  250.97 ms  AS3356  United States, California, Los Angeles, level3.com
10  219.158.96.33  239.42 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
11  219.158.96.206  229.16 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
12  219.158.103.217  237.74 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
13  157.18.0.30  242.36 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
14  120.80.170.254  239.23 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
 1  5.196.74.252  0.78 ms  http: 403  http: 403
 2  10.17.135.50  0.99 ms  *  LAN Address
 3  10.73.0.244  0.55 ms  *  LAN Address
 4  10.95.33.8  1.51 ms  http: 403  http: 403
 5  91.121.215.177  5.19 ms  AS16276  France, ovh.com
 6  10.200.2.69  5.68 ms  http: 403  http: 403
 7  *
 8  193.251.133.154  14.46 ms  http: 403  http: 403
 9  81.173.22.1  43.06 ms  http: 403  http: 403
10  202.97.89.109  285.02 ms  http: 403  http: 403
11  81.173.22.1  45.41 ms  http: 403  http: 403
12  202.97.89.109  275.90 ms  http: 403  http: 403
13  202.97.94.105  298.29 ms  http: 403  http: 403
14  113.108.209.1  288.09 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 120.196.212.25 (120.196.212.25), 30 hops max, 32 byte packets
 1  5.196.74.252  0.78 ms  http: 403  http: 403
 2  10.17.135.50  0.82 ms  http: 403  http: 403
 3  10.73.0.240  0.59 ms  http: 403  http: 403
 4  10.95.33.10  3.19 ms  http: 403  http: 403
 5  10.73.248.0  1.43 ms  http: 403  http: 403
 6  10.200.2.77  9.82 ms  http: 403  http: 403
 7  10.200.2.77  5.44 ms  http: 403  http: 403
 8  *
 9  223.120.10.109  12.19 ms  http: 403  http: 403
10  *
11  221.183.55.62  237.54 ms  http: 403  http: 403
12  221.183.52.85  175.43 ms  http: 403  http: 403
13  221.183.68.138  295.33 ms  http: 403  http: 403
14  111.24.14.141  182.10 ms  http: 403  http: 403
15  111.24.5.218  239.41 ms  http: 403  http: 403
16  111.24.5.30  315.63 ms  http: 403  http: 403
17  183.235.226.237  239.21 ms  http: 403  http: 403
18  211.136.196.250  185.76 ms  http: 403  http: 403
19  *
20  *
21  *
22  120.196.212.25  243.04 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT CN2 Gaming Broadband (TCP Mode, Max 30 Hop)
============================================================
traceroute to 119.121.0.1 (119.121.0.1), 30 hops max, 32 byte packets
 1  5.196.74.252  0.83 ms  http: 403  http: 403
 2  10.17.135.48  0.87 ms  http: 403  http: 403
 3  10.73.0.232  0.50 ms  http: 403  http: 403
 4  10.95.33.10  1.93 ms  http: 403  http: 403
 5  91.121.215.177  4.85 ms  http: 403  http: 403
 6  10.200.2.75  5.19 ms  http: 403  http: 403
 7  *
 8  *
 9  212.187.165.22  17.38 ms  http: 403  http: 403
10  59.43.184.125  178.41 ms  http: 403  http: 403
11  *
12  59.43.130.145  179.35 ms  http: 403  http: 403
13  *
14  *
15  119.121.0.1  180.81 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;廉价可靠的存储服务器。&lt;/p&gt;
</content:encoded></item><item><title>Ubuntu 18.04 安装 Mastodon</title><link>https://yushum.com/posts/ubuntu-18-04-%E5%AE%89%E8%A3%85-mastodon/</link><guid isPermaLink="true">https://yushum.com/posts/ubuntu-18-04-%E5%AE%89%E8%A3%85-mastodon/</guid><pubDate>Thu, 10 Feb 2022 21:33:30 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;本文已失效，建议跟随官方教程&lt;a href=&quot;https://docs.joinmastodon.org/admin/install/&quot;&gt;Installing from source&lt;/a&gt;进行部署，安装ElasticSearch出现问题可以看看这个&lt;a href=&quot;https://github.com/mastodon/mastodon/issues/18625&quot;&gt;Fail to create the ElasticSearch indices&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;前提条件&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;一台你有root访问权限的运行 Ubuntu 18.04 的机器&lt;/li&gt;
&lt;li&gt;一个用于Mastodon站点的域名（或一个子域名），例如：example.com&lt;/li&gt;
&lt;li&gt;一个电子邮件发送服务提供商，或其他SMTP服务器&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;软件仓库&lt;/h3&gt;
&lt;p&gt;首先确保已经安装curl：&lt;/p&gt;
&lt;h4&gt;Node.js&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;curl -sL https://deb.nodesource.com/setup_12.x | bash -
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Yarn&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
echo &quot;deb https://dl.yarnpkg.com/debian/ stable main&quot; | tee /etc/apt/sources.list.d/yarn.list
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;软件包&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;apt update
apt install -y \
  imagemagick ffmpeg libpq-dev libxml2-dev libxslt1-dev file git-core \
  g++ libprotobuf-dev protobuf-compiler pkg-config nodejs gcc autoconf \
  bison build-essential libssl-dev libyaml-dev libreadline6-dev \
  zlib1g-dev libncurses5-dev libffi-dev libgdbm-dev \
  nginx redis-server redis-tools postgresql postgresql-contrib \
  certbot python3-certbot-nginx yarn libidn11-dev libicu-dev libjemalloc-dev
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;安装 Ruby&lt;/h3&gt;
&lt;p&gt;因为使用 rbenv 可以更容易的获得正确的版本并在新版本发布后进行更新，我们将使用 rbenv 来管理Ruby版本。rbenv 必须安装在单个Linux用户中，因此，我们首先需要使用以下命令创建一个Mastodon用户：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;adduser --disabled-login mastodon
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;切换到mastodon用户：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;su - mastodon
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;执行以下步骤安装 rbenv 和 rbenv-build：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;git clone https://github.com/rbenv/rbenv.git ~/.rbenv
cd ~/.rbenv &amp;amp;&amp;amp; src/configure &amp;amp;&amp;amp; make -C src
echo &apos;export PATH=&quot;$HOME/.rbenv/bin:$PATH&quot;&apos; &amp;gt;&amp;gt; ~/.bashrc
echo &apos;eval &quot;$(rbenv init -)&quot;&apos; &amp;gt;&amp;gt; ~/.bashrc
exec bash
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;上述操作完成，我们便可以安装正确的 Ruby 版本，通过以下命令获取版本号：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;curl https://raw.githubusercontent.com/mastodon/mastodon/main/.ruby-version
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;此时显示&lt;code&gt;3.0.3&lt;/code&gt;，则所需版本为&lt;code&gt;3.0.3&lt;/code&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;RUBY_CONFIGURE_OPTS=--with-jemalloc rbenv install 3.0.3
rbenv global 3.0.3
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;我们同样需要安装 bundler：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;gem install bundler --no-document
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;返回root用户：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;exit
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;配置&lt;/h2&gt;
&lt;h3&gt;配置 PostgreSQL&lt;/h3&gt;
&lt;h4&gt;性能调优（可选）&lt;/h4&gt;
&lt;p&gt;为了优化性能，你可以使用 &lt;a href=&quot;https://pgtune.leopard.in.ua/#/&quot;&gt;pgTune&lt;/a&gt; 生成一个合适的配置文件（DB Type是Web application）。编辑 &lt;code&gt;/etc/postgresql/10/main/postgresql.conf&lt;/code&gt; 中的相应数值并使用 &lt;code&gt;systemctl restart postgresql&lt;/code&gt; 命令重启 PostgreSQL。&lt;/p&gt;
&lt;h4&gt;创建帐户&lt;/h4&gt;
&lt;p&gt;你需创建一个供Mastodon使用的PostgreSQL帐户。创建一个使用“ident”认证方式的帐户是最容易的配置方法，即PostgreSQL帐户不需要独立的密码并由同名Linux用户使用。&lt;/p&gt;
&lt;p&gt;打开控制台：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo -u postgres psql //由于此时在root目录下，所以会提示postgres用户没有权限
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;在控制台中执行：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;CREATE USER mastodon CREATEDB;
\q
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;完成！&lt;/p&gt;
&lt;h3&gt;配置 Mastodon&lt;/h3&gt;
&lt;p&gt;现在该下载Mastodon代码了。切换至mastodon用户：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;su - mastodon
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;检出代码&lt;/h4&gt;
&lt;p&gt;使用git下载最新&lt;code&gt;main&lt;/code&gt;分支Mastodon：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;git clone https://github.com/tootsuite/mastodon.git live &amp;amp;&amp;amp; cd live
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;安装依赖&lt;/h4&gt;
&lt;p&gt;现在，安装Ruby和JavaScript依赖：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;bundle config deployment &apos;true&apos;
bundle config without &apos;development test&apos;
bundle install -j$(getconf _NPROCESSORS_ONLN)
yarn install --pure-lockfile
&lt;/code&gt;&lt;/pre&gt;
&lt;blockquote&gt;
&lt;p&gt;两个&lt;code&gt;bundle config&lt;/code&gt;命令仅仅第一次安装依赖时需要。如果你之后进行升级或重安装依赖，只需要&lt;code&gt;bundle install&lt;/code&gt;就够了。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h4&gt;生成配置文件&lt;/h4&gt;
&lt;p&gt;运行交互式安装向导，注意如果你的SMTP服务提供商只支持SSL，此时无法完成邮件测试，需要之后在&lt;code&gt;.env.production&lt;/code&gt;文件中添加&lt;code&gt;SMTP_SSL=true&lt;/code&gt;：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;RAILS_ENV=production bundle exec rake mastodon:setup
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;它将：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;创建一个配置文件&lt;/li&gt;
&lt;li&gt;预编译静态文件&lt;/li&gt;
&lt;li&gt;创建数据库schema&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;配置文件被保存在&lt;code&gt;.env.production&lt;/code&gt;。如果你愿意的话，你可以查看并编辑这个文件。请参阅&lt;a href=&quot;https://docs.joinmastodon.org/zh-cn/admin/config/&quot;&gt;配置文件的文档&lt;/a&gt;。&lt;/p&gt;
&lt;p&gt;这里提供一下我所用的smtp配置文件片段：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;SMTP_SERVER=smtp.xxx.xxx
SMTP_PORT=465
SMTP_LOGIN=noreply@example.com
SMTP_PASSWORD=password
SMTP_AUTH_METHOD=plain
SMTP_OPENSSL_VERIFY_MODE=none
SMTP_FROM_ADDRESS=&apos;Mastodon &amp;lt;noreply@example.com&amp;gt;&apos;
SMTP_SSL=true
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;你已经完成需使用mastodon用户进行的操作，请切换回root用户：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;exit
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;配置 nginx&lt;/h3&gt;
&lt;p&gt;从Mastodon目录复制配置文件模版到nginx：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;cp /home/mastodon/live/dist/nginx.conf /etc/nginx/sites-available/mastodon
ln -s /etc/nginx/sites-available/mastodon /etc/nginx/sites-enabled/mastodon
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;编辑 &lt;code&gt;/etc/nginx/sites-available/mastodon&lt;/code&gt;，替换 &lt;code&gt;example.com&lt;/code&gt; 为你自己的域名，你可以根据自己的需求做出其它的一些调整。&lt;/p&gt;
&lt;p&gt;重载 nginx 以使变更生效：&lt;/p&gt;
&lt;h3&gt;获取SSL证书&lt;/h3&gt;
&lt;p&gt;我们将使用 Let’s Encrypt 获取一个免费的SSL证书：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;certbot --nginx -d example.com
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;这个命令将获取一个证书，自动更新 &lt;code&gt;/etc/nginx/sites-available/mastodon&lt;/code&gt; 以使用新证书并重载nginx以使变更生效。&lt;/p&gt;
&lt;p&gt;现在你应该能够通过浏览器访问你的域名，然后看到一只大象锤击电脑屏幕的错误页面。这是因为我们还没有启动Mastodon进程。&lt;/p&gt;
&lt;h3&gt;配置 systemd 服务&lt;/h3&gt;
&lt;p&gt;从Mastodon目录复制systemd服务模版：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;cp /home/mastodon/live/dist/mastodon-*.service /etc/systemd/system/
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;如果你在任何时候偏离默认值，请检查用户名和路径是否正确：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$EDITOR /etc/systemd/system/mastodon-*.service
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;最后，启动新systemd服务并将该服务设为开机自动激活：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;systemctl daemon-reload
systemctl enable --now mastodon-web mastodon-sidekiq mastodon-streaming
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;他们将在开机启动时自动开始运行。&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;欢呼吧！你现在可以从浏览器中访问你的域名了！&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;参考&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;https://docs.joinmastodon.org/admin/install/&lt;/li&gt;
&lt;li&gt;https://docs.joinmastodon.org/zh-cn/admin/install/&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>Docker-ce搭建Pinry</title><link>https://yushum.com/posts/docker%E6%90%AD%E5%BB%BApinry/</link><guid isPermaLink="true">https://yushum.com/posts/docker%E6%90%AD%E5%BB%BApinry/</guid><pubDate>Tue, 08 Feb 2022 08:48:24 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;blockquote&gt;
&lt;p&gt;Pinry的开源核心，是一个为希望以容易浏览的格式保存、标记和分享图像、视频和网页的人而设的平铺图像板系统。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Pinry是一个瀑布流式的图片分享系统，主要使用目标是个人收藏展示。&lt;/p&gt;
&lt;h2&gt;准备工作&lt;/h2&gt;
&lt;h3&gt;Docker-ce&lt;/h3&gt;
&lt;h4&gt;设置存储库&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;apt update
apt install ca-certificates curl gnupg lsb-release
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo &quot;deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable&quot; | sudo tee /etc/apt/sources.list.d/docker.list &amp;gt; /dev/null
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;安装Docker引擎&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;apt-get update
apt-get install docker-ce docker-ce-cli containerd.io
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Docker Compose&lt;/h3&gt;
&lt;h4&gt;安装&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;mkdir -p /usr/local/lib/docker/cli-plugins
curl -SL https://github.com/docker/compose/releases/download/v2.2.3/docker-compose-linux-x86_64 -o /usr/local/lib/docker/cli-plugins/docker-compose
chmod +x /usr/local/lib/docker/cli-plugins/docker-compose
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;测试&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;docker compose version
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;有出现&lt;code&gt;Docker Compose version v2.2.3&lt;/code&gt;的字样即安装成功。&lt;/p&gt;
&lt;h2&gt;Pinry&lt;/h2&gt;
&lt;h3&gt;安装&lt;/h3&gt;
&lt;p&gt;创建&lt;code&gt;docker-compose.yml&lt;/code&gt;文件&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;mkdir /opt/pinry &amp;amp;&amp;amp; cd /opt/pinry &amp;amp;&amp;amp; vi docker-compose.yml
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;将下列内容复制进去&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;version: &quot;3.5&quot;

services:
  pinry:
    image: getpinry/pinry
    container_name: pinry
    restart: always
    ports:
      - 2048:80
    volumes:
      - /opt/pinry/data:/data
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;保存退出，运行&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;docker compose up -d
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;配置&lt;/h3&gt;
&lt;p&gt;创建管理员账号&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;docker exec -it pinry python manage.py createsuperuser --settings=pinry.settings.docker
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;调整配置文件&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;vi /opt/pinry/data/local_settings.py
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;修改下面两行&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;ALLOWED_HOSTS = [&apos;*&apos;] //改为要使用的域名
ALLOW_NEW_REGISTRATIONS = True //修改为False
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;保存后重启容器&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;docker compose restart
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;反代&lt;/h3&gt;
&lt;p&gt;使用nginx反代，只给出一个配置文件，申请SSL证书可以看&lt;a href=&quot;https://yushum.com/%E4%BD%BF%E7%94%A8acme-sh%E7%94%B3%E8%AF%B7lets-encrypt%E9%80%9A%E9%85%8D%E7%AC%A6%E8%AF%81%E4%B9%A6/&quot;&gt;这篇&lt;/a&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;server {
    listen 80 default_server;
    listen [::]:80 default_server;

    location / {
        return 301 https://$host$request_uri;
    }
}

server {
    listen 443 ssl http2;
    listen [::]:443 ssl http2;

    ssl_certificate /path/to/signed_cert_plus_intermediates;
    ssl_certificate_key /path/to/private_key;
    ssl_session_timeout 1d;
    ssl_session_cache shared:MozSSL:10m;
    ssl_session_tickets off;


    ssl_protocols TLSv1.3;
    ssl_prefer_server_ciphers off;


    add_header Strict-Transport-Security &quot;max-age=63072000&quot; always;


    ssl_stapling on;
    ssl_stapling_verify on;


    ssl_trusted_certificate /path/to/root_CA_cert_plus_intermediates;


    resolver 127.0.0.1;


    server_name pinry.example.com;

    location / {
    proxy_set_header Host $host;
    proxy_pass       http://127.0.0.1:2048;
    proxy_buffering  off;
    proxy_set_header X-Forwarded-For $remote_addr;
    proxy_set_header X-Real-IP $remote_addr;
    }
    
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;设置好nginx，打开域名即可看到Pinry的页面。在地址后加上&lt;code&gt;/admin&lt;/code&gt;即可进入管理页面。&lt;/p&gt;
&lt;h2&gt;结语&lt;/h2&gt;
&lt;p&gt;Pinry官方的文档写的很乱，还有很多排版错误。另外由于本人学艺不精，尝试修改数据库为MariaDB失败。总体而言，Pinry适合个人使用，性能不错，可以当作收藏夹，但是不适合大规模使用。&lt;/p&gt;
</content:encoded></item><item><title>netcup VPS 200 G8 10%优惠款测评</title><link>https://yushum.com/posts/netcup-vps-200-g8-10%E4%BC%98%E6%83%A0%E6%AC%BE%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/netcup-vps-200-g8-10%E4%BC%98%E6%83%A0%E6%AC%BE%E6%B5%8B%E8%AF%84/</guid><pubDate>Mon, 07 Feb 2022 17:42:29 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;netcup的VPS 200 G8原价是2.69欧/月，用上10%优惠码并免税后是2.03欧/月，做个测试看看。&lt;/p&gt;
&lt;p&gt;比以前的特价款性能好一些：点击查看 &lt;a href=&quot;https://yushum.com/netcup%E8%AF%84%E6%B5%8B%EF%BC%9A2020%E4%BC%98%E6%83%A0%E6%AC%BE/&quot;&gt;1&lt;/a&gt; &lt;a href=&quot;https://yushum.com/netcup-vps1337%E6%B5%8B%E8%AF%84/&quot;&gt;2&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;netcup免税账号可以到我的发卡站购买： &lt;a href=&quot;https://ka.yushum.com/buy/2&quot;&gt;点击前往&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-28                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

2022年 02月 07日 星期一 17:05:07 CST

Basic System Information:
---------------------------------
Processor  : QEMU Virtual CPU version 2.5+
CPU cores  : 1 @ 1996.233 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 1.9 GiB
Swap       : 975.0 MiB
Disk       : 18.6 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 16.40 MB/s    (4.1k) | 187.03 MB/s   (2.9k)
Write      | 16.41 MB/s    (4.1k) | 188.02 MB/s   (2.9k)
Total      | 32.81 MB/s    (8.2k) | 375.06 MB/s   (5.8k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 689.23 MB/s   (1.3k) | 1.19 GB/s     (1.1k)
Write      | 725.85 MB/s   (1.4k) | 1.27 GB/s     (1.2k)
Total      | 1.41 GB/s     (2.7k) | 2.46 GB/s     (2.4k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 671 Mbits/sec   | 702 Mbits/sec
Online.net      | Paris, FR (10G)           | 673 Mbits/sec   | 709 Mbits/sec
WorldStream     | The Netherlands (10G)     | 633 Mbits/sec   | 870 Mbits/sec
WebHorizon      | Singapore (400M)          | 366 Mbits/sec   | 500 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 520 Mbits/sec   | 572 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 530 Mbits/sec   | 661 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 543 Mbits/sec   | 672 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 456 Mbits/sec   | 144 Mbits/sec

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 660 Mbits/sec   | 848 Mbits/sec
Online.net      | Paris, FR (10G)           | busy            | 687 Mbits/sec
WorldStream     | The Netherlands (10G)     | busy            | busy
WebHorizon      | Singapore (400M)          | 384 Mbits/sec   | 493 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 462 Mbits/sec   | 857 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 541 Mbits/sec   | 638 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 849
Multi Core      | 852
Full Test       | https://browser.geekbench.com/v5/cpu/12632377
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Intro              : https://teddysun.com/444.html
 Version            : v2022-01-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : QEMU Virtual CPU version 2.5+
 CPU Cores          : 1
 CPU Frequency      : 1996.233 MHz
 CPU Cache          : 512 KB
 Total Disk         : 19.0 GB (3.0 GB Used)
 Total Mem          : 1985 MB (45 MB Used)
 Total Swap         : 974 MB (0 MB Used)
 System uptime      : 0 days, 0 hour 13 min
 Load average       : 0.08, 0.20, 0.09
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-11-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 Organization       : AS197540 netcup GmbH
 Location           : Karlsruhe / DE
 Region             : Baden-Württemberg
----------------------------------------------------------------------
 I/O Speed(1st run) : 757 MB/s
 I/O Speed(2nd run) : 809 MB/s
 I/O Speed(3rd run) : 895 MB/s
 I/O Speed(average) : 820.3 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    612.99 Mbps       527.47 Mbps         0.22 ms
 Los Angeles, US  527.38 Mbps       536.98 Mbps         147.96 ms
 Dallas, US       650.04 Mbps       584.44 Mbps         120.06 ms
 Montreal, CA     581.83 Mbps       940.87 Mbps         91.34 ms
 Paris, FR        712.93 Mbps       806.01 Mbps         19.10 ms
 Amsterdam, NL    662.00 Mbps       846.31 Mbps         10.89 ms
 Shanghai, CN     472.63 Mbps       504.88 Mbps         174.54 ms
 Nanjing, CN      358.58 Mbps       721.18 Mbps         224.77 ms
 Guangzhou, CN    3.51 Mbps         418.65 Mbps         225.16 ms
 Hongkong, CN     404.54 Mbps       767.29 Mbps         203.19 ms
 Seoul, KR        186.92 Mbps       430.20 Mbps         240.13 ms
 Singapore, SG    242.60 Mbps       781.46 Mbps         321.22 ms
 Tokyo, JP        177.41 Mbps       373.63 Mbps         258.24 ms
----------------------------------------------------------------------
 Finished in        : 6 min 40 sec
 Timestamp          : 2022-02-07 17:23:05
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: 2022年 02月 07日 星期一 17:23:54 CST

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: netcup GmbH (89.58.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               Yes (Region: DE)
 Netflix:                               Originals Only
 YouTube Premium:                       Yes (Region: DE)
 Amazon Prime Video:                    Yes (Region: DE)
 TVBAnywhere+:                          Yes
 Tiktok Region:                         DE
 iQyi Oversea Region:                   DE
 Viu.com:                               No
 YouTube CDN:                           Associated with ANEXIAAT
 Netflix Preferred CDN:                 Associated with [Anexia] in [Vienna]
 Steam Currency:                        EUR
=======================================
===============[ Europe ]==============
 Rakuten TV:                            Yes
 Funimation:                            No
 HBO Nordic:                            Failed
 HBO GO Europe:                         No
 ---GB---
 Sky Go:                                Yes
 BritBox:                               No
 ITV Hub:                               No
 Channel 4:                             No
 Channel 5:                             No
 BBC iPLAYER:                           No
 Discovery+ UK:                         No
 ---FR---
 Salto:                                 No
 Canal+:                                No
 Molotov:                               No
 ---DE---
 Joyn:                                  Yes
 Sky:                                   Yes
 ZDF:                                   Yes
 ---NL---
 NLZIET:                                Failed
 videoland:                             Yes
 NPO Start Plus:                        No
 ---ES---
 HBO Spain:                             Failed
 PANTAYA:                               No
 ---IT---
 Rai Play:                              No
 ---RU---
 Amediateka:                            No
 ---PT---
 HBO Portugal:                          No
=======================================


 ** 正在测试IPv6解锁情况
--------------------------------
 ** 您的网络为: netcup GmbH (2a03:4000:64:*:*)


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               No
 Disney+:                               No
 Netflix:                               Originals Only
 YouTube Premium:                       Yes (Region: DE)
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 Tiktok Region:                         Failed
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           Associated with ANEXIAAT
 Netflix Preferred CDN:                 Failed
 Steam Currency:                        Failed (Network Connection)
=======================================
===============[ Europe ]==============
 Rakuten TV:                            Failed (Network Connection)
 Funimation:                            IPv6 Not Support
 HBO Nordic:                            Failed (Network Connection)
 HBO GO Europe:                         Failed (Network Connection)
 ---GB---
 Sky Go:                                Failed (Network Connection)
 BritBox:                               No
 ITV Hub:                               Failed (Network Connection)
 Channel 4:                             Failed (Network Connection)
 Channel 5:                             IPv6 Not Support
 BBC iPLAYER:                           Failed
 Discovery+ UK:                         IPv6 Not Support
 ---FR---
 Salto:                                 No
 Canal+:                                Failed (Network Connection)
 Molotov:                               No
 ---DE---
 Joyn:                                  Failed (Network Connection)
 Sky:                                   Failed (Network Connection)
 ZDF:                                   Failed (Network Connection)
 ---NL---
 NLZIET:                                Failed
 videoland:                             Yes
 NPO Start Plus:                        Failed (Network Connection)
 ---ES---
 HBO Spain:                             Failed (Network Connection)
 PANTAYA:                               Failed (Network Connection)
 ---IT---
 Rai Play:                              Failed (Network Connection)
 ---RU---
 Amediateka:                            Failed (Network Connection)
 ---PT---
 HBO Portugal:                          Failed (Network Connection)
=======================================
本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/02/07/915d960b844e5.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/02/07/f6619ba4f8232.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/02/07/faad8a5e864f3.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/02/07/f29d2c7a59fc6.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 32 byte packets
 1  89.58.32.2  0.36 ms  AS197540  Germany, Bavaria, Nuremberg, netcup.de
 2  144.208.211.10  0.43 ms  AS47147  Europe Regions, anexia.com
 3  144.208.208.139  5.41 ms  AS47147  Germany, Bavaria, Nuremberg, anexia.com
 4  144.208.208.141  3.99 ms  AS47147  Germany, Hesse, Frankfurt, anexia.com
 5  144.208.208.143  3.80 ms  AS47147  Germany, Hesse, Frankfurt, anexia.com
 6  62.115.14.116  4.03 ms  AS1299  Germany, Hesse, Frankfurt, telia.com
 7  62.115.114.90  3.93 ms  AS1299  Germany, Hesse, Frankfurt, telia.com
 8  *
 9  *
10  219.158.14.85  156.33 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
11  219.158.16.77  253.37 ms  AS4837  China, Beijing, ChinaUnicom
12  219.158.3.145  280.76 ms  AS4837  China, Beijing, ChinaUnicom
13  *
14  61.148.7.82  227.93 ms  AS4808  China, Beijing, ChinaUnicom
15  219.232.11.134  255.15 ms  AS4808  China, Beijing, ChinaUnicom
16  124.65.194.138  297.64 ms  AS4808  China, Beijing, ChinaUnicom
17  *
18  *
19  123.125.99.1  237.79 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.9 (180.149.128.9), 30 hops max, 32 byte packets
 1  89.58.32.2  0.23 ms  AS197540  Germany, Bavaria, Nuremberg, netcup.de
 2  144.208.211.10  21.99 ms  AS47147  Europe Regions, anexia.com
 3  144.208.208.139  27.32 ms  AS47147  Germany, Bavaria, Nuremberg, anexia.com
 4  144.208.208.141  3.64 ms  AS47147  Germany, Hesse, Frankfurt, anexia.com
 5  144.208.208.143  3.72 ms  AS47147  Germany, Hesse, Frankfurt, anexia.com
 6  62.115.14.116  3.68 ms  AS1299  Germany, Hesse, Frankfurt, telia.com
 7  118.85.205.81  5.58 ms  AS4134  Germany, Hesse, Frankfurt, ChinaTelecom
 8  202.97.43.33  138.78 ms  AS4134  China, Beijing, ChinaTelecom
 9  202.97.81.169  196.11 ms  AS4134  China, Beijing, ChinaTelecom
10  202.97.48.249  208.71 ms  AS4134  China, Beijing, ChinaTelecom
11  *
12  *
13  180.149.128.9  192.67 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
 1  89.58.32.2  0.89 ms  AS197540  Germany, Bavaria, Nuremberg, netcup.de
 2  144.208.211.10  0.38 ms  AS47147  Europe Regions, anexia.com
 3  144.208.208.139  5.53 ms  AS47147  Germany, Bavaria, Nuremberg, anexia.com
 4  144.208.208.141  3.65 ms  AS47147  Germany, Hesse, Frankfurt, anexia.com
 5  144.208.208.143  3.75 ms  AS47147  Germany, Hesse, Frankfurt, anexia.com
 6  62.115.14.116  3.66 ms  AS1299  Germany, Hesse, Frankfurt, telia.com
 7  62.115.114.88  153.91 ms  AS1299  Germany, Hesse, Frankfurt, telia.com
 8  62.115.122.138  147.29 ms  AS1299  France, Ile-de-France, Paris, telia.com
 9  62.115.122.159  90.99 ms  AS1299  United States, Virginia, Ashburn, telia.com
10  62.115.114.86  150.59 ms  AS1299  United States, California, Los Angeles, telia.com
11  62.115.171.219  144.95 ms  AS1299  United States, California, Los Angeles, telia.com
12  223.120.6.22  152.37 ms  AS58453  United States, California, Los Angeles, ChinaMobile
13  *
14  *
15  *
16  *
17  111.24.2.101  300.90 ms  AS9808  China, Beijing, ChinaMobile
18  *
19  *
20  111.24.2.105  244.09 ms  AS9808  China, Beijing, ChinaMobile
21  211.136.67.166  239.35 ms  AS56048  China, Beijing, ChinaMobile
22  211.136.95.226  299.91 ms  AS56048  China, Beijing, ChinaMobile
23  *
24  211.136.25.153  244.23 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;鹏博士家宽&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 14.131.128.1 (14.131.128.1), 30 hops max, 32 byte packets
 1  89.58.32.2  2.66 ms  http: 403  http: 403
 2  144.208.211.10  0.34 ms  http: 403  http: 403
 3  144.208.208.139  3.71 ms  http: 403  http: 403
 4  *
 5  *
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;鹏博士商宽&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 32 byte packets
 1  89.58.32.2  0.18 ms  http: 403  http: 403
 2  144.208.211.10  0.30 ms  http: 403  http: 403
 3  144.208.208.139  3.64 ms  http: 403  http: 403
 4  144.208.208.141  6.25 ms  http: 403  http: 403
 5  144.208.208.143  3.68 ms  http: 403  http: 403
 6  62.115.14.116  3.97 ms  http: 403  http: 403
 7  62.115.114.90  4.06 ms  http: 403  http: 403
 8  *
 9  *
10  219.158.11.181  160.95 ms  http: 403  http: 403
11  219.158.3.177  239.05 ms  http: 403  http: 403
12  219.158.16.69  250.44 ms  http: 403  http: 403
13  *
14  125.33.186.82  267.14 ms  http: 403  http: 403
15  61.149.212.242  209.63 ms  http: 403  http: 403
16  202.99.1.234  235.43 ms  http: 403  http: 403
17  202.99.1.126  263.24 ms  http: 403  http: 403
18  124.205.97.138  264.04 ms  http: 403  http: 403
19  218.241.245.54  278.88 ms  http: 403  http: 403
20  218.241.245.54  271.59 ms  http: 403  http: 403
21  *
22  211.167.230.100  224.44 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;教育网&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 32 byte packets
 1  89.58.32.2  0.20 ms  http: 403  http: 403
 2  144.208.211.10  0.37 ms  http: 403  http: 403
 3  144.208.208.139  11.06 ms  http: 403  http: 403
 4  144.208.208.141  3.69 ms  http: 403  http: 403
 5  144.208.208.143  9.40 ms  http: 403  http: 403
 6  62.115.14.116  3.71 ms  http: 403  http: 403
 7  62.115.114.88  173.23 ms  http: 403  http: 403
 8  62.115.114.203  18.73 ms  http: 403  http: 403
 9  62.115.135.141  172.72 ms  http: 403  http: 403
10  80.239.130.173  172.94 ms  http: 403  http: 403
11  101.4.114.181  206.79 ms  http: 403  http: 403
12  101.4.114.221  206.23 ms  http: 403  http: 403
13  *
14  *
15  101.4.113.110  206.30 ms  http: 403  http: 403
16  219.224.102.230  207.29 ms  http: 403  http: 403
17  *
18  202.205.109.205  206.51 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;中国科技网&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 32 byte packets
 1  89.58.32.2  0.16 ms  http: 403  http: 403
 2  144.208.211.10  1.01 ms  http: 403  http: 403
 3  144.208.208.139  16.47 ms  http: 403  http: 403
 4  144.208.208.141  13.87 ms  http: 403  http: 403
 5  144.208.208.143  4.49 ms  http: 403  http: 403
 6  62.115.14.116  3.68 ms  http: 403  http: 403
 7  130.117.14.197  3.85 ms  http: 403  http: 403
 8  130.117.0.1  4.08 ms  http: 403  http: 403
 9  154.54.58.238  13.57 ms  http: 403  http: 403
10  154.54.72.226  21.88 ms  http: 403  http: 403
11  154.54.6.26  249.45 ms  http: 403  http: 403
12  154.18.4.2  198.47 ms  http: 403  http: 403
13  159.226.254.61  226.52 ms  http: 403  http: 403
14  159.226.254.1  224.25 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;广电网络&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 32 byte packets
 1  89.58.32.2  0.21 ms  http: 403  http: 403
 2  144.208.211.10  0.35 ms  http: 403  http: 403
 3  144.208.208.139  3.74 ms  http: 403  http: 403
 4  144.208.208.141  3.91 ms  http: 403  http: 403
 5  144.208.208.143  4.49 ms  http: 403  http: 403
 6  62.115.14.116  3.65 ms  http: 403  http: 403
 7  118.85.205.81  5.77 ms  http: 403  http: 403
 8  202.97.43.33  138.69 ms  http: 403  http: 403
 9  202.97.27.165  194.27 ms  http: 403  http: 403
10  202.97.34.73  197.44 ms  http: 403  http: 403
11  *
12  *
13  106.120.252.154  207.58 ms  http: 403  http: 403
14  211.156.131.93  210.57 ms  http: 403  http: 403
15  211.156.140.17  162.97 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.8.158 (58.247.8.158), 30 hops max, 32 byte packets
 1  89.58.32.2  0.19 ms  AS197540  Germany, Bavaria, Nuremberg, netcup.de
 2  144.208.211.10  0.67 ms  AS47147  Europe Regions, anexia.com
 3  144.208.208.139  3.69 ms  AS47147  Germany, Bavaria, Nuremberg, anexia.com
 4  144.208.208.141  4.11 ms  AS47147  Germany, Hesse, Frankfurt, anexia.com
 5  144.208.208.143  6.36 ms  AS47147  Germany, Hesse, Frankfurt, anexia.com
 6  62.115.14.116  3.60 ms  AS1299  Germany, Hesse, Frankfurt, telia.com
 7  62.115.114.90  4.37 ms  AS1299  Germany, Hesse, Frankfurt, telia.com
 8  62.115.142.195  7.40 ms  AS1299  telia.com
 9  *
10  219.158.20.173  166.78 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
11  219.158.115.125  209.06 ms  AS4837  China, Shanghai, ChinaUnicom
12  219.158.113.138  194.63 ms  AS4837  China, Shanghai, ChinaUnicom
13  *
14  *
15  58.247.221.178  183.46 ms  AS17621  China, Shanghai, ChinaUnicom
16  139.226.225.22  206.68 ms  AS17621  China, Shanghai, ChinaUnicom
17  58.247.8.153  202.52 ms  AS17621  China, Shanghai, ChinaUnicom
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.5 (180.153.28.5), 30 hops max, 32 byte packets
 1  89.58.32.2  0.27 ms  AS197540  Germany, Bavaria, Nuremberg, netcup.de
 2  144.208.211.10  0.57 ms  AS47147  Europe Regions, anexia.com
 3  144.208.208.139  4.13 ms  AS47147  Germany, Bavaria, Nuremberg, anexia.com
 4  144.208.208.141  3.88 ms  AS47147  Germany, Hesse, Frankfurt, anexia.com
 5  144.208.208.143  4.77 ms  AS47147  Germany, Hesse, Frankfurt, anexia.com
 6  62.115.14.116  3.67 ms  AS1299  Germany, Hesse, Frankfurt, telia.com
 7  118.85.205.81  5.28 ms  AS4134  Germany, Hesse, Frankfurt, ChinaTelecom
 8  *
 9  202.97.51.162  223.29 ms  AS4134  China, Shanghai, ChinaTelecom
10  202.97.24.137  238.48 ms  AS4134  China, Shanghai, ChinaTelecom
11  61.152.25.133  238.71 ms  AS4812  China, Shanghai, ChinaTelecom
12  101.95.207.10  236.05 ms  AS4812  China, Shanghai, ChinaTelecom
13  101.95.225.38  237.55 ms  AS4811  China, Shanghai, ChinaTelecom
14  *
15  180.153.28.5  235.57 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 32 byte packets
 1  89.58.32.2  0.33 ms  AS197540  Germany, Bavaria, Nuremberg, netcup.de
 2  144.208.211.10  0.34 ms  AS47147  Europe Regions, anexia.com
 3  144.208.208.139  3.90 ms  AS47147  Germany, Bavaria, Nuremberg, anexia.com
 4  144.208.208.141  6.60 ms  AS47147  Germany, Hesse, Frankfurt, anexia.com
 5  144.208.208.143  3.83 ms  AS47147  Germany, Hesse, Frankfurt, anexia.com
 6  62.115.14.116  3.64 ms  AS1299  Germany, Hesse, Frankfurt, telia.com
 7  62.115.47.45  4.10 ms  AS1299  Germany, Hesse, Frankfurt, telia.com
 8  223.120.10.85  13.68 ms  AS58453  Germany, Hesse, Frankfurt, ChinaMobile
 9  *
10  *
11  221.183.55.22  227.46 ms  AS9808  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;9929&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 32 byte packets
 1  89.58.32.2  0.28 ms  http: 403  http: 403
 2  144.208.211.10  0.57 ms  http: 403  http: 403
 3  144.208.208.139  3.64 ms  http: 403  http: 403
 4  144.208.208.141  10.68 ms  http: 403  http: 403
 5  *
 6  62.154.14.185  30.01 ms  http: 403  http: 403
 7  80.156.162.218  151.60 ms  http: 403  http: 403
 8  210.78.28.173  153.38 ms  http: 403  http: 403
 9  *
10  218.105.2.198  236.81 ms  http: 403  http: 403
11  210.13.112.254  172.76 ms  http: 403  http: 403
12  *
13  210.13.64.110  175.02 ms  http: 403  http: 403
14  210.13.66.237  181.63 ms  http: 403  http: 403
15  210.13.66.238  189.92 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 32 byte packets
 1  89.58.32.2  0.20 ms  http: 403  http: 403
 2  144.208.211.10  1.39 ms  http: 403  http: 403
 3  144.208.208.139  3.89 ms  http: 403  http: 403
 4  144.208.208.141  3.75 ms  http: 403  http: 403
 5  144.208.208.143  5.16 ms  http: 403  http: 403
 6  62.115.14.116  45.79 ms  http: 403  http: 403
 7  62.115.114.90  17.72 ms  http: 403  http: 403
 8  *
 9  62.115.135.24  17.38 ms  http: 403  http: 403
10  62.115.122.189  19.37 ms  http: 403  http: 403
11  80.239.193.226  17.28 ms  http: 403  http: 403
12  59.43.246.221  201.27 ms  http: 403  http: 403
13  *
14  59.43.130.209  218.24 ms  http: 403  http: 403
15  101.95.88.58  201.72 ms  http: 403  http: 403
16  58.32.0.1  206.61 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  89.58.32.2  0.40 ms  AS197540  Germany, Bavaria, Nuremberg, netcup.de
 2  144.208.211.10  0.45 ms  AS47147  Europe Regions, anexia.com
 3  144.208.208.139  3.88 ms  AS47147  Germany, Bavaria, Nuremberg, anexia.com
 4  144.208.208.141  3.91 ms  AS47147  Germany, Hesse, Frankfurt, anexia.com
 5  144.208.208.143  3.73 ms  AS47147  Germany, Hesse, Frankfurt, anexia.com
 6  62.115.14.116  3.65 ms  AS1299  Germany, Hesse, Frankfurt, telia.com
 7  62.115.114.90  4.08 ms  AS1299  Germany, Hesse, Frankfurt, telia.com
 8  62.115.124.117  3.99 ms  AS1299  Germany, Hesse, Frankfurt, telia.com
 9  *
10  219.158.20.177  184.14 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
11  219.158.22.142  172.21 ms  AS4837  China, Shanghai, ChinaUnicom
12  219.158.6.209  185.06 ms  AS4837  China, Shanghai, ChinaUnicom
13  112.92.0.62  173.36 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
14  *
15  112.92.0.62  184.92 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
16  120.80.170.250  164.11 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
 1  89.58.32.2  0.21 ms  AS197540  Germany, Bavaria, Nuremberg, netcup.de
 2  144.208.211.10  0.32 ms  AS47147  Europe Regions, anexia.com
 3  144.208.208.139  3.82 ms  AS47147  Germany, Bavaria, Nuremberg, anexia.com
 4  144.208.208.141  72.75 ms  AS47147  Germany, Hesse, Frankfurt, anexia.com
 5  144.208.208.143  3.79 ms  AS47147  Germany, Hesse, Frankfurt, anexia.com
 6  62.115.14.116  3.75 ms  AS1299  Germany, Hesse, Frankfurt, telia.com
 7  118.85.205.81  4.45 ms  AS4134  Germany, Hesse, Frankfurt, ChinaTelecom
 8  202.97.52.93  206.32 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
 9  202.97.94.97  204.59 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
10  202.97.94.141  208.77 ms  http: 403  http: 403
11  113.96.4.54  207.93 ms  http: 403  http: 403
12  113.108.209.1  198.40 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 120.196.212.25 (120.196.212.25), 30 hops max, 32 byte packets
 1  89.58.32.2  0.21 ms  http: 403  http: 403
 2  144.208.211.10  0.33 ms  http: 403  http: 403
 3  144.208.208.139  4.20 ms  http: 403  http: 403
 4  144.208.208.141  73.10 ms  http: 403  http: 403
 5  144.208.208.143  3.69 ms  http: 403  http: 403
 6  62.115.14.116  3.70 ms  http: 403  http: 403
 7  62.115.47.45  4.22 ms  http: 403  http: 403
 8  223.120.10.41  4.47 ms  http: 403  http: 403
 9  *
10  *
11  221.183.55.94  187.34 ms  http: 403  http: 403
12  221.176.24.57  277.23 ms  http: 403  http: 403
13  221.176.22.157  322.92 ms  http: 403  http: 403
14  111.24.4.237  224.06 ms  http: 403  http: 403
15  111.24.5.30  185.76 ms  http: 403  http: 403
16  211.136.196.214  185.30 ms  http: 403  http: 403
17  183.235.226.237  267.45 ms  http: 403  http: 403
18  211.136.196.218  263.53 ms  http: 403  http: 403
19  *
20  *
21  *
22  120.196.212.25  234.59 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT CN2 Gaming Broadband (TCP Mode, Max 30 Hop)
============================================================
traceroute to 119.121.0.1 (119.121.0.1), 30 hops max, 32 byte packets
 1  89.58.32.2  0.22 ms  http: 403  http: 403
 2  144.208.211.10  0.61 ms  http: 403  http: 403
 3  144.208.208.139  3.69 ms  http: 403  http: 403
 4  144.208.208.141  65.70 ms  http: 403  http: 403
 5  144.208.208.143  4.00 ms  http: 403  http: 403
 6  62.115.14.116  3.66 ms  http: 403  http: 403
 7  62.115.114.90  17.78 ms  http: 403  http: 403
 8  62.115.122.138  17.26 ms  http: 403  http: 403
 9  62.115.133.238  19.45 ms  http: 403  http: 403
10  62.115.122.189  19.06 ms  http: 403  http: 403
11  80.239.193.226  18.12 ms  http: 403  http: 403
12  59.43.184.125  185.78 ms  http: 403  http: 403
13  *
14  59.43.130.125  187.76 ms  http: 403  http: 403
15  *
16  119.121.0.1  203.54 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;CPU似乎是AMD的，硬盘不错，到国内网络一般。&lt;/p&gt;
</content:encoded></item><item><title>Nearoute香港VPS测评</title><link>https://yushum.com/posts/nearoute%E9%A6%99%E6%B8%AFvps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/nearoute%E9%A6%99%E6%B8%AFvps%E6%B5%8B%E8%AF%84/</guid><pubDate>Tue, 01 Feb 2022 22:56:45 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;Nearoute是一个成立不久的商家，服务态度很好，技术也不错，流量单向计费。关注了一段时间，感觉有点当年DMIT的感觉。&lt;a href=&quot;https://my.nearoute.com&quot;&gt;点击前往官网&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;最近有新春充值送赠金活动：&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;充$20送$10.88 赠金24个月内有效&lt;br /&gt;
赠金券码：&lt;code&gt;NEWYEAR-20&lt;/code&gt; (充值前输入)&lt;/p&gt;
&lt;p&gt;充$200送$88.88 3个月有效&lt;br /&gt;
赠金券码：&lt;code&gt;NEWYEAR-200&lt;/code&gt; (充值前输入)&lt;/p&gt;
&lt;p&gt;并且新春活动期间创建的所有产品均不限速（10Gbps），新春活动结束后所有新创建产品默认限速1Gbps。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;speedtest测速：&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.speedtest.net/result/c/09bf81bd-7848-4917-9b4a-bf391d97ec05.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-28                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Tue Feb  1 14:22:21 UTC 2022

Basic System Information:
---------------------------------
Processor  : AMD EPYC 7402 24-Core Processor
CPU cores  : 1 @ 2800.000 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 978.8 MiB
Swap       : 0.0 KiB
Disk       : 14.7 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 11.34 MB/s    (2.8k) | 39.17 MB/s     (612)
Write      | 11.33 MB/s    (2.8k) | 39.45 MB/s     (616)
Total      | 22.67 MB/s    (5.6k) | 78.62 MB/s    (1.2k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 204.59 MB/s    (399) | 304.10 MB/s    (296)
Write      | 215.46 MB/s    (420) | 324.35 MB/s    (316)
Total      | 420.05 MB/s    (819) | 628.45 MB/s    (612)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 543 Mbits/sec   | 636 Mbits/sec
Online.net      | Paris, FR (10G)           | 1.02 Gbits/sec  | 932 Mbits/sec
WorldStream     | The Netherlands (10G)     | 851 Mbits/sec   | 910 Mbits/sec
WebHorizon      | Singapore (400M)          | busy            | 514 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 780 Mbits/sec   | 796 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 886 Mbits/sec   | 825 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 1.05 Gbits/sec  | 1.02 Gbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 434 Mbits/sec   | 477 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 976
Multi Core      | 971
Full Test       | https://browser.geekbench.com/v5/cpu/12529085
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Intro              : https://teddysun.com/444.html
 Version            : v2022-01-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : AMD EPYC 7402 24-Core Processor
 CPU Cores          : 1
 CPU Frequency      : 2800.000 MHz
 CPU Cache          : 512 KB
 Total Disk         : 15.1 GB (0.8 GB Used)
 Total Mem          : 978 MB (52 MB Used)
 Total Swap         : 0 MB (0 MB Used)
 System uptime      : 0 days, 0 hour 27 min
 Load average       : 0.44, 0.32, 0.16
 OS                 : Debian GNU/Linux 11
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.10.0-10-cloud-amd64
 TCP CC             : bbr
 Virtualization     : KVM
 Organization       : AS51847 Nearoute Limited
 Location           : Hong Kong / HK
 Region             : Central and Western
----------------------------------------------------------------------
 I/O Speed(1st run) : 293 MB/s
 I/O Speed(2nd run) : 184 MB/s
 I/O Speed(3rd run) : 187 MB/s
 I/O Speed(average) : 221.3 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    975.79 Mbps       1104.83 Mbps        0.37 ms
 Los Angeles, US  502.88 Mbps       5016.18 Mbps        157.67 ms
 Dallas, US       422.84 Mbps       4086.34 Mbps        194.43 ms
 Montreal, CA     353.81 Mbps       936.82 Mbps         220.56 ms
 Paris, FR        456.68 Mbps       4401.01 Mbps        180.16 ms
 Amsterdam, NL    265.87 Mbps       2413.55 Mbps        305.74 ms
 Shanghai, CN     808.67 Mbps       1423.44 Mbps        108.70 ms
 Nanjing, CN      51.46 Mbps        4.15 Mbps           263.70 ms
 Guangzhou, CN    25.98 Mbps        72.70 Mbps          224.89 ms
 Hongkong, CN     8818.81 Mbps      6521.23 Mbps        1.21 ms
 Seoul, KR        796.95 Mbps       818.20 Mbps         44.06 ms
 Singapore, SG    1827.35 Mbps      8201.81 Mbps        36.24 ms
 Tokyo, JP        828.15 Mbps       1080.87 Mbps        53.12 ms
----------------------------------------------------------------------
 Finished in        : 6 min 29 sec
 Timestamp          : 2022-02-01 14:38:23
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Tue Feb  1 14:41:47 UTC 2022

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Nearoute Limited (103.172.*.*)


============[ Multination ]============
 Dazn:                                  Yes (Region: HK)
 HotStar:                               No
 Disney+:                               Yes (Region: HK)
 Netflix:                               Yes (Region: HK)
 YouTube Premium:                       No  (Region: CN)
 Amazon Prime Video:                    Yes (Region: HK)
 TVBAnywhere+:                          No
 Tiktok Region:                         SG
 iQyi Oversea Region:                   HK
 Viu.com:                               Yes (Region: HK)
 YouTube Region:                        Check Failed (Network Connection)
 Netflix Preferred CDN:                 Hong Kong
 Steam Currency:                        HKD
=======================================
=============[ Hong Kong ]=============
 Now E:                                 Yes
 Viu.TV:                                Yes
 MyTVSuper:                             Yes
 HBO GO Asia:                           Yes (Region: HK)
 BiliBili Hongkong/Macau/Taiwan:        Yes
=======================================
当前主机不支持IPv6,跳过...

本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/02/01/e6b00ad84fbc7.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/02/01/f470e0bd491cd.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/02/01/f1b867a15a726.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/02/01/66e340020bea6.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 32 byte packets
 1  10.0.0.1  0.27 ms  *  LAN Address
 2  169.254.73.145  0.32 ms  *  The Local Link
 3  146.19.174.1  0.56 ms  AS51847  China, Hong Kong, nearoute.io
 4  128.241.9.180  0.64 ms  AS2914  ntt.com
 5  129.250.5.70  2.11 ms  AS2914  ntt.com
 6  129.250.2.42  65.85 ms  AS2914  Japan, Osaka, ntt.com
 7  129.250.7.31  57.48 ms  AS2914  Japan, Osaka, ntt.com
 8  219.158.34.153  119.35 ms  AS4837  China, Beijing, ChinaUnicom
 9  219.158.3.181  119.43 ms  AS4837  China, Beijing, ChinaUnicom
10  *
11  *
12  124.65.63.46  178.59 ms  AS4808  China, Beijing, ChinaUnicom
13  124.65.194.134  161.72 ms  AS4808  China, Beijing, ChinaUnicom
14  61.135.113.158  163.01 ms  AS4808  China, Beijing, ChinaUnicom
15  *
16  123.125.99.1  171.93 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.9 (180.149.128.9), 30 hops max, 32 byte packets
 1  10.0.0.1  0.24 ms  *  LAN Address
 2  169.254.73.145  0.23 ms  *  The Local Link
 3  146.19.174.1  0.44 ms  AS51847  China, Hong Kong, nearoute.io
 4  128.241.9.180  3.28 ms  AS2914  ntt.com
 5  129.250.5.70  2.02 ms  AS2914  ntt.com
 6  *
 7  129.250.2.74  37.92 ms  AS2914  Singapore, ntt.com
 8  183.91.56.125  264.26 ms  AS4134  Singapore, ChinaTelecom
 9  *
10  *
11  *
12  202.97.97.229  299.66 ms  AS4134  China, Beijing, ChinaTelecom
13  36.110.248.134  293.94 ms  AS23724  China, Beijing, ChinaTelecom
14  36.110.248.246  299.02 ms  AS23724  China, Beijing, ChinaTelecom
15  *
16  180.149.128.9  288.59 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
 1  10.0.0.1  0.33 ms  *  LAN Address
 2  169.254.73.145  0.27 ms  *  The Local Link
 3  146.19.174.1  0.53 ms  AS51847  China, Hong Kong, nearoute.io
 4  128.241.9.180  0.57 ms  AS2914  ntt.com
 5  129.250.5.10  8.14 ms  AS2914  ntt.com
 6  129.250.5.33  1.38 ms  AS2914  ntt.com
 7  *
 8  223.120.2.53  3.60 ms  AS58453  China, Hong Kong, ChinaMobile
 9  *
10  *
11  *
12  *
13  221.176.16.213  53.98 ms  AS9808  China, Beijing, ChinaMobile
14  111.24.2.105  45.15 ms  AS9808  China, Beijing, ChinaMobile
15  111.24.14.54  43.46 ms  AS9808  China, Beijing, ChinaMobile
16  *
17  *
18  211.136.67.166  43.04 ms  AS56048  China, Beijing, ChinaMobile
19  *
20  *
21  *
22  *
23  211.136.25.153  44.70 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;鹏博士家宽&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 14.131.128.1 (14.131.128.1), 30 hops max, 32 byte packets
 1  10.0.0.1  0.26 ms  *  LAN Address
 2  169.254.73.145  0.23 ms  *  The Local Link
 3  *
 4  *
 5  *
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;鹏博士商宽&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 32 byte packets
 1  10.0.0.1  0.22 ms  *  LAN Address
 2  169.254.73.145  0.25 ms  *  The Local Link
 3  146.19.174.1  0.62 ms  AS51847  China, Hong Kong, nearoute.io
 4  128.241.9.180  1.03 ms  AS2914  ntt.com
 5  129.250.5.70  2.72 ms  AS2914  ntt.com
 6  129.250.2.42  65.62 ms  AS2914  Japan, Osaka, ntt.com
 7  129.250.7.31  57.48 ms  AS2914  Japan, Osaka, ntt.com
 8  219.158.34.153  113.04 ms  AS4837  China, Beijing, ChinaUnicom
 9  219.158.3.181  119.86 ms  AS4837  China, Beijing, ChinaUnicom
10  219.158.5.149  159.73 ms  AS4837  China, Beijing, ChinaUnicom
11  *
12  202.106.193.30  152.05 ms  AS4808  China, Beijing, ChinaUnicom
13  61.149.212.242  141.51 ms  AS4808  China, Beijing, ChinaUnicom
14  *
15  218.241.255.86  165.84 ms  AS4808  China, Beijing, DRPENG
16  218.241.245.102  173.14 ms  AS4808  China, Beijing, DRPENG
17  218.241.245.54  160.97 ms  AS4808  China, Beijing, DRPENG
18  *
19  211.167.230.100  158.28 ms  AS17964  China, Beijing, DRPENG
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;教育网&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 32 byte packets
 1  10.0.0.1  0.27 ms  *  LAN Address
 2  169.254.73.145  0.28 ms  *  The Local Link
 3  146.19.174.1  0.59 ms  AS51847  China, Hong Kong, nearoute.io
 4  123.255.91.118  3.43 ms  *  China, Hong Kong, hkix.net
 5  101.4.114.181  36.29 ms  AS4538  China, Beijing, CHINAEDU
 6  *
 7  *
 8  101.4.118.213  36.73 ms  AS4538  China, Beijing, CHINAEDU
 9  101.4.113.110  35.71 ms  AS4538  China, Beijing, CHINAEDU
10  219.224.102.230  36.14 ms  AS4538  China, Beijing, CHINAEDU
11  *
12  202.205.109.205  35.60 ms  AS4538  China, Beijing, CHINAEDU
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;中国科技网&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 32 byte packets
 1  10.0.0.1  0.29 ms  *  LAN Address
 2  169.254.73.145  0.27 ms  *  The Local Link
 3  146.19.174.1  0.38 ms  AS51847  China, Hong Kong, nearoute.io
 4  123.255.91.238  11.28 ms  *  China, Hong Kong, hkix.net
 5  159.226.254.9  41.08 ms  AS7497  China, Beijing, CSTNET
 6  159.226.254.49  41.04 ms  AS7497  China, Beijing, CSTNET
 7  159.226.254.1  44.43 ms  AS7497  China, Beijing, CSTNET
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;广电网络&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 32 byte packets
 1  10.0.0.1  0.23 ms  *  LAN Address
 2  169.254.73.145  0.25 ms  *  The Local Link
 3  146.19.174.1  0.60 ms  AS51847  China, Hong Kong, nearoute.io
 4  128.241.9.180  0.82 ms  AS2914  ntt.com
 5  129.250.5.70  6.47 ms  AS2914  ntt.com
 6  129.250.7.66  43.22 ms  AS2914  Singapore, ntt.com
 7  129.250.2.74  37.73 ms  AS2914  Singapore, ntt.com
 8  *
 9  202.97.93.157  259.15 ms  AS4134  China, Shanghai, ChinaTelecom
10  *
11  202.97.64.181  270.98 ms  AS4134  China, Shanghai, ChinaTelecom
12  *
13  *
14  *
15  60.247.93.254  287.49 ms  AS4847  China, Beijing, ChinaTelecom
16  60.247.93.254  285.42 ms  AS4847  China, Beijing, ChinaTelecom
17  211.156.131.93  284.28 ms  AS7641  China, Beijing, CATV
18  211.156.140.17  291.77 ms  AS7641  China, Beijing, CATV
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.8.158 (58.247.8.158), 30 hops max, 32 byte packets
 1  10.0.0.1  0.27 ms  *  LAN Address
 2  169.254.73.145  0.25 ms  *  The Local Link
 3  146.19.174.1  0.55 ms  AS51847  China, Hong Kong, nearoute.io
 4  128.241.9.180  0.71 ms  AS2914  ntt.com
 5  129.250.5.70  1.78 ms  AS2914  ntt.com
 6  129.250.2.42  60.45 ms  AS2914  Japan, Osaka, ntt.com
 7  129.250.2.40  80.01 ms  AS2914  Japan, Osaka, ntt.com
 8  129.250.66.86  105.18 ms  AS2914  Japan, Osaka, ntt.com
 9  219.158.19.74  99.69 ms  AS4837  China, Shanghai, ChinaUnicom
10  *
11  *
12  139.226.228.46  95.00 ms  AS17621  China, Shanghai, ChinaUnicom
13  139.226.225.22  96.48 ms  AS17621  China, Shanghai, ChinaUnicom
14  58.247.8.153  104.23 ms  AS17621  China, Shanghai, ChinaUnicom
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.5 (180.153.28.5), 30 hops max, 32 byte packets
 1  10.0.0.1  0.29 ms  *  LAN Address
 2  169.254.73.145  0.23 ms  *  The Local Link
 3  146.19.174.1  0.66 ms  AS51847  China, Hong Kong, nearoute.io
 4  128.241.9.180  0.61 ms  AS2914  ntt.com
 5  129.250.5.70  2.38 ms  AS2914  ntt.com
 6  *
 7  129.250.2.74  38.71 ms  AS2914  Singapore, ntt.com
 8  183.91.56.121  270.22 ms  AS4134  Singapore, ChinaTelecom
 9  *
10  202.97.90.30  268.93 ms  AS4134  China, Shanghai, ChinaTelecom
11  202.97.50.145  271.97 ms  AS4134  China, Shanghai, ChinaTelecom
12  *
13  101.95.207.242  281.90 ms  AS4812  China, Shanghai, ChinaTelecom
14  *
15  101.227.255.34  281.39 ms  AS4812  China, Shanghai, ChinaTelecom
16  *
17  *
18  *
19  180.153.28.5  275.40 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 32 byte packets
 1  10.0.0.1  0.27 ms  *  LAN Address
 2  169.254.73.145  0.23 ms  *  The Local Link
 3  146.19.174.1  0.42 ms  AS51847  China, Hong Kong, nearoute.io
 4  128.241.9.180  17.24 ms  AS2914  ntt.com
 5  129.250.5.10  2.44 ms  AS2914  ntt.com
 6  129.250.5.161  1.63 ms  AS2914  China, Hong Kong, ntt.com
 7  203.131.254.2  6.03 ms  AS2914  China, Hong Kong, ntt.com
 8  223.118.3.249  3.12 ms  AS58453  China, Hong Kong, ChinaMobile
 9  *
10  *
11  *
12  221.183.55.22  42.70 ms  AS9808  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;9929&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 32 byte packets
 1  10.0.0.1  0.25 ms  *  LAN Address
 2  169.254.73.145  0.26 ms  *  The Local Link
 3  146.19.174.1  0.53 ms  AS51847  China, Hong Kong, nearoute.io
 4  123.255.90.243  11.70 ms  *  China, Hong Kong, hkix.net
 5  218.105.10.133  10.09 ms  AS9929  China, Guangdong, Guangzhou, ChinaUnicom
 6  218.105.2.165  7.35 ms  AS9929  China, Guangdong, Guangzhou, ChinaUnicom
 7  218.105.131.198  35.50 ms  AS9929  China, Shanghai, ChinaUnicom
 8  218.105.2.210  32.73 ms  AS9929  China, Shanghai, ChinaUnicom
 9  210.13.75.138  35.81 ms  AS9929  China, Shanghai, ChinaUnicom
10  210.13.64.109  36.31 ms  AS9929  China, Shanghai, ChinaUnicom
11  210.13.64.110  33.77 ms  AS9929  China, Shanghai, ChinaUnicom
12  210.13.66.237  39.63 ms  AS9929  China, Shanghai, ChinaUnicom
13  210.13.66.238  38.57 ms  AS9929  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 32 byte packets
 1  10.0.0.1  0.25 ms  *  LAN Address
 2  169.254.73.145  0.22 ms  *  The Local Link
 3  146.19.174.1  0.44 ms  AS51847  China, Hong Kong, nearoute.io
 4  123.255.91.41  1.82 ms  *  China, Hong Kong, hkix.net
 5  218.188.104.218  3.57 ms  AS9304  China, Hong Kong, hgc.com.hk
 6  59.43.188.229  25.84 ms  *  China, Shanghai, ChinaTelecom
 7  *
 8  59.43.138.45  26.74 ms  *  China, Shanghai, ChinaTelecom
 9  101.95.88.50  55.21 ms  AS4812  China, Shanghai, ChinaTelecom
10  58.32.0.1  30.36 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  10.0.0.1  0.27 ms  *  LAN Address
 2  169.254.73.145  0.29 ms  *  The Local Link
 3  146.19.174.1  0.58 ms  AS51847  China, Hong Kong, nearoute.io
 4  128.241.9.180  0.81 ms  AS2914  ntt.com
 5  129.250.5.10  3.25 ms  AS2914  ntt.com
 6  129.250.2.50  52.61 ms  AS2914  Japan, Tokyo, ntt.com
 7  129.250.3.33  54.04 ms  AS2914  Japan, Tokyo, ntt.com
 8  129.250.66.162  93.22 ms  AS2914  ntt.com
 9  219.158.98.93  103.09 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
10  219.158.8.113  105.68 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
11  157.18.0.26  106.04 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
12  120.80.79.186  89.83 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
 1  10.0.0.1  0.31 ms  *  LAN Address
 2  169.254.73.145  0.25 ms  *  The Local Link
 3  146.19.174.1  0.47 ms  AS51847  China, Hong Kong, nearoute.io
 4  128.241.9.180  0.50 ms  AS2914  ntt.com
 5  129.250.5.10  1.70 ms  AS2914  ntt.com
 6  129.250.2.50  51.76 ms  AS2914  Japan, Tokyo, ntt.com
 7  129.250.5.78  155.48 ms  AS2914  United States, California, San Jose, ntt.com
 8  129.250.3.163  157.44 ms  AS2914  ntt.com
 9  129.250.9.74  161.71 ms  AS2914  United States, California, San Jose, ntt.com
10  202.97.25.133  209.13 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
11  202.97.12.42  207.38 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
12  202.97.94.133  216.58 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
13  *
14  113.108.209.1  215.90 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 120.196.212.25 (120.196.212.25), 30 hops max, 32 byte packets
 1  10.0.0.1  0.25 ms  *  LAN Address
 2  169.254.73.145  0.24 ms  *  The Local Link
 3  146.19.174.1  0.39 ms  AS51847  China, Hong Kong, nearoute.io
 4  128.241.9.180  0.83 ms  AS2914  ntt.com
 5  129.250.5.70  33.26 ms  AS2914  ntt.com
 6  129.250.6.94  2.03 ms  AS2914  China, Hong Kong, ntt.com
 7  *
 8  *
 9  *
10  221.183.55.86  10.55 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
11  221.183.52.85  8.65 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
12  221.176.22.237  11.46 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
13  111.24.5.169  12.06 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
14  111.24.5.30  12.21 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
15  183.235.226.109  15.84 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
16  211.136.196.222  18.60 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
17  *
18  *
19  *
20  120.196.212.25  15.26 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT CN2 Gaming Broadband (TCP Mode, Max 30 Hop)
============================================================
traceroute to 119.121.0.1 (119.121.0.1), 30 hops max, 32 byte packets
 1  10.0.0.1  0.23 ms  *  LAN Address
 2  169.254.73.145  0.26 ms  *  The Local Link
 3  146.19.174.1  0.52 ms  AS51847  China, Hong Kong, nearoute.io
 4  123.255.91.41  1.83 ms  *  China, Hong Kong, hkix.net
 5  218.188.104.218  3.00 ms  AS9304  China, Hong Kong, hgc.com.hk
 6  59.43.188.125  6.64 ms  *  China, Guangdong, Guangzhou, ChinaTelecom
 7  *
 8  59.43.130.101  9.54 ms  *  China, Guangdong, Guangzhou, ChinaTelecom
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;机器性能不错，网络适合移动和教育网，10G口看着很爽XD&lt;/p&gt;
</content:encoded></item><item><title>快车道日本东京30G口VPS测评</title><link>https://yushum.com/posts/%E5%BF%AB%E8%BD%A6%E9%81%93%E6%97%A5%E6%9C%AC%E4%B8%9C%E4%BA%AC30g%E5%8F%A3vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/%E5%BF%AB%E8%BD%A6%E9%81%93%E6%97%A5%E6%9C%AC%E4%B8%9C%E4%BA%AC30g%E5%8F%A3vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Tue, 01 Feb 2022 09:54:41 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;过年没看到什么活动，买台奇怪的小鸡测评一下，每月6刀的台湾IP小鸡，需叠加优惠码&lt;code&gt;TYO/4.5/USD/OFF&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://kuaichedao.co/aff.php?aff=299&quot;&gt;点击前往官网&lt;/a&gt; &lt;a href=&quot;http://ipv4.zone-a.tyo.lg.kuaichedao.xyz/&quot;&gt;IPv4测速点&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-28                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Tue Feb  1 01:09:30 UTC 2022

Basic System Information:
---------------------------------
Processor  : Intel(R) Xeon(R) Platinum 8260C CPU @ 2.30GHz
CPU cores  : 1 @ 2294.588 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 985.1 MiB
Swap       : 0.0 KiB
Disk       : 19.6 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 3.94 MB/s      (987) | 61.55 MB/s     (961)
Write      | 3.97 MB/s      (993) | 61.85 MB/s     (966)
Total      | 7.92 MB/s     (1.9k) | 123.40 MB/s   (1.9k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 97.73 MB/s     (190) | 94.79 MB/s      (92)
Write      | 102.92 MB/s    (201) | 101.11 MB/s     (98)
Total      | 200.66 MB/s    (391) | 195.91 MB/s    (190)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 152 Mbits/sec   | 674 Mbits/sec
Online.net      | Paris, FR (10G)           | 139 Mbits/sec   | 724 Mbits/sec
WorldStream     | The Netherlands (10G)     | 126 Mbits/sec   | 614 Mbits/sec
WebHorizon      | Singapore (400M)          | 96.5 Mbits/sec  | 506 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 90.7 Mbits/sec  | 1.03 Gbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 141 Mbits/sec   | 1.07 Gbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 169 Mbits/sec   | 1.59 Gbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 160 Mbits/sec   | 547 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 884
Multi Core      | 862
Full Test       | https://browser.geekbench.com/v5/cpu/12519327
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Intro              : https://teddysun.com/444.html
 Version            : v2022-01-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) Platinum 8260C CPU @ 2.30GHz
 CPU Cores          : 1
 CPU Frequency      : 2294.588 MHz
 CPU Cache          : 16384 KB
 Total Disk         : 20.0 GB (2.0 GB Used)
 Total Mem          : 985 MB (84 MB Used)
 Total Swap         : 0 MB (0 MB Used)
 System uptime      : 0 days, 7 hour 29 min
 Load average       : 0.00, 0.10, 0.12
 OS                 : Ubuntu 18.04.5 LTS
 Arch               : x86_64 (64 Bit)
 Kernel             : 4.15.0-123-generic
 TCP CC             : cubic
 Virtualization     : KVM
 Organization       : AS138997 Eons Data Communications Limited
 Location           : Chang-hua / TW
 Region             : Taiwan
----------------------------------------------------------------------
 I/O Speed(1st run) : 103 MB/s
 I/O Speed(2nd run) : 101 MB/s
 I/O Speed(3rd run) : 99.8 MB/s
 I/O Speed(average) : 101.3 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    111.65 Mbps       3663.37 Mbps        31.92 ms
 Los Angeles, US  89.73 Mbps        3778.91 Mbps        99.92 ms
 Dallas, US       80.54 Mbps        3804.37 Mbps        162.96 ms
 Montreal, CA     64.65 Mbps        918.49 Mbps         180.07 ms
 Paris, FR        72.43 Mbps        1415.06 Mbps        259.85 ms
 Amsterdam, NL    66.23 Mbps        1344.08 Mbps        250.85 ms
 Shanghai, CN     113.55 Mbps       3418.52 Mbps        47.51 ms
 Nanjing, CN      62.71 Mbps        2867.45 Mbps        134.90 ms
 Guangzhou, CN    128.04 Mbps       1873.14 Mbps        159.47 ms
 Hongkong, CN     95.75 Mbps        2693.84 Mbps        89.90 ms
 Seoul, KR        110.13 Mbps       913.26 Mbps         36.57 ms
 Singapore, SG    78.01 Mbps        3601.55 Mbps        96.46 ms
 Tokyo, JP        263.24 Mbps       4205.37 Mbps        4.80 ms
----------------------------------------------------------------------
 Finished in        : 6 min 55 sec
 Timestamp          : 2022-02-01 01:31:08
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Tue Feb  1 01:31:58 UTC 2022

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为:  (103.168.*.*)


============[ Multination ]============
 Dazn:                                  Yes (Region: TW)
 HotStar:                               No
 Disney+:                               Yes (Region: TW)
 Netflix:                               Yes (Region: TW)
 YouTube Premium:                       Yes (Region: TW)
 Amazon Prime Video:                    Yes (Region: TW)
 TVBAnywhere+:                          Yes
 Tiktok Region:                         TW
 iQyi Oversea Region:                   TW
 Viu.com:                               No
 YouTube CDN:                           Tokyo
 Netflix Preferred CDN:                 Frankfurt
 Steam Currency:                        TWD
=======================================
==============[ Taiwan ]===============
 KKTV:                                  Yes
 LiTV:                                  Yes
 MyVideo:                               Yes
 4GTV.TV:                               Yes
 LineTV.TW:                             Yes
 Hami Video:                            Yes
 CatchPlay+:                            Yes
 HBO GO Asia:                           Yes (Region: TW)
 Bahamut Anime:                         Yes
 Eleven Sports TW:                      Yes
 Bilibili Taiwan Only:                  Yes
=======================================
当前主机不支持IPv6,跳过...

本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/02/01/57616839de422.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/02/01/76710b2c96591.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/02/01/d82a4b70a6eec.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/02/01/6983824c9bbc4.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 32 byte packets
 1  103.168.155.1  0.38 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  0.23 ms  AS134098  licson.net
 3  185.207.176.53  13.46 ms  AS134098  licson.net
 4  156.146.32.74  6.33 ms  AS60068  cdn77.com
 5  117.103.177.145  6.33 ms  AS2914  Japan, Tokyo, ntt.com
 6  129.250.7.55  2.89 ms  AS2914  ntt.com
 7  129.250.7.79  12.02 ms  AS2914  Japan, Osaka, ntt.com
 8  129.250.7.31  14.37 ms  AS2914  Japan, Osaka, ntt.com
 9  129.250.9.186  59.38 ms  AS2914  ntt.com
10  219.158.3.177  60.64 ms  AS4837  China, Beijing, ChinaUnicom
11  *
12  *
13  202.96.12.54  67.48 ms  AS4808  China, Beijing, ChinaUnicom
14  124.65.194.134  65.02 ms  AS4808  China, Beijing, ChinaUnicom
15  61.135.113.154  76.91 ms  AS4808  China, Beijing, ChinaUnicom
16  *
17  123.125.99.1  70.80 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.9 (180.149.128.9), 30 hops max, 32 byte packets
 1  103.168.155.1  0.30 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  1.96 ms  AS134098  licson.net
 3  185.207.176.53  5.23 ms  AS134098  licson.net
 4  156.146.32.74  0.52 ms  AS60068  cdn77.com
 5  117.103.177.145  7.40 ms  AS2914  Japan, Tokyo, ntt.com
 6  129.250.7.63  8.58 ms  AS2914  Japan, Tokyo, ntt.com
 7  129.250.3.22  4.88 ms  AS2914  Japan, Tokyo, ntt.com
 8  129.250.66.54  76.14 ms  AS2914  China, Beijing, ntt.com
 9  202.97.93.221  85.48 ms  AS4134  China, Beijing, ChinaTelecom
10  202.97.34.157  68.89 ms  AS4134  China, Beijing, ChinaTelecom
11  202.97.94.185  103.47 ms  AS4134  China, Beijing, ChinaTelecom
12  36.110.248.122  114.87 ms  AS23724  China, Beijing, ChinaTelecom
13  36.110.246.206  103.28 ms  AS23724  China, Beijing, ChinaTelecom
14  180.149.128.9  80.40 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
 1  103.168.155.1  0.28 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  0.38 ms  AS134098  licson.net
 3  185.207.176.53  8.43 ms  AS134098  licson.net
 4  156.146.32.74  15.61 ms  AS60068  cdn77.com
 5  117.103.177.145  3.56 ms  AS2914  Japan, Tokyo, ntt.com
 6  129.250.7.55  1.12 ms  AS2914  ntt.com
 7  129.250.2.51  96.81 ms  AS2914  China, Hong Kong, ntt.com
 8  129.250.5.33  59.51 ms  AS2914  ntt.com
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  111.24.2.97  128.95 ms  AS9808  China, Beijing, ChinaMobile
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  211.136.25.153  127.14 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;鹏博士家宽&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 14.131.128.1 (14.131.128.1), 30 hops max, 32 byte packets
 1  103.168.155.1  0.35 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  0.73 ms  AS134098  licson.net
 3  185.207.176.53  12.71 ms  AS134098  licson.net
 4  156.146.32.74  8.07 ms  AS60068  cdn77.com
 5  138.199.0.217  2.99 ms  AS60068  cdn77.com
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;鹏博士商宽&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 32 byte packets
 1  103.168.155.1  0.31 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  2.92 ms  AS134098  licson.net
 3  185.207.176.53  10.13 ms  AS134098  licson.net
 4  156.146.32.74  3.12 ms  AS60068  cdn77.com
 5  117.103.177.145  8.32 ms  AS2914  Japan, Tokyo, ntt.com
 6  129.250.7.63  8.06 ms  AS2914  Japan, Tokyo, ntt.com
 7  129.250.7.81  12.84 ms  AS2914  Japan, Osaka, ntt.com
 8  129.250.7.33  14.07 ms  AS2914  Japan, Osaka, ntt.com
 9  219.158.32.37  67.00 ms  AS4837  China, Beijing, ChinaUnicom
10  219.158.3.181  57.26 ms  AS4837  China, Beijing, ChinaUnicom
11  219.158.4.173  54.44 ms  AS4837  China, Beijing, ChinaUnicom
12  125.33.186.214  68.26 ms  AS4808  China, Beijing, ChinaUnicom
13  61.148.153.238  69.11 ms  AS4808  China, Beijing, ChinaUnicom
14  61.149.212.242  80.49 ms  AS4808  China, Beijing, ChinaUnicom
15  202.99.1.134  54.34 ms  AS4808  China, Beijing, ChinaUnicom
16  124.205.97.138  70.38 ms  AS4808  China, Beijing, DRPENG
17  218.241.254.90  65.33 ms  AS4808  China, Beijing, DRPENG
18  218.241.245.54  65.77 ms  AS4808  China, Beijing, DRPENG
19  *
20  211.167.230.100  69.74 ms  AS17964  China, Beijing, DRPENG
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;教育网&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 32 byte packets
 1  103.168.155.1  0.38 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  1.33 ms  AS134098  licson.net
 3  185.207.176.53  17.42 ms  AS134098  licson.net
 4  156.146.32.74  5.65 ms  AS60068  cdn77.com
 5  117.103.177.145  9.65 ms  AS2914  Japan, Tokyo, ntt.com
 6  129.250.7.55  2.67 ms  AS2914  ntt.com
 7  129.250.2.51  57.44 ms  AS2914  China, Hong Kong, ntt.com
 8  129.250.2.43  71.14 ms  AS2914  China, Hong Kong, ntt.com
 9  129.250.5.28  64.43 ms  AS2914  China, Hong Kong, ntt.com
10  129.250.6.123  60.91 ms  AS2914  China, Hong Kong, ntt.com
11  101.4.114.238  88.58 ms  AS4538  China, Beijing, CHINAEDU
12  *
13  101.4.118.213  87.25 ms  AS4538  China, Beijing, CHINAEDU
14  101.4.113.110  84.05 ms  AS4538  China, Beijing, CHINAEDU
15  101.4.118.213  93.61 ms  AS4538  China, Beijing, CHINAEDU
16  101.4.113.110  88.79 ms  AS4538  China, Beijing, CHINAEDU
17  202.205.109.205  87.83 ms  AS4538  China, Beijing, CHINAEDU
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;中国科技网&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 32 byte packets
 1  103.168.155.1  0.25 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  1.34 ms  AS134098  licson.net
 3  185.207.176.53  12.82 ms  AS134098  licson.net
 4  156.146.32.74  2.68 ms  AS60068  cdn77.com
 5  63.216.242.193  3.82 ms  AS3491,AS31713  Japan, Tokyo, pccw.com
 6  63.223.17.94  60.23 ms  AS3491,AS31713  China, Hong Kong, pccw.com
 7  63.223.17.94  52.89 ms  AS3491,AS31713  China, Hong Kong, pccw.com
 8  63.217.16.34  49.03 ms  AS3491,AS31713  China, Hong Kong, pccw.com
 9  159.226.254.61  91.89 ms  AS7497  China, Beijing, CSTNET
10  159.226.254.1  94.99 ms  AS7497  China, Beijing, CSTNET
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;广电网络&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 32 byte packets
 1  103.168.155.1  0.36 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  0.39 ms  AS134098  licson.net
 3  185.207.176.53  10.12 ms  AS134098  licson.net
 4  156.146.32.74  12.10 ms  AS60068  cdn77.com
 5  117.103.177.145  21.87 ms  AS2914  Japan, Tokyo, ntt.com
 6  129.250.7.63  3.78 ms  AS2914  Japan, Tokyo, ntt.com
 7  129.250.3.28  1.27 ms  AS2914  Japan, Tokyo, ntt.com
 8  202.97.94.13  72.71 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
 9  202.97.93.221  108.10 ms  AS4134  China, Beijing, ChinaTelecom
10  202.97.94.205  82.23 ms  AS4134  China, Beijing, ChinaTelecom
11  202.97.34.73  102.22 ms  AS4134  China, Beijing, ChinaTelecom
12  219.141.152.62  98.70 ms  AS4847  China, Beijing, ChinaTelecom
13  106.120.252.158  62.37 ms  AS4847  China, Beijing, ChinaTelecom
14  *
15  *
16  211.156.140.17  77.96 ms  AS7641  China, Beijing, CATV
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.8.158 (58.247.8.158), 30 hops max, 32 byte packets
 1  103.168.155.1  0.30 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  0.50 ms  AS134098  licson.net
 3  185.207.176.53  49.76 ms  AS134098  licson.net
 4  156.146.32.74  7.40 ms  AS60068  cdn77.com
 5  117.103.177.145  2.26 ms  AS2914  Japan, Tokyo, ntt.com
 6  129.250.7.55  8.07 ms  AS2914  ntt.com
 7  129.250.7.79  10.81 ms  AS2914  Japan, Osaka, ntt.com
 8  129.250.2.128  20.29 ms  AS2914  Japan, Osaka, ntt.com
 9  219.158.39.193  58.78 ms  AS4837  China, Shanghai, ChinaUnicom
10  219.158.6.209  57.90 ms  AS4837  China, Shanghai, ChinaUnicom
11  219.158.8.209  53.64 ms  AS4837  China, Shanghai, ChinaUnicom
12  *
13  139.226.228.46  34.59 ms  AS17621  China, Shanghai, ChinaUnicom
14  139.226.225.22  36.07 ms  AS17621  China, Shanghai, ChinaUnicom
15  58.247.8.153  59.77 ms  AS17621  China, Shanghai, ChinaUnicom
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.5 (180.153.28.5), 30 hops max, 32 byte packets
 1  103.168.155.1  0.35 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  2.96 ms  AS134098  licson.net
 3  185.207.176.53  8.73 ms  AS134098  licson.net
 4  156.146.32.74  5.35 ms  AS60068  cdn77.com
 5  117.103.177.145  6.33 ms  AS2914  Japan, Tokyo, ntt.com
 6  129.250.7.55  9.44 ms  AS2914  ntt.com
 7  129.250.3.22  8.52 ms  AS2914  Japan, Tokyo, ntt.com
 8  *
 9  202.97.51.162  65.87 ms  AS4134  China, Shanghai, ChinaTelecom
10  202.97.94.238  78.80 ms  AS4134  China, Shanghai, ChinaTelecom
11  61.152.25.5  77.40 ms  AS4812  China, Shanghai, ChinaTelecom
12  101.95.207.250  61.48 ms  AS4812  China, Shanghai, ChinaTelecom
13  124.74.232.66  74.69 ms  AS4811  China, Shanghai, ChinaTelecom
14  101.227.255.46  82.04 ms  AS4812  China, Shanghai, ChinaTelecom
15  180.153.28.5  74.81 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 32 byte packets
 1  103.168.155.1  0.31 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  3.65 ms  AS134098  licson.net
 3  185.207.176.53  13.16 ms  AS134098  licson.net
 4  156.146.32.74  11.53 ms  AS60068  cdn77.com
 5  117.103.177.145  2.76 ms  AS2914  Japan, Tokyo, ntt.com
 6  129.250.7.55  6.76 ms  AS2914  ntt.com
 7  129.250.7.79  13.86 ms  AS2914  Japan, Osaka, ntt.com
 8  129.250.6.123  57.88 ms  AS2914  China, Hong Kong, ntt.com
 9  203.131.254.2  84.37 ms  AS2914  China, Hong Kong, ntt.com
10  129.250.6.92  73.77 ms  AS2914  China, Hong Kong, ntt.com
11  223.120.2.41  85.00 ms  AS58453  China, Hong Kong, ChinaMobile
12  *
13  221.183.55.22  115.22 ms  AS9808  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;9929&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 32 byte packets
 1  103.168.155.1  0.35 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  6.82 ms  AS134098  licson.net
 3  185.207.176.53  116.13 ms  AS134098  licson.net
 4  156.146.32.74  4.87 ms  AS60068  cdn77.com
 5  117.103.177.145  3.87 ms  AS2914  Japan, Tokyo, ntt.com
 6  129.250.7.55  17.17 ms  AS2914  ntt.com
 7  129.250.3.22  8.96 ms  AS2914  Japan, Tokyo, ntt.com
 8  129.250.8.54  36.64 ms  AS2914  ntt.com
 9  218.105.2.205  32.62 ms  AS9929  China, Shanghai, ChinaUnicom
10  218.105.2.210  50.79 ms  AS9929  China, Shanghai, ChinaUnicom
11  210.13.116.86  35.20 ms  AS9929  China, Shanghai, ChinaUnicom
12  *
13  210.13.64.110  41.90 ms  AS9929  China, Shanghai, ChinaUnicom
14  210.13.66.237  46.46 ms  AS9929  China, Shanghai, ChinaUnicom
15  210.13.66.238  39.83 ms  AS9929  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 32 byte packets
 1  103.168.155.1  0.30 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  0.39 ms  AS134098  licson.net
 3  185.207.176.53  9.96 ms  AS134098  licson.net
 4  156.146.32.74  5.14 ms  AS60068  cdn77.com
 5  117.103.177.145  0.45 ms  AS2914  Japan, Tokyo, ntt.com
 6  117.103.177.106  7.93 ms  AS2914  Japan, Tokyo, ntt.com
 7  59.43.186.185  68.87 ms  *  China, Shanghai, ChinaTelecom
 8  *
 9  59.43.138.69  61.95 ms  *  China, Shanghai, ChinaTelecom
10  101.95.88.50  38.43 ms  AS4812  China, Shanghai, ChinaTelecom
11  58.32.0.1  62.97 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  103.168.155.1  0.63 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  0.33 ms  AS134098  licson.net
 3  185.207.176.53  10.24 ms  AS134098  licson.net
 4  156.146.32.74  0.68 ms  AS60068  cdn77.com
 5  180.87.180.17  5.65 ms  AS6453  Japan, Tokyo, tatacommunications.com
 6  209.58.55.33  111.76 ms  AS6453  Japan, Tokyo, tatacommunications.com
 7  120.29.217.67  7.83 ms  AS6453  Japan, Tokyo, tatacommunications.com
 8  209.58.86.142  117.09 ms  AS6453  United States, California, Santa Clara, tatacommunications.com
 9  63.243.251.1  110.77 ms  AS6453  United States, California, Santa Clara, tatacommunications.com
10  219.158.33.57  163.19 ms  AS4837  United States, California, Los Angeles, ChinaUnicom
11  219.158.40.189  178.12 ms  AS4837  United States, California, Los Angeles, ChinaUnicom
12  219.158.22.142  178.79 ms  AS4837  China, Shanghai, ChinaUnicom
13  219.158.19.86  173.29 ms  AS4837  China, Shanghai, ChinaUnicom
14  219.158.19.81  173.18 ms  AS4837  China, Shanghai, ChinaUnicom
15  219.158.19.81  170.60 ms  AS4837  China, Shanghai, ChinaUnicom
16  *
17  112.92.0.62  202.41 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
18  120.80.175.62  193.63 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
 1  103.168.155.1  0.32 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  0.39 ms  AS134098  licson.net
 3  185.207.176.53  8.46 ms  AS134098  licson.net
 4  156.146.32.74  8.45 ms  AS60068  cdn77.com
 5  185.156.45.17  102.22 ms  AS60068  datacamp.co.uk
 6  64.86.252.169  113.49 ms  AS6453  United States, California, Los Angeles, tatacommunications.com
 7  *
 8  64.86.252.63  107.16 ms  AS6453  United States, California, Los Angeles, tatacommunications.com
 9  202.97.43.105  160.58 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
10  *
11  113.108.209.1  158.94 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 120.196.212.25 (120.196.212.25), 30 hops max, 32 byte packets
 1  103.168.155.1  0.32 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  1.79 ms  AS134098  licson.net
 3  185.207.176.53  14.29 ms  AS134098  licson.net
 4  156.146.32.74  3.66 ms  AS60068  cdn77.com
 5  117.103.177.145  11.09 ms  AS2914  Japan, Tokyo, ntt.com
 6  129.250.7.55  9.36 ms  AS2914  ntt.com
 7  129.250.7.79  16.26 ms  AS2914  Japan, Osaka, ntt.com
 8  129.250.6.92  57.21 ms  AS2914  China, Hong Kong, ntt.com
 9  *
10  129.250.6.92  69.42 ms  AS2914  China, Hong Kong, ntt.com
11  *
12  *
13  221.183.25.122  84.88 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
14  221.176.24.181  95.35 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
15  *
16  221.176.24.181  93.53 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
17  *
18  211.136.214.142  111.55 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
19  120.198.205.85  101.58 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
20  211.139.180.110  104.90 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
21  120.196.212.25  94.43 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT CN2 Gaming Broadband (TCP Mode, Max 30 Hop)
============================================================
traceroute to 119.121.0.1 (119.121.0.1), 30 hops max, 32 byte packets
 1  103.168.155.1  0.36 ms  AS138997  Japan, Tokyo
 2  185.207.176.46  2.61 ms  AS134098  licson.net
 3  185.207.176.53  11.42 ms  AS134098  licson.net
 4  156.146.32.74  0.95 ms  AS60068  cdn77.com
 5  117.103.177.145  2.75 ms  AS2914  Japan, Tokyo, ntt.com
 6  117.103.177.106  2.84 ms  AS2914  Japan, Tokyo, ntt.com
 7  59.43.186.185  55.41 ms  *  China, Shanghai, ChinaTelecom
 8  59.43.187.69  62.94 ms  *  China, Shanghai, ChinaTelecom
 9  59.43.138.53  64.39 ms  *  China, Shanghai, ChinaTelecom
10  59.43.46.78  65.82 ms  *  China, Guangdong, Guangzhou, ChinaTelecom
11  59.43.46.78  65.84 ms  *  China, Guangdong, Guangzhou, ChinaTelecom
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;CPU性能不错，硬盘、到国内网络一般，基本都是走ntt，亮点是台湾IP。&lt;/p&gt;
</content:encoded></item><item><title>Ikoula美国迈阿密VPS测评</title><link>https://yushum.com/posts/ikoula%E7%BE%8E%E5%9B%BD%E8%BF%88%E9%98%BF%E5%AF%86vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/ikoula%E7%BE%8E%E5%9B%BD%E8%BF%88%E9%98%BF%E5%AF%86vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Thu, 27 Jan 2022 16:16:01 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://yushum.com/ikoula%E8%8D%B7%E5%85%B0%E9%98%BF%E5%A7%86%E6%96%AF%E7%89%B9%E4%B8%B9vps%E6%B5%8B%E8%AF%84/&quot;&gt;Ikoula荷兰阿姆斯特丹测评&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://yushum.com/ikoula%E5%BE%B7%E5%9B%BD%E6%B3%95%E5%85%B0%E5%85%8B%E7%A6%8Fvps%E6%B5%8B%E8%AF%84/&quot;&gt;Ikoula 德国法兰克福测评&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://yushum.com/ikoula%E6%96%B0%E5%8A%A0%E5%9D%A1vps%E6%B5%8B%E8%AF%84/&quot;&gt;Ikoula 新加坡测评&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://yushum.com/ikoula%E6%B3%95%E5%9B%BDeppes%E5%8C%BA%E5%9F%9Fvps%E6%B5%8B%E8%AF%84/&quot;&gt;Ikoula 法国 EPPES 测评&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://yushum.com/ikoula%E6%B3%95%E5%9B%BDreims%E5%8C%BA%E5%9F%9Fvps%E6%B5%8B%E8%AF%84/&quot;&gt;Ikoula 法国 REIMS 测评&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-28                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Thu Jan 27 07:37:48 UTC 2022

Basic System Information:
---------------------------------
Processor  : Intel(R) Xeon(R) CPU E5-2643 v3 @ 3.40GHz
CPU cores  : 1 @ 3399.891 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 467.0 MiB
Swap       : 3.0 GiB
Disk       : 47.9 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 31.26 MB/s    (7.8k) | 270.02 MB/s   (4.2k)
Write      | 31.31 MB/s    (7.8k) | 271.45 MB/s   (4.2k)
Total      | 62.57 MB/s   (15.6k) | 541.47 MB/s   (8.4k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 416.91 MB/s    (814) | 321.89 MB/s    (314)
Write      | 439.06 MB/s    (857) | 343.33 MB/s    (335)
Total      | 855.98 MB/s   (1.6k) | 665.23 MB/s    (649)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 93.4 Mbits/sec  | 361 Mbits/sec
Online.net      | Paris, FR (10G)           | 25.6 Mbits/sec  | 110 Mbits/sec
WorldStream     | The Netherlands (10G)     | 92.9 Mbits/sec  | 350 Mbits/sec
WebHorizon      | Singapore (400M)          | 87.5 Mbits/sec  | 208 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 95.8 Mbits/sec  | 340 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 95.3 Mbits/sec  | 369 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 95.6 Mbits/sec  | 264 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 94.5 Mbits/sec  | 397 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 215
Multi Core      | 221
Full Test       | https://browser.geekbench.com/v5/cpu/12420661
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Intro              : https://teddysun.com/444.html
 Version            : v2022-01-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) CPU E5-2643 v3 @ 3.40GHz
 CPU Cores          : 1
 CPU Frequency      : 3399.891 MHz
 CPU Cache          : 20480 KB
 Total Disk         : 48.5 GB (5.7 GB Used)
 Total Mem          : 467 MB (109 MB Used)
 Total Swap         : 3071 MB (64 MB Used)
 System uptime      : 0 days, 0 hour 16 min
 Load average       : 0.36, 0.82, 0.64
 OS                 : Ubuntu 20.04.2 LTS
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.4.0-73-generic
 TCP CC             : cubic
 Virtualization     : Xen-DomU
 Organization       : AS174 Cogent Communications
 Location           : Miami / US
 Region             : Florida
----------------------------------------------------------------------
 I/O Speed(1st run) : 308 MB/s
 I/O Speed(2nd run) : 243 MB/s
 I/O Speed(3rd run) : 295 MB/s
 I/O Speed(average) : 282.0 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    97.76 Mbps        403.51 Mbps         44.74 ms
 Los Angeles, US  95.96 Mbps        313.24 Mbps         63.61 ms
 Dallas, US       98.79 Mbps        389.46 Mbps         33.38 ms
 Montreal, CA     97.94 Mbps        319.50 Mbps         44.71 ms
 Paris, FR        98.35 Mbps        491.39 Mbps         116.24 ms
 Amsterdam, NL    97.73 Mbps        468.52 Mbps         116.37 ms
 Shanghai, CN     93.80 Mbps        257.92 Mbps         199.60 ms
 Nanjing, CN      53.06 Mbps        76.79 Mbps          230.81 ms
 Guangzhou, CN    3.78 Mbps         24.10 Mbps          225.07 ms
 Hongkong, CN     98.31 Mbps        104.33 Mbps         235.73 ms
 Seoul, KR        76.94 Mbps        300.21 Mbps         201.86 ms
 Singapore, SG    90.38 Mbps        307.73 Mbps         250.86 ms
 Tokyo, JP        96.93 Mbps        382.24 Mbps         192.74 ms
----------------------------------------------------------------------
 Finished in        : 6 min 51 sec
 Timestamp          : 2022-01-27 07:57:59
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Thu Jan 27 07:58:27 UTC 2022

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Cogent Communications (38.93.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               Yes (Region: US)
 Disney+:                               Yes (Region: US)
 Netflix:                               Yes (Region: US)
 YouTube Premium:                       No  (Region: US)
 Amazon Prime Video:                    Yes (Region: US)
 TVBAnywhere+:                          Yes
 Tiktok Region:                         US
 iQyi Oversea Region:                   US
 Viu.com:                               No
 YouTube CDN:                           Washington
 Netflix Preferred CDN:                 Miami
 Steam Currency:                        USD
=======================================
当前主机不支持IPv6,跳过...

本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/27/661f86a925fb8.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/27/a7f389e7eac9f.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/27/9d83b19453d12.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/27/9136bb163f361.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 32 byte packets
 1  38.93.227.2  0.44 ms  AS174  United States, Florida, Miami, cogentco.com
 2  38.140.53.241  0.59 ms  AS174  United States, Florida, Miami, cogentco.com
 3  154.54.85.233  1.24 ms  AS174  United States, Florida, Miami, cogentco.com
 4  154.54.84.1  34.77 ms  AS174  United States, Texas, Houston, cogentco.com
 5  154.54.29.222  44.14 ms  AS174  cogentco.com
 6  154.54.42.77  52.91 ms  AS174  United States, Arizona, Phoenix, cogentco.com
 7  154.54.44.86  63.91 ms  AS174  United States, California, Los Angeles, cogentco.com
 8  154.54.40.146  76.31 ms  AS174  United States, California, San Jose, cogentco.com
 9  154.54.1.194  75.74 ms  AS174  United States, California, San Jose, cogentco.com
10  38.88.224.14  250.08 ms  AS174  United States, California, San Jose, cogentco.com
11  219.158.98.9  218.95 ms  AS4837  China, Beijing, ChinaUnicom
12  219.158.3.145  278.54 ms  AS4837  China, Beijing, ChinaUnicom
13  *
14  61.49.214.2  219.49 ms  AS4808  China, Beijing, ChinaUnicom
15  219.232.11.198  222.45 ms  AS4808  China, Beijing, ChinaUnicom
16  124.65.194.134  237.14 ms  AS4808  China, Beijing, ChinaUnicom
17  61.135.113.158  228.87 ms  AS4808  China, Beijing, ChinaUnicom
18  *
19  123.125.99.1  257.01 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.9 (180.149.128.9), 30 hops max, 32 byte packets
 1  38.93.227.2  0.45 ms  AS174  United States, Florida, Miami, cogentco.com
 2  38.140.53.241  0.69 ms  AS174  United States, Florida, Miami, cogentco.com
 3  154.54.85.121  2.56 ms  AS174  United States, Florida, Miami, cogentco.com
 4  154.54.82.241  27.51 ms  AS174  United States, Texas, Houston, cogentco.com
 5  154.54.29.222  44.32 ms  AS174  cogentco.com
 6  154.54.42.77  53.05 ms  AS174  United States, Arizona, Phoenix, cogentco.com
 7  154.54.44.86  63.94 ms  AS174  United States, California, Los Angeles, cogentco.com
 8  154.54.40.146  76.29 ms  AS174  United States, California, San Jose, cogentco.com
 9  154.54.5.102  76.27 ms  AS174  United States, California, San Jose, cogentco.com
10  38.104.138.106  75.81 ms  AS174  United States, California, San Jose, cogentco.com
11  *
12  202.97.12.149  214.13 ms  AS4134  China, Beijing, ChinaTelecom
13  202.97.34.157  215.44 ms  AS4134  China, Beijing, ChinaTelecom
14  *
15  180.149.128.9  223.54 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
 1  38.93.227.2  0.34 ms  AS174  United States, Florida, Miami, cogentco.com
 2  38.140.53.241  0.93 ms  AS174  United States, Florida, Miami, cogentco.com
 3  154.54.85.233  3.46 ms  AS174  United States, Florida, Miami, cogentco.com
 4  154.54.82.241  27.47 ms  AS174  United States, Texas, Houston, cogentco.com
 5  154.54.30.162  45.08 ms  AS174  cogentco.com
 6  154.54.42.65  54.11 ms  AS174  United States, Arizona, Phoenix, cogentco.com
 7  154.54.44.86  64.63 ms  AS174  United States, California, Los Angeles, cogentco.com
 8  154.54.27.118  64.77 ms  AS174  United States, California, Los Angeles, cogentco.com
 9  38.104.85.162  424.08 ms  AS174  United States, California, Los Angeles, cogentco.com
10  223.120.6.217  333.73 ms  AS58453  United States, California, Los Angeles, ChinaMobile
11  *
12  *
13  *
14  *
15  *
16  111.24.14.54  474.71 ms  AS9808  China, Beijing, ChinaMobile
17  *
18  *
19  *
20  *
21  *
22  *
23  211.136.25.153  476.65 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;教育网&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 32 byte packets
 1  38.93.227.2  0.33 ms  AS174  United States, Florida, Miami, cogentco.com
 2  38.140.53.241  0.61 ms  AS174  United States, Florida, Miami, cogentco.com
 3  154.54.85.121  11.77 ms  AS174  United States, Florida, Miami, cogentco.com
 4  154.54.84.1  60.38 ms  AS174  United States, Texas, Houston, cogentco.com
 5  154.54.29.222  44.29 ms  AS174  cogentco.com
 6  154.54.42.65  51.65 ms  AS174  United States, Arizona, Phoenix, cogentco.com
 7  154.54.44.86  64.63 ms  AS174  United States, California, Los Angeles, cogentco.com
 8  154.54.42.102  64.21 ms  AS174  United States, California, Los Angeles, cogentco.com
 9  38.88.196.186  65.03 ms  AS174  United States, California, Los Angeles, cogentco.com
10  101.4.117.169  212.49 ms  AS4538  China, Beijing, CHINAEDU
11  *
12  *
13  101.4.113.110  212.59 ms  AS4538  China, Beijing, CHINAEDU
14  219.224.102.230  211.45 ms  AS4538  China, Beijing, CHINAEDU
15  *
16  202.205.109.205  212.12 ms  AS4538  China, Beijing, CHINAEDU
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;鹏博士家宽&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 14.131.128.1 (14.131.128.1), 30 hops max, 32 byte packets
 1  38.93.227.2  0.32 ms  AS174  United States, Florida, Miami, cogentco.com
 2  *
 3  *
 4  *
 5  *
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;鹏博士商宽&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 32 byte packets
 1  38.93.227.2  0.30 ms  AS174  United States, Florida, Miami, cogentco.com
 2  38.140.53.241  0.97 ms  AS174  United States, Florida, Miami, cogentco.com
 3  154.54.85.121  2.67 ms  AS174  United States, Florida, Miami, cogentco.com
 4  154.54.82.241  27.65 ms  AS174  United States, Texas, Houston, cogentco.com
 5  154.54.30.162  44.96 ms  AS174  cogentco.com
 6  154.54.42.77  52.94 ms  AS174  United States, Arizona, Phoenix, cogentco.com
 7  154.54.44.86  64.82 ms  AS174  United States, California, Los Angeles, cogentco.com
 8  154.54.31.190  75.69 ms  AS174  United States, California, San Jose, cogentco.com
 9  154.54.1.194  76.27 ms  AS174  United States, California, San Jose, cogentco.com
10  38.88.225.98  230.92 ms  AS174  United States, California, San Jose, cogentco.com
11  219.158.96.37  276.74 ms  AS4837  China, Beijing, ChinaUnicom
12  219.158.16.65  260.46 ms  AS4837  China, Beijing, ChinaUnicom
13  219.158.4.173  255.12 ms  AS4837  China, Beijing, ChinaUnicom
14  *
15  202.106.192.6  246.42 ms  AS4808  China, Beijing, ChinaUnicom
16  61.149.212.242  261.91 ms  AS4808  China, Beijing, ChinaUnicom
17  202.99.1.238  244.94 ms  AS4808  China, Beijing, ChinaUnicom
18  218.241.252.14  248.89 ms  AS4808  China, Beijing, DRPENG
19  218.241.253.210  255.46 ms  AS4808  China, Beijing, DRPENG
20  218.241.245.54  245.75 ms  AS4808  China, Beijing, DRPENG
21  *
22  211.167.230.100  276.46 ms  AS17964  China, Beijing, DRPENG
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;中国科技网&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 32 byte packets
 1  38.93.227.2  0.31 ms  AS174  United States, Florida, Miami, cogentco.com
 2  38.140.53.241  0.62 ms  AS174  United States, Florida, Miami, cogentco.com
 3  154.54.85.233  30.49 ms  AS174  United States, Florida, Miami, cogentco.com
 4  154.54.82.241  27.62 ms  AS174  United States, Texas, Houston, cogentco.com
 5  154.54.29.222  44.08 ms  AS174  cogentco.com
 6  154.54.42.65  52.26 ms  AS174  United States, Arizona, Phoenix, cogentco.com
 7  154.54.44.86  64.37 ms  AS174  United States, California, Los Angeles, cogentco.com
 8  154.54.0.6  212.89 ms  AS174  cogentco.com
 9  154.18.4.2  213.45 ms  AS174  China, Hong Kong, cogentco.com
10  159.226.254.61  252.79 ms  AS7497  China, Beijing, CSTNET
11  159.226.254.1  247.45 ms  AS7497  China, Beijing, CSTNET
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;广电网络&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 32 byte packets
 1  38.93.227.2  0.28 ms  AS174  United States, Florida, Miami, cogentco.com
 2  38.140.53.241  0.92 ms  AS174  United States, Florida, Miami, cogentco.com
 3  154.54.85.233  1.14 ms  AS174  United States, Florida, Miami, cogentco.com
 4  154.54.84.1  29.09 ms  AS174  United States, Texas, Houston, cogentco.com
 5  154.54.29.222  44.18 ms  AS174  cogentco.com
 6  154.54.42.77  53.16 ms  AS174  United States, Arizona, Phoenix, cogentco.com
 7  154.54.44.86  64.13 ms  AS174  United States, California, Los Angeles, cogentco.com
 8  154.54.40.146  75.69 ms  AS174  United States, California, San Jose, cogentco.com
 9  154.54.1.194  75.77 ms  AS174  United States, California, San Jose, cogentco.com
10  38.104.138.106  78.47 ms  AS174  United States, California, San Jose, cogentco.com
11  202.97.51.194  229.89 ms  AS4134  China, Beijing, ChinaTelecom
12  202.97.12.153  231.24 ms  AS4134  China, Beijing, ChinaTelecom
13  202.97.34.73  231.10 ms  AS4134  China, Beijing, ChinaTelecom
14  *
15  106.120.252.154  220.17 ms  AS4847  China, Beijing, ChinaTelecom
16  60.247.93.254  245.75 ms  AS4847  China, Beijing, ChinaTelecom
17  *
18  211.156.140.17  264.55 ms  AS7641  China, Beijing, CATV
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.8.158 (58.247.8.158), 30 hops max, 32 byte packets
 1  38.93.227.2  0.33 ms  AS174  United States, Florida, Miami, cogentco.com
 2  38.140.53.241  0.56 ms  AS174  United States, Florida, Miami, cogentco.com
 3  154.54.85.121  3.43 ms  AS174  United States, Florida, Miami, cogentco.com
 4  154.54.84.1  29.19 ms  AS174  United States, Texas, Houston, cogentco.com
 5  154.54.29.222  44.20 ms  AS174  cogentco.com
 6  154.54.42.77  53.14 ms  AS174  United States, Arizona, Phoenix, cogentco.com
 7  154.54.44.86  64.00 ms  AS174  United States, California, Los Angeles, cogentco.com
 8  154.54.40.146  75.57 ms  AS174  United States, California, San Jose, cogentco.com
 9  154.54.1.194  76.68 ms  AS174  United States, California, San Jose, cogentco.com
10  38.142.245.2  76.24 ms  AS174  United States, California, San Jose, cogentco.com
11  219.158.116.241  202.03 ms  AS4837  China, Shanghai, ChinaUnicom
12  219.158.113.126  199.95 ms  AS4837  China, Shanghai, ChinaUnicom
13  *
14  *
15  139.226.228.46  229.01 ms  AS17621  China, Shanghai, ChinaUnicom
16  139.226.225.22  230.64 ms  AS17621  China, Shanghai, ChinaUnicom
17  58.247.8.153  201.27 ms  AS17621  China, Shanghai, ChinaUnicom
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.5 (180.153.28.5), 30 hops max, 32 byte packets
 1  38.93.227.2  0.34 ms  AS174  United States, Florida, Miami, cogentco.com
 2  38.140.53.241  0.66 ms  AS174  United States, Florida, Miami, cogentco.com
 3  154.54.85.121  19.85 ms  AS174  United States, Florida, Miami, cogentco.com
 4  154.54.84.1  29.38 ms  AS174  United States, Texas, Houston, cogentco.com
 5  154.54.29.222  44.24 ms  AS174  cogentco.com
 6  154.54.42.65  52.29 ms  AS174  United States, Arizona, Phoenix, cogentco.com
 7  154.54.44.86  64.71 ms  AS174  United States, California, Los Angeles, cogentco.com
 8  154.54.31.190  75.37 ms  AS174  United States, California, San Jose, cogentco.com
 9  154.54.1.194  76.44 ms  AS174  United States, California, San Jose, cogentco.com
10  38.104.138.106  76.01 ms  AS174  United States, California, San Jose, cogentco.com
11  *
12  202.97.12.181  216.29 ms  AS4134  China, Shanghai, ChinaTelecom
13  *
14  61.152.26.65  227.20 ms  AS4812  China, Shanghai, ChinaTelecom
15  *
16  101.95.225.158  234.02 ms  AS4811  China, Shanghai, ChinaTelecom
17  101.227.255.34  222.43 ms  AS4812  China, Shanghai, ChinaTelecom
18  *
19  180.153.28.5  228.93 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 32 byte packets
 1  38.93.227.2  0.31 ms  AS174  United States, Florida, Miami, cogentco.com
 2  38.140.53.241  0.71 ms  AS174  United States, Florida, Miami, cogentco.com
 3  154.54.85.233  12.60 ms  AS174  United States, Florida, Miami, cogentco.com
 4  154.54.84.1  29.29 ms  AS174  United States, Texas, Houston, cogentco.com
 5  154.54.29.222  44.14 ms  AS174  cogentco.com
 6  154.54.42.65  51.65 ms  AS174  United States, Arizona, Phoenix, cogentco.com
 7  154.54.44.86  63.93 ms  AS174  United States, California, Los Angeles, cogentco.com
 8  154.54.31.190  75.65 ms  AS174  United States, California, San Jose, cogentco.com
 9  154.54.1.194  75.66 ms  AS174  United States, California, San Jose, cogentco.com
10  38.88.224.162  75.93 ms  AS174  United States, California, San Jose, cogentco.com
11  223.120.6.69  76.98 ms  AS58453  United States, California, San Jose, ChinaMobile
12  *
13  *
14  221.183.55.22  307.24 ms  AS9808  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;9929&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 32 byte packets
 1  38.93.227.2  0.34 ms  AS174  United States, Florida, Miami, cogentco.com
 2  38.140.53.241  0.60 ms  AS174  United States, Florida, Miami, cogentco.com
 3  154.54.85.121  2.85 ms  AS174  United States, Florida, Miami, cogentco.com
 4  154.54.82.241  27.98 ms  AS174  United States, Texas, Houston, cogentco.com
 5  154.54.30.162  44.98 ms  AS174  cogentco.com
 6  154.54.42.77  52.21 ms  AS174  United States, Arizona, Phoenix, cogentco.com
 7  154.54.44.86  63.93 ms  AS174  United States, California, Los Angeles, cogentco.com
 8  154.54.42.102  64.43 ms  AS174  United States, California, Los Angeles, cogentco.com
 9  38.142.239.114  195.77 ms  AS174  China, Guangdong, Guangzhou, cogentco.com
10  210.14.186.141  201.13 ms  *  China, ChinaUnicom
11  218.105.2.210  200.59 ms  AS9929  China, Shanghai, ChinaUnicom
12  210.13.75.138  193.95 ms  AS9929  China, Shanghai, ChinaUnicom
13  *
14  210.13.64.110  202.80 ms  AS9929  China, Shanghai, ChinaUnicom
15  210.13.66.237  208.21 ms  AS9929  China, Shanghai, ChinaUnicom
16  210.13.66.238  196.77 ms  AS9929  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 32 byte packets
 1  38.93.227.2  0.37 ms  AS174  United States, Florida, Miami, cogentco.com
 2  38.140.53.241  0.65 ms  AS174  United States, Florida, Miami, cogentco.com
 3  154.54.85.121  2.80 ms  AS174  United States, Florida, Miami, cogentco.com
 4  154.54.86.206  2.20 ms  AS174  United States, Florida, Miami, cogentco.com
 5  *
 6  *
 7  4.71.136.202  71.77 ms  AS3356  United States, California, Los Angeles, level3.com
 8  *
 9  *
10  *
11  61.152.24.210  209.12 ms  AS4812  China, Shanghai, ChinaTelecom
12  101.95.95.78  216.26 ms  AS4812  China, Shanghai, ChinaTelecom
13  58.32.0.1  203.78 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  38.93.227.2  0.34 ms  AS174  United States, Florida, Miami, cogentco.com
 2  38.140.53.241  0.63 ms  AS174  United States, Florida, Miami, cogentco.com
 3  154.54.85.233  62.09 ms  AS174  United States, Florida, Miami, cogentco.com
 4  154.54.84.1  29.27 ms  AS174  United States, Texas, Houston, cogentco.com
 5  154.54.29.222  44.13 ms  AS174  cogentco.com
 6  154.54.42.65  52.27 ms  AS174  United States, Arizona, Phoenix, cogentco.com
 7  154.54.44.86  63.92 ms  AS174  United States, California, Los Angeles, cogentco.com
 8  154.54.25.150  64.31 ms  AS174  United States, California, Los Angeles, cogentco.com
 9  154.54.42.70  63.79 ms  AS174  United States, California, Los Angeles, cogentco.com
10  38.142.238.66  229.03 ms  AS174  United States, California, Los Angeles, cogentco.com
11  219.158.96.29  257.74 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
12  219.158.24.137  228.34 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
13  219.158.8.113  259.69 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
14  120.83.0.234  227.80 ms  AS17816  China, Guangdong, Jieyang, ChinaUnicom
15  120.80.175.62  254.08 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
 1  38.93.227.2  0.34 ms  AS174  United States, Florida, Miami, cogentco.com
 2  38.140.53.241  0.81 ms  AS174  United States, Florida, Miami, cogentco.com
 3  154.54.85.121  2.62 ms  AS174  United States, Florida, Miami, cogentco.com
 4  154.54.82.241  27.64 ms  AS174  United States, Texas, Houston, cogentco.com
 5  154.54.29.222  43.39 ms  AS174  cogentco.com
 6  154.54.42.65  51.70 ms  AS174  United States, Arizona, Phoenix, cogentco.com
 7  154.54.45.162  64.64 ms  AS174  United States, California, Los Angeles, cogentco.com
 8  154.54.31.190  76.13 ms  AS174  United States, California, San Jose, cogentco.com
 9  154.54.5.102  86.82 ms  AS174  United States, California, San Jose, cogentco.com
10  38.104.138.106  76.17 ms  AS174  United States, California, San Jose, cogentco.com
11  202.97.27.241  222.68 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
12  *
13  202.97.89.157  229.56 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
14  *
15  113.108.209.1  228.97 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 120.196.212.25 (120.196.212.25), 30 hops max, 32 byte packets
 1  38.93.227.2  0.32 ms  AS174  United States, Florida, Miami, cogentco.com
 2  38.140.53.241  0.65 ms  AS174  United States, Florida, Miami, cogentco.com
 3  154.54.85.121  2.65 ms  AS174  United States, Florida, Miami, cogentco.com
 4  154.54.84.1  29.24 ms  AS174  United States, Texas, Houston, cogentco.com
 5  154.54.30.162  44.85 ms  AS174  cogentco.com
 6  154.54.42.65  53.05 ms  AS174  United States, Arizona, Phoenix, cogentco.com
 7  154.54.44.86  64.69 ms  AS174  United States, California, Los Angeles, cogentco.com
 8  154.54.3.70  64.87 ms  AS174  United States, California, Los Angeles, cogentco.com
 9  38.19.140.98  64.19 ms  AS174  United States, California, Los Angeles, cogentco.com
10  223.118.10.17  64.94 ms  AS58453  United States, California, Los Angeles, ChinaMobile
11  *
12  221.183.52.85  234.50 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
13  221.183.68.138  228.43 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
14  111.24.4.241  229.53 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
15  111.24.14.86  233.60 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
16  211.136.203.18  234.23 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
17  211.136.208.81  232.41 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
18  211.139.180.110  232.36 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
19  *
20  120.196.212.25  236.00 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT CN2 Gaming Broadband (TCP Mode, Max 30 Hop)
============================================================
traceroute to 119.121.0.1 (119.121.0.1), 30 hops max, 32 byte packets
 1  38.93.227.2  0.45 ms  AS174  United States, Florida, Miami, cogentco.com
 2  38.140.53.241  0.64 ms  AS174  United States, Florida, Miami, cogentco.com
 3  154.54.85.233  1.19 ms  AS174  United States, Florida, Miami, cogentco.com
 4  154.54.86.206  2.14 ms  AS174  United States, Florida, Miami, cogentco.com
 5  *
 6  *
 7  4.71.136.202  70.48 ms  AS3356  United States, California, Los Angeles, level3.com
 8  *
 9  *
10  *
11  183.57.161.10  244.41 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
12  119.121.0.1  231.77 ms  AS4809  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;还是一如既往的让人失望。&lt;/p&gt;
</content:encoded></item><item><title>Ikoula荷兰阿姆斯特丹VPS测评</title><link>https://yushum.com/posts/ikoula%E8%8D%B7%E5%85%B0%E9%98%BF%E5%A7%86%E6%96%AF%E7%89%B9%E4%B8%B9vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/ikoula%E8%8D%B7%E5%85%B0%E9%98%BF%E5%A7%86%E6%96%AF%E7%89%B9%E4%B8%B9vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Thu, 27 Jan 2022 12:22:38 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://yushum.com/ikoula%E5%BE%B7%E5%9B%BD%E6%B3%95%E5%85%B0%E5%85%8B%E7%A6%8Fvps%E6%B5%8B%E8%AF%84/&quot;&gt;Ikoula德国法兰克福测评&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://yushum.com/ikoula%E6%96%B0%E5%8A%A0%E5%9D%A1vps%E6%B5%8B%E8%AF%84/&quot;&gt;Ikoula 新加坡测评&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://yushum.com/ikoula%E6%B3%95%E5%9B%BDeppes%E5%8C%BA%E5%9F%9Fvps%E6%B5%8B%E8%AF%84/&quot;&gt;Ikoula 法国 EPPES 测评&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://yushum.com/ikoula%E6%B3%95%E5%9B%BDreims%E5%8C%BA%E5%9F%9Fvps%E6%B5%8B%E8%AF%84/&quot;&gt;Ikoula 法国 REIMS 测评&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-28                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Thu Jan 27 03:43:22 UTC 2022

Basic System Information:
---------------------------------
Processor  : Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz
CPU cores  : 1 @ 3200.086 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 467.0 MiB
Swap       : 3.0 GiB
Disk       : 47.9 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 32.32 MB/s    (8.0k) | 251.24 MB/s   (3.9k)
Write      | 32.37 MB/s    (8.0k) | 252.57 MB/s   (3.9k)
Total      | 64.69 MB/s   (16.1k) | 503.82 MB/s   (7.8k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 381.77 MB/s    (745) | 364.04 MB/s    (355)
Write      | 402.06 MB/s    (785) | 388.29 MB/s    (379)
Total      | 783.83 MB/s   (1.5k) | 752.34 MB/s    (734)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 96.6 Mbits/sec  | 551 Mbits/sec
Online.net      | Paris, FR (10G)           | 97.2 Mbits/sec  | 532 Mbits/sec
WorldStream     | The Netherlands (10G)     | 97.2 Mbits/sec  | 563 Mbits/sec
WebHorizon      | Singapore (400M)          | 85.1 Mbits/sec  | 113 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 94.2 Mbits/sec  | 271 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 92.6 Mbits/sec  | 129 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 91.4 Mbits/sec  | 195 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 87.5 Mbits/sec  | 160 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 222
Multi Core      | 224
Full Test       | https://browser.geekbench.com/v5/cpu/12417068
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Intro              : https://teddysun.com/444.html
 Version            : v2022-01-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz
 CPU Cores          : 1
 CPU Frequency      : 3200.086 MHz
 CPU Cache          : 25600 KB
 Total Disk         : 48.5 GB (5.7 GB Used)
 Total Mem          : 467 MB (107 MB Used)
 Total Swap         : 3071 MB (64 MB Used)
 System uptime      : 0 days, 0 hour 19 min
 Load average       : 0.05, 0.49, 0.53
 OS                 : Ubuntu 20.04.2 LTS
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.4.0-73-generic
 TCP CC             : cubic
 Virtualization     : Xen-DomU
 Organization       : AS174 Cogent Communications
 Location           : Amsterdam / NL
 Region             : North Holland
----------------------------------------------------------------------
 I/O Speed(1st run) : 279 MB/s
 I/O Speed(2nd run) : 290 MB/s
 I/O Speed(3rd run) : 283 MB/s
 I/O Speed(average) : 284.0 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    98.75 Mbps        529.89 Mbps         1.07 ms
 Los Angeles, US  97.38 Mbps        221.23 Mbps         151.71 ms
 Dallas, US       97.99 Mbps        184.75 Mbps         119.89 ms
 Montreal, CA     99.06 Mbps        293.03 Mbps         86.96 ms
 Paris, FR        98.35 Mbps        570.32 Mbps         15.15 ms
 Amsterdam, NL    98.10 Mbps        710.51 Mbps         1.58 ms
 Shanghai, CN     97.72 Mbps        231.29 Mbps         248.68 ms
 Nanjing, CN      67.62 Mbps        145.44 Mbps         266.28 ms
 Guangzhou, CN    66.06 Mbps        47.00 Mbps          269.63 ms
 Hongkong, CN     98.57 Mbps        267.63 Mbps         203.30 ms
 Seoul, KR        96.51 Mbps        145.64 Mbps         272.48 ms
 Singapore, SG    95.96 Mbps        352.80 Mbps         245.42 ms
 Tokyo, JP        94.54 Mbps        365.59 Mbps         244.04 ms
----------------------------------------------------------------------
 Finished in        : 6 min 38 sec
 Timestamp          : 2022-01-27 04:04:08
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Thu Jan 27 04:04:55 UTC 2022

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Cogent Communications (154.59.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               Yes (Region: NL)
 Netflix:                               Yes (Region: NL)
 YouTube Premium:                       Yes (Region: NL)
 Amazon Prime Video:                    Yes (Region: NL)
 TVBAnywhere+:                          Yes
 Tiktok Region:                         NL
 iQyi Oversea Region:                   INTL
 Viu.com:                               No
 YouTube CDN:                           London
 Netflix Preferred CDN:                 New York
 Steam Currency:                        EUR
=======================================
当前主机不支持IPv6,跳过...

本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/27/15c13af91c2a3.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/27/19040158c84d9.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/27/40526facacb20.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/27/32e2a31287b86.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 32 byte packets
 1  154.59.112.3  0.36 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 2  149.14.82.137  0.94 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 3  154.25.10.221  1.40 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 4  154.54.56.13  1.43 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 5  130.117.0.122  8.12 ms  AS174  Europe Regions, cogentco.com
 6  130.117.1.117  8.22 ms  AS174  Europe Regions, cogentco.com
 7  149.14.89.2  270.40 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 8  219.158.13.149  270.35 ms  AS4837  China, Beijing, ChinaUnicom
 9  219.158.3.137  267.71 ms  AS4837  China, Beijing, ChinaUnicom
10  *
11  *
12  61.51.169.178  244.01 ms  AS4808  China, Beijing, ChinaUnicom
13  61.148.158.102  243.38 ms  AS4808  China, Beijing, ChinaUnicom
14  61.135.113.158  228.40 ms  AS4808  China, Beijing, ChinaUnicom
15  *
16  123.125.99.1  267.92 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.9 (180.149.128.9), 30 hops max, 32 byte packets
 1  154.59.112.3  0.39 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 2  149.14.82.137  1.07 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 3  154.25.10.221  1.25 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 4  130.117.50.5  1.62 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 5  154.54.57.78  1.69 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 6  149.29.1.130  44.45 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 7  202.97.40.113  257.09 ms  AS4134  China, Beijing, ChinaTelecom
 8  202.97.26.253  259.31 ms  AS4134  China, Beijing, ChinaTelecom
 9  202.97.53.25  251.89 ms  AS4134  China, Beijing, ChinaTelecom
10  36.110.245.182  242.21 ms  AS23724  China, Beijing, ChinaTelecom
11  *
12  180.149.128.9  297.05 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
 1  154.59.112.3  0.47 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 2  149.14.82.137  0.92 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 3  154.25.10.225  1.17 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 4  130.117.50.5  1.32 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 5  154.54.56.174  84.73 ms  AS174  France, Ile-de-France, Paris, cogentco.com
 6  154.54.27.169  83.32 ms  AS174  United States, New York, New York City, cogentco.com
 7  154.54.46.34  81.25 ms  AS174  United States, New York, New York City, cogentco.com
 8  154.54.40.106  82.57 ms  AS174  United States, Virginia, Arlington, cogentco.com
 9  154.54.28.130  112.74 ms  AS174  United States, Texas, Houston, cogentco.com
10  154.54.30.162  128.61 ms  AS174  cogentco.com
11  154.54.42.65  139.91 ms  AS174  United States, Arizona, Phoenix, cogentco.com
12  154.54.44.86  148.06 ms  AS174  United States, California, Los Angeles, cogentco.com
13  154.54.27.118  150.11 ms  AS174  United States, California, Los Angeles, cogentco.com
14  38.104.85.162  201.79 ms  AS174  United States, California, Los Angeles, cogentco.com
15  223.120.6.217  201.38 ms  AS58453  United States, California, Los Angeles, ChinaMobile
16  *
17  *
18  *
19  221.176.16.213  348.21 ms  AS9808  China, Beijing, ChinaMobile
20  *
21  111.24.2.134  349.58 ms  AS9808  China, Beijing, ChinaMobile
22  *
23  *
24  211.136.95.226  351.92 ms  AS56048  China, Beijing, ChinaMobile
25  211.136.95.226  358.11 ms  AS56048  China, Beijing, ChinaMobile
26  211.136.95.226  350.63 ms  AS56048  China, Beijing, ChinaMobile
27  *
28  211.136.25.153  352.46 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.8.158 (58.247.8.158), 30 hops max, 32 byte packets
 1  154.59.112.3  0.57 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 2  149.14.82.137  0.87 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 3  154.25.10.225  1.58 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 4  154.54.56.13  1.38 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 5  130.117.0.142  8.16 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 6  154.54.37.30  8.77 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 7  154.25.12.77  8.25 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 8  *
 9  219.158.14.149  276.59 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
10  219.158.8.141  240.60 ms  AS4837  China, Shanghai, ChinaUnicom
11  219.158.8.181  231.21 ms  AS4837  China, Shanghai, ChinaUnicom
12  *
13  *
14  139.226.228.46  235.14 ms  AS17621  China, Shanghai, ChinaUnicom
15  139.226.225.22  231.38 ms  AS17621  China, Shanghai, ChinaUnicom
16  58.247.8.153  246.31 ms  AS17621  China, Shanghai, ChinaUnicom
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.5 (180.153.28.5), 30 hops max, 32 byte packets
 1  154.59.112.3  0.39 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 2  149.14.82.137  1.03 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 3  154.25.10.221  1.67 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 4  130.117.50.5  2.62 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 5  154.54.57.78  1.32 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 6  149.29.1.130  13.26 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 7  *
 8  202.97.12.181  269.35 ms  AS4134  China, Shanghai, ChinaTelecom
 9  202.97.57.18  296.69 ms  AS4134  China, Shanghai, ChinaTelecom
10  61.152.25.133  307.61 ms  AS4812  China, Shanghai, ChinaTelecom
11  101.95.207.18  294.94 ms  AS4812  China, Shanghai, ChinaTelecom
12  124.74.232.242  305.02 ms  AS4811  China, Shanghai, ChinaTelecom
13  101.227.255.34  292.21 ms  AS4812  China, Shanghai, ChinaTelecom
14  180.153.28.5  300.86 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 32 byte packets
 1  154.59.112.3  0.39 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 2  149.14.82.137  0.95 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 3  154.25.10.221  1.46 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 4  130.117.50.5  1.58 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 5  130.117.51.41  96.64 ms  AS174  United Kingdom, London, cogentco.com
 6  154.54.42.85  130.65 ms  AS174  United States, New York, New York City, cogentco.com
 7  154.54.82.245  96.86 ms  AS174  United States, Ohio, Cleveland, cogentco.com
 8  154.54.44.166  102.51 ms  AS174  Canada, Quebec, Montreal, cogentco.com
 9  154.54.42.165  108.66 ms  AS174  United States, Missouri, Kansas City, cogentco.com
10  154.54.31.89  119.96 ms  AS174  cogentco.com
11  154.54.42.97  131.72 ms  AS174  United States, Utah, Salt Lake City, cogentco.com
12  154.54.44.169  114.62 ms  AS174  cogentco.com
13  154.54.43.10  146.65 ms  AS174  United States, California, San Jose, cogentco.com
14  38.88.224.162  148.39 ms  AS174  United States, California, San Jose, cogentco.com
15  223.120.6.69  148.24 ms  AS58453  United States, California, San Jose, ChinaMobile
16  *
17  *
18  221.183.55.22  284.68 ms  AS9808  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;9929&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 32 byte packets
 1  154.59.112.3  1.29 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 2  149.14.82.137  1.02 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 3  154.25.10.221  1.27 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 4  130.117.50.5  1.37 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 5  130.117.0.122  8.07 ms  AS174  Europe Regions, cogentco.com
 6  130.117.1.117  8.22 ms  AS174  Europe Regions, cogentco.com
 7  149.14.157.130  218.99 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 8  *
 9  *
10  *
11  210.13.112.254  224.82 ms  AS9929  China, Shanghai, ChinaUnicom
12  210.13.64.109  217.52 ms  AS9929  China, Shanghai, ChinaUnicom
13  210.13.64.110  224.70 ms  AS9929  China, Shanghai, ChinaUnicom
14  210.13.66.237  220.01 ms  AS9929  China, Shanghai, ChinaUnicom
15  210.13.66.238  227.67 ms  AS9929  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 32 byte packets
 1  154.59.112.3  0.38 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 2  149.14.82.137  0.97 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 3  154.25.10.221  12.67 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 4  154.54.61.217  1.70 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 5  *
 6  62.115.120.228  7.49 ms  AS1299  Netherlands, North Holland, Amsterdam, telia.com
 7  62.115.113.239  7.37 ms  AS1299  United Kingdom, London, telia.com
 8  62.115.120.239  7.53 ms  AS1299  United Kingdom, London, telia.com
 9  80.239.193.226  9.18 ms  AS1299  United Kingdom, London, telia.com
10  *
11  *
12  *
13  101.95.88.50  230.90 ms  AS4812  China, Shanghai, ChinaTelecom
14  58.32.0.1  255.88 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  154.59.112.3  0.37 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 2  149.14.82.137  0.91 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 3  154.25.10.221  12.29 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 4  154.54.61.217  1.57 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 5  130.117.0.122  8.02 ms  AS174  Europe Regions, cogentco.com
 6  154.54.37.30  8.32 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 7  154.25.12.77  8.32 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 8  *
 9  219.158.14.153  243.72 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
10  219.158.97.26  245.25 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
11  219.158.103.217  241.89 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
12  112.96.0.146  241.55 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
13  120.80.170.254  250.86 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
 1  154.59.112.3  0.40 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 2  149.14.82.137  0.91 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 3  154.25.10.225  1.09 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 4  154.54.56.13  1.60 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 5  154.54.57.78  1.60 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 6  149.29.1.130  2.87 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 7  202.97.13.25  248.36 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
 8  202.97.94.113  249.85 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
 9  202.97.94.137  252.46 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
10  *
11  113.108.209.1  252.94 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 120.196.212.25 (120.196.212.25), 30 hops max, 32 byte packets
 1  154.59.112.3  0.45 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 2  149.14.82.137  1.13 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 3  154.25.10.225  1.24 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 4  154.54.56.13  1.62 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 5  154.54.56.174  84.53 ms  AS174  France, Ile-de-France, Paris, cogentco.com
 6  154.54.82.38  80.96 ms  AS174  United States, Massachusetts, Boston, cogentco.com
 7  154.54.40.110  83.01 ms  AS174  United States, Virginia, Arlington, cogentco.com
 8  154.54.24.222  128.61 ms  AS174  United States, Georgia, Atlanta, cogentco.com
 9  154.54.24.222  101.30 ms  AS174  United States, Georgia, Atlanta, cogentco.com
10  154.54.30.162  133.35 ms  AS174  cogentco.com
11  154.54.42.65  136.55 ms  AS174  United States, Arizona, Phoenix, cogentco.com
12  154.54.44.86  148.26 ms  AS174  United States, California, Los Angeles, cogentco.com
13  154.54.3.70  150.13 ms  AS174  United States, California, Los Angeles, cogentco.com
14  38.19.140.98  150.02 ms  AS174  United States, California, Los Angeles, cogentco.com
15  223.118.10.85  150.11 ms  AS58453  United States, California, Los Angeles, ChinaMobile
16  *
17  221.183.52.85  296.64 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
18  221.183.68.138  297.88 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
19  221.183.68.146  293.70 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
20  111.24.14.74  306.41 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
21  111.24.5.218  294.80 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
22  211.136.196.230  301.94 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
23  211.136.203.10  306.64 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
24  211.139.180.106  305.25 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
25  *
26  *
27  *
28  120.196.212.25  306.69 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT CN2 Gaming Broadband (TCP Mode, Max 30 Hop)
============================================================
traceroute to 119.121.0.1 (119.121.0.1), 30 hops max, 32 byte packets
 1  154.59.112.3  0.44 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 2  149.14.82.137  1.14 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 3  154.25.10.225  1.23 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 4  154.54.61.217  1.43 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 5  130.117.14.102  1.44 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 6  62.115.120.228  7.52 ms  AS1299  Netherlands, North Holland, Amsterdam, telia.com
 7  62.115.134.27  21.04 ms  AS1299  United Kingdom, London, telia.com
 8  62.115.120.239  7.19 ms  AS1299  United Kingdom, London, telia.com
 9  80.239.193.226  7.31 ms  AS1299  United Kingdom, London, telia.com
10  *
11  *
12  *
13  *
14  119.121.0.1  267.99 ms  AS4809  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;这性能和网络，除了无限流量，毫无优点。&lt;/p&gt;
</content:encoded></item><item><title>Ikoula德国法兰克福VPS测评</title><link>https://yushum.com/posts/ikoula%E5%BE%B7%E5%9B%BD%E6%B3%95%E5%85%B0%E5%85%8B%E7%A6%8Fvps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/ikoula%E5%BE%B7%E5%9B%BD%E6%B3%95%E5%85%B0%E5%85%8B%E7%A6%8Fvps%E6%B5%8B%E8%AF%84/</guid><pubDate>Wed, 26 Jan 2022 15:57:31 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://yushum.com/ikoula%E6%96%B0%E5%8A%A0%E5%9D%A1vps%E6%B5%8B%E8%AF%84/&quot;&gt;Ikoula 新加坡测评&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://yushum.com/ikoula%E6%B3%95%E5%9B%BDeppes%E5%8C%BA%E5%9F%9Fvps%E6%B5%8B%E8%AF%84/&quot;&gt;Ikoula 法国 EPPES 测评&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://yushum.com/ikoula%E6%B3%95%E5%9B%BDreims%E5%8C%BA%E5%9F%9Fvps%E6%B5%8B%E8%AF%84/&quot;&gt;Ikoula 法国 REIMS 测评&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-28                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Wed Jan 26 07:14:32 UTC 2022

Basic System Information:
---------------------------------
Processor  : Intel(R) Xeon(R) CPU           E5520  @ 2.27GHz
CPU cores  : 1 @ 2261.157 MHz
AES-NI     : ❌ Disabled
VM-x/AMD-V : ❌ Disabled
RAM        : 467.0 MiB
Swap       : 3.0 GiB
Disk       : 47.9 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 30.20 MB/s    (7.5k) | 236.77 MB/s   (3.6k)
Write      | 30.21 MB/s    (7.5k) | 238.01 MB/s   (3.7k)
Total      | 60.42 MB/s   (15.1k) | 474.79 MB/s   (7.4k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 334.62 MB/s    (653) | 354.26 MB/s    (345)
Write      | 352.40 MB/s    (688) | 377.85 MB/s    (368)
Total      | 687.02 MB/s   (1.3k) | 732.11 MB/s    (713)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 99.1 Mbits/sec  | 98.0 Mbits/sec
Online.net      | Paris, FR (10G)           | 98.1 Mbits/sec  | 87.0 Mbits/sec
WorldStream     | The Netherlands (10G)     | 98.2 Mbits/sec  | 97.7 Mbits/sec
WebHorizon      | Singapore (400M)          | 88.1 Mbits/sec  | 36.6 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 96.1 Mbits/sec  | 81.9 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 93.2 Mbits/sec  | 69.8 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 92.9 Mbits/sec  | 66.8 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 89.3 Mbits/sec  | 42.1 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 158
Multi Core      | 155
Full Test       | https://browser.geekbench.com/v5/cpu/12398080
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Intro              : https://teddysun.com/444.html
 Version            : v2022-01-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) CPU           E5520  @ 2.27GHz
 CPU Cores          : 1
 CPU Frequency      : 2261.157 MHz
 CPU Cache          : 8192 KB
 Total Disk         : 48.5 GB (7.9 GB Used)
 Total Mem          : 467 MB (109 MB Used)
 Total Swap         : 3071 MB (61 MB Used)
 System uptime      : 0 days, 0 hour 23 min
 Load average       : 0.10, 0.62, 0.74
 OS                 : Ubuntu 20.04.2 LTS
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.4.0-73-generic
 TCP CC             : cubic
 Virtualization     : Xen-DomU
 Organization       : AS174 Cogent Communications
 Location           : Frankfurt am Main / DE
 Region             : Hesse
----------------------------------------------------------------------
 I/O Speed(1st run) : 222 MB/s
 I/O Speed(2nd run) : 236 MB/s
 I/O Speed(3rd run) : 241 MB/s
 I/O Speed(average) : 233.0 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    98.21 Mbps        107.30 Mbps         0.74 ms
 Los Angeles, US  99.10 Mbps        102.60 Mbps         168.05 ms
 Dallas, US       98.53 Mbps        104.19 Mbps         128.05 ms
 Montreal, CA     98.76 Mbps        90.82 Mbps          93.92 ms
 Paris, FR        98.02 Mbps        106.75 Mbps         11.54 ms
 Amsterdam, NL    97.61 Mbps        110.12 Mbps         8.09 ms
 Shanghai, CN     98.23 Mbps        111.83 Mbps         235.70 ms
 Nanjing, CN      98.75 Mbps        115.47 Mbps         244.38 ms
 Guangzhou, CN    94.48 Mbps        68.06 Mbps          259.49 ms
 Hongkong, CN     99.20 Mbps        98.36 Mbps          210.84 ms
 Seoul, KR        98.23 Mbps        108.54 Mbps         295.48 ms
 Singapore, SG    98.65 Mbps        98.26 Mbps          252.27 ms
 Tokyo, JP        98.77 Mbps        112.09 Mbps         246.19 ms
----------------------------------------------------------------------
 Finished in        : 7 min 13 sec
 Timestamp          : 2022-01-26 07:40:10
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Wed Jan 26 07:42:49 UTC 2022

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Cogent Communications (154.46.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               Yes (Region: DE)
 Netflix:                               Yes (Region: DE)
 YouTube Premium:                       Yes (Region: US)
 Amazon Prime Video:                    Yes (Region: DE)
 TVBAnywhere+:                          Yes
 Tiktok Region:                         DE
 iQyi Oversea Region:                   DE
 Viu.com:                               No
 YouTube CDN:                           Frankfurt
 Netflix Preferred CDN:                 New York
 Steam Currency:                        EUR
=======================================
当前主机不支持IPv6,跳过...

本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/26/f213552021ad9.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/26/cafa8756d0298.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/26/f752b0b098c37.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/26/82e992e3e4e31.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 32 byte packets
 1  154.46.204.2  0.28 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 2  149.11.96.33  0.98 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 3  154.25.5.17  1.19 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 4  *
 5  219.158.12.161  384.42 ms  AS4837  China, Beijing, ChinaUnicom
 6  219.158.16.77  290.46 ms  AS4837  China, Beijing, ChinaUnicom
 7  *
 8  *
 9  202.96.12.58  307.51 ms  AS4808  China, Beijing, ChinaUnicom
10  124.65.194.134  243.28 ms  AS4808  China, Beijing, ChinaUnicom
11  61.135.113.158  283.73 ms  AS4808  China, Beijing, ChinaUnicom
12  *
13  123.125.99.1  289.51 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.9 (180.149.128.9), 30 hops max, 32 byte packets
 1  154.46.204.2  0.27 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 2  149.11.96.33  1.01 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 3  154.25.5.17  71.92 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 4  149.14.159.114  13.76 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 5  202.97.43.33  269.71 ms  AS4134  China, Beijing, ChinaTelecom
 6  202.97.53.69  232.86 ms  AS4134  China, Beijing, ChinaTelecom
 7  *
 8  36.110.248.146  231.00 ms  AS23724  China, Beijing, ChinaTelecom
 9  36.110.246.198  269.61 ms  AS23724  China, Beijing, ChinaTelecom
10  180.149.128.9  302.85 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
 1  154.46.204.2  0.28 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 2  149.11.96.33  0.90 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 3  154.25.5.17  1.68 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 4  130.117.48.210  13.62 ms  AS174  Europe Regions, cogentco.com
 5  154.54.58.234  10.81 ms  AS174  cogentco.com
 6  154.54.61.113  23.16 ms  AS174  Spain, Euskadi, Bilbao, cogentco.com
 7  154.54.85.241  147.97 ms  AS174  United States, Virginia, Arlington, cogentco.com
 8  154.54.24.222  149.93 ms  AS174  United States, Georgia, Atlanta, cogentco.com
 9  154.54.28.70  122.39 ms  AS174  cogentco.com
10  154.54.30.162  149.79 ms  AS174  cogentco.com
11  154.54.42.65  209.95 ms  AS174  United States, Arizona, Phoenix, cogentco.com
12  154.54.44.86  209.79 ms  AS174  United States, California, Los Angeles, cogentco.com
13  154.54.27.118  169.45 ms  AS174  United States, California, Los Angeles, cogentco.com
14  38.104.85.162  510.30 ms  AS174  United States, California, Los Angeles, cogentco.com
15  223.120.6.217  259.90 ms  AS58453  United States, California, Los Angeles, ChinaMobile
16  *
17  *
18  *
19  *
20  111.24.17.158  575.16 ms  AS9808  China, Beijing, ChinaMobile
21  *
22  *
23  *
24  211.136.95.226  361.00 ms  AS56048  China, Beijing, ChinaMobile
25  211.136.95.226  655.23 ms  AS56048  China, Beijing, ChinaMobile
26  *
27  211.136.25.153  418.51 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.8.158 (58.247.8.158), 30 hops max, 32 byte packets
 1  154.46.204.2  0.30 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 2  149.11.96.33  1.23 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 3  154.25.5.17  2.27 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 4  130.117.48.158  1.65 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 5  154.54.56.190  1.49 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 6  154.25.12.77  1.59 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 7  *
 8  219.158.11.181  233.44 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
 9  219.158.111.221  278.38 ms  AS4837  China, ChinaUnicom
10  219.158.19.78  268.46 ms  AS4837  China, Shanghai, ChinaUnicom
11  *
12  *
13  139.226.228.46  307.01 ms  AS17621  China, Shanghai, ChinaUnicom
14  139.226.225.22  269.98 ms  AS17621  China, Shanghai, ChinaUnicom
15  58.247.8.153  246.50 ms  AS17621  China, Shanghai, ChinaUnicom
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.5 (180.153.28.5), 30 hops max, 32 byte packets
 1  154.46.204.2  0.30 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 2  149.11.96.33  1.01 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 3  154.25.5.17  15.59 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 4  149.14.159.114  92.48 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 5  202.97.95.205  232.40 ms  AS4134  China, Shanghai, ChinaTelecom
 6  202.97.50.194  220.57 ms  AS4134  China, Shanghai, ChinaTelecom
 7  *
 8  *
 9  *
10  101.95.225.38  248.70 ms  AS4811  China, Shanghai, ChinaTelecom
11  101.227.255.46  309.19 ms  AS4812  China, Shanghai, ChinaTelecom
12  180.153.28.5  234.43 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 32 byte packets
 1  154.46.204.2  0.32 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 2  149.11.96.33  0.89 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 3  154.25.5.17  190.46 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 4  130.117.0.1  1.26 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 5  130.117.0.141  154.19 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 6  154.54.56.93  108.42 ms  AS174  United Kingdom, London, cogentco.com
 7  154.54.30.185  99.11 ms  AS174  United States, New York, New York City, cogentco.com
 8  154.54.47.49  118.82 ms  AS174  United States, Ohio, Cleveland, cogentco.com
 9  154.54.6.221  119.43 ms  AS174  United States, Illinois, Chicago, cogentco.com
10  154.54.44.169  169.26 ms  AS174  cogentco.com
11  154.54.31.89  149.97 ms  AS174  cogentco.com
12  154.54.41.145  270.67 ms  AS174  United States, Utah, Salt Lake City, cogentco.com
13  154.54.44.137  228.76 ms  AS174  United States, California, San Francisco, cogentco.com
14  154.54.43.10  188.48 ms  AS174  United States, California, San Jose, cogentco.com
15  38.88.224.162  210.90 ms  AS174  United States, California, San Jose, cogentco.com
16  223.120.6.69  152.21 ms  AS58453  United States, California, San Jose, ChinaMobile
17  154.54.43.14  156.37 ms  AS174  United States, California, San Jose, cogentco.com
18  *
19  221.183.55.22  293.42 ms  AS9808  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;9929&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 32 byte packets
 1  154.46.204.2  0.28 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 2  149.11.96.33  1.18 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 3  154.25.8.1  1.34 ms  AS174  cogentco.com
 4  130.117.0.1  1.48 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 5  154.54.56.190  1.62 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 6  154.25.12.77  1.47 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 7  149.11.84.106  223.34 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 8  *
 9  *
10  218.105.2.210  225.26 ms  AS9929  China, Shanghai, ChinaUnicom
11  210.13.116.82  224.24 ms  AS9929  China, Shanghai, ChinaUnicom
12  *
13  210.13.64.110  225.33 ms  AS9929  China, Shanghai, ChinaUnicom
14  210.13.66.237  219.87 ms  AS9929  China, Shanghai, ChinaUnicom
15  210.13.66.238  220.10 ms  AS9929  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 32 byte packets
 1  154.46.204.2  0.26 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 2  149.11.96.33  1.08 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 3  154.25.5.17  24.49 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 4  130.117.14.198  1.10 ms  AS174  cogentco.com
 5  62.115.114.88  15.54 ms  AS1299  Germany, Hesse, Frankfurt, telia.com
 6  62.115.114.98  15.42 ms  AS1299  France, Ile-de-France, Paris, telia.com
 7  62.115.133.238  16.03 ms  AS1299  telia.com
 8  62.115.122.189  15.93 ms  AS1299  United Kingdom, London, telia.com
 9  80.239.193.226  16.66 ms  AS1299  United Kingdom, London, telia.com
10  *
11  *
12  *
13  *
14  *
15  58.32.0.1  249.48 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  154.46.204.2  0.33 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 2  149.11.96.33  1.08 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 3  154.25.5.17  14.62 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 4  130.117.48.210  1.42 ms  AS174  Europe Regions, cogentco.com
 5  154.54.37.30  1.61 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 6  154.25.12.77  1.57 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 7  *
 8  219.158.14.149  272.15 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
 9  219.158.96.206  306.57 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
10  219.158.8.117  299.32 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
11  120.83.0.234  329.04 ms  AS17816  China, Guangdong, Jieyang, ChinaUnicom
12  120.80.175.78  288.89 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
 1  154.46.204.2  0.32 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 2  149.11.96.33  1.00 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 3  154.25.5.17  17.04 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 4  149.14.159.114  1.32 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 5  202.97.13.29  301.31 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
 6  202.97.94.97  247.17 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
 7  202.97.89.217  246.44 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
 8  *
 9  113.108.209.1  268.83 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 120.196.212.25 (120.196.212.25), 30 hops max, 32 byte packets
 1  154.46.204.2  0.28 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 2  149.11.96.33  0.91 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 3  154.25.8.1  1.31 ms  AS174  cogentco.com
 4  130.117.0.1  7.98 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 5  154.54.58.234  10.56 ms  AS174  cogentco.com
 6  154.54.61.113  23.17 ms  AS174  Spain, Euskadi, Bilbao, cogentco.com
 7  154.54.85.241  179.27 ms  AS174  United States, Virginia, Arlington, cogentco.com
 8  154.54.24.222  109.55 ms  AS174  United States, Georgia, Atlanta, cogentco.com
 9  154.54.28.130  120.80 ms  AS174  United States, Texas, Houston, cogentco.com
10  154.54.29.222  227.48 ms  AS174  cogentco.com
11  154.54.42.77  210.27 ms  AS174  United States, Arizona, Phoenix, cogentco.com
12  154.54.44.86  158.48 ms  AS174  United States, California, Los Angeles, cogentco.com
13  154.54.3.70  209.66 ms  AS174  United States, California, Los Angeles, cogentco.com
14  38.19.140.98  169.26 ms  AS174  United States, California, Los Angeles, cogentco.com
15  223.118.10.17  209.95 ms  AS58453  United States, California, Los Angeles, ChinaMobile
16  *
17  221.183.52.85  295.43 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
18  221.176.24.5  330.07 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
19  *
20  111.24.5.26  329.57 ms  AS9808  China, Guangdong, Shenzhen, ChinaMobile
21  211.136.204.93  318.63 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
22  211.139.180.106  510.03 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
23  *
24  120.196.212.25  420.06 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT CN2 Gaming Broadband (TCP Mode, Max 30 Hop)
============================================================
traceroute to 119.121.0.1 (119.121.0.1), 30 hops max, 32 byte packets
 1  154.46.204.2  0.29 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 2  149.11.96.33  1.09 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 3  154.25.5.17  1.09 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 4  130.117.14.198  1.48 ms  AS174  cogentco.com
 5  62.115.114.88  28.87 ms  AS1299  Germany, Hesse, Frankfurt, telia.com
 6  62.115.122.138  16.94 ms  AS1299  France, Ile-de-France, Paris, telia.com
 7  62.115.135.24  15.83 ms  AS1299  United Kingdom, London, telia.com
 8  62.115.122.189  15.97 ms  AS1299  United Kingdom, London, telia.com
 9  80.239.193.226  16.53 ms  AS1299  United Kingdom, London, telia.com
10  *
11  *
12  *
13  59.43.70.6  243.02 ms  *  China, Guangdong, Guangzhou, ChinaTelecom
14  119.121.0.1  259.97 ms  AS4809  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;性能不行，网络还不如法国。&lt;/p&gt;
</content:encoded></item><item><title>Ikoula法国REIMS区域VPS测评</title><link>https://yushum.com/posts/ikoula%E6%B3%95%E5%9B%BDreims%E5%8C%BA%E5%9F%9Fvps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/ikoula%E6%B3%95%E5%9B%BDreims%E5%8C%BA%E5%9F%9Fvps%E6%B5%8B%E8%AF%84/</guid><pubDate>Wed, 26 Jan 2022 14:31:38 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://yushum.com/ikoula%E6%96%B0%E5%8A%A0%E5%9D%A1vps%E6%B5%8B%E8%AF%84/&quot;&gt;Ikoula 新加坡测评&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://yushum.com/ikoula%E6%B3%95%E5%9B%BDeppes%E5%8C%BA%E5%9F%9Fvps%E6%B5%8B%E8%AF%84/&quot;&gt;Ikoula法国EPPES测评&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-28                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Wed Jan 26 03:27:57 UTC 2022

Basic System Information:
---------------------------------
Processor  : Intel(R) Xeon(R) CPU           X5680  @ 3.33GHz
CPU cores  : 1 @ 3324.793 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 467.0 MiB
Swap       : 3.0 GiB
Disk       : 47.9 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 32.87 MB/s    (8.2k) | 238.44 MB/s   (3.7k)
Write      | 32.92 MB/s    (8.2k) | 239.70 MB/s   (3.7k)
Total      | 65.79 MB/s   (16.4k) | 478.14 MB/s   (7.4k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 357.52 MB/s    (698) | 371.23 MB/s    (362)
Write      | 376.51 MB/s    (735) | 395.96 MB/s    (386)
Total      | 734.03 MB/s   (1.4k) | 767.20 MB/s    (748)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 97.3 Mbits/sec  | 211 Mbits/sec
Online.net      | Paris, FR (10G)           | 97.9 Mbits/sec  | 319 Mbits/sec
WorldStream     | The Netherlands (10G)     | 96.1 Mbits/sec  | 171 Mbits/sec
WebHorizon      | Singapore (400M)          | 91.2 Mbits/sec  | 67.3 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 94.6 Mbits/sec  | 29.4 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 91.3 Mbits/sec  | 18.2 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 91.3 Mbits/sec  | 25.2 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 88.9 Mbits/sec  | 13.3 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 151
Multi Core      | 151
Full Test       | https://browser.geekbench.com/v5/cpu/12395473
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Intro              : https://teddysun.com/444.html
 Version            : v2022-01-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) CPU           X5680  @ 3.33GHz
 CPU Cores          : 1
 CPU Frequency      : 3324.793 MHz
 CPU Cache          : 12288 KB
 Total Disk         : 48.5 GB (8.0 GB Used)
 Total Mem          : 467 MB (107 MB Used)
 Total Swap         : 3071 MB (61 MB Used)
 System uptime      : 0 days, 0 hour 31 min
 Load average       : 0.00, 0.24, 0.42
 OS                 : Ubuntu 20.04.2 LTS
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.4.0-73-generic
 TCP CC             : cubic
 Virtualization     : Xen-DomU
 Organization       : AS21409 Ikoula Net SAS
 Location           : Paris / FR
 Region             : Île-de-France
----------------------------------------------------------------------
 I/O Speed(1st run) : 209 MB/s
 I/O Speed(2nd run) : 218 MB/s
 I/O Speed(3rd run) : 224 MB/s
 I/O Speed(average) : 217.0 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    99.03 Mbps        362.36 Mbps         2.42 ms
 Los Angeles, US  96.85 Mbps        23.89 Mbps          139.67 ms
 Dallas, US       98.88 Mbps        16.12 Mbps          111.73 ms
 Montreal, CA     99.03 Mbps        244.67 Mbps         89.49 ms
 Paris, FR        95.23 Mbps        244.95 Mbps         4.34 ms
 Amsterdam, NL    98.00 Mbps        130.04 Mbps         14.36 ms
 Shanghai, CN     96.88 Mbps        68.16 Mbps          293.01 ms
 Nanjing, CN      97.60 Mbps        120.60 Mbps         214.00 ms
 Guangzhou, CN    97.47 Mbps        56.03 Mbps          219.31 ms
 Seoul, KR        97.43 Mbps        125.33 Mbps         281.45 ms
 Singapore, SG    97.54 Mbps        25.82 Mbps          248.53 ms
 Tokyo, JP        97.81 Mbps        19.41 Mbps          215.32 ms
----------------------------------------------------------------------
 Finished in        : 6 min 44 sec
 Timestamp          : 2022-01-26 04:02:08
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Wed Jan 26 05:02:00 UTC 2022

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Ikoula Net SAS (178.170.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               No
 Netflix:                               Originals Only
 YouTube Premium:                       Yes (Region: FR)
 Amazon Prime Video:                    Yes (Region: FR)
 TVBAnywhere+:                          Yes
 Tiktok Region:                         FR
 iQyi Oversea Region:                   FR
 Viu.com:                               No
 YouTube CDN:                           Amsterdam
 Netflix Preferred CDN:                 Paris
 Steam Currency:                        EUR
=======================================
当前主机不支持IPv6,跳过...

本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/26/3eb96e785be60.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/26/2c37c02427798.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/26/06b32b2c8646a.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/26/5a26cee89f7ed.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 32 byte packets
 1  178.170.54.250  0.37 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.162  0.64 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.140  3.40 ms  AS21409  France, Grand Est, Reims, ikoula.com
 4  213.246.32.157  2.84 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 5  213.246.32.153  11.01 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 6  154.14.26.153  2.74 ms  AS286,AS3257  France, Ile-de-France, Paris, gtt.net
 7  *
 8  219.158.14.153  271.02 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
 9  219.158.115.157  265.43 ms  AS4837  China, Beijing, ChinaUnicom
10  219.158.3.137  244.83 ms  AS4837  China, Beijing, ChinaUnicom
11  219.158.3.137  258.39 ms  AS4837  China, Beijing, ChinaUnicom
12  219.158.5.157  253.66 ms  AS4837  China, Beijing, ChinaUnicom
13  *
14  61.148.159.50  274.89 ms  AS4808  China, Beijing, ChinaUnicom
15  124.65.194.46  256.00 ms  AS4808  China, Beijing, ChinaUnicom
16  *
17  *
18  123.125.99.1  269.96 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.9 (180.149.128.9), 30 hops max, 32 byte packets
 1  178.170.54.250  0.33 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.162  0.80 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.146  11.81 ms  AS21409  France, Grand Est, Reims, ikoula.com
 4  80.249.212.76  17.88 ms  *  Netherlands, North Holland, Amsterdam, ams-ix.ne                                                                                t
 5  80.249.212.76  19.35 ms  *  Netherlands, North Holland, Amsterdam, ams-ix.ne                                                                                t
 6  202.97.28.237  246.29 ms  AS4134  China, Beijing, ChinaTelecom
 7  *
 8  *
 9  36.110.246.198  225.07 ms  AS23724  China, Beijing, ChinaTelecom
10  *
11  180.149.128.9  267.66 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
 1  178.170.54.250  0.30 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.166  0.90 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.146  13.65 ms  AS21409  France, Grand Est, Reims, ikoula.com
 4  62.115.40.12  2.58 ms  AS1299  France, Ile-de-France, Paris, telia.com
 5  213.155.130.22  135.02 ms  AS1299  France, Ile-de-France, Paris, telia.com
 6  62.115.112.242  85.11 ms  AS1299  United States, Virginia, Ashburn, telia.co                                                                                m
 7  62.115.122.159  139.08 ms  AS1299  United States, Virginia, Ashburn, telia.c                                                                                om
 8  62.115.114.86  134.82 ms  AS1299  United States, California, Los Angeles, te                                                                                lia.com
 9  62.115.171.219  147.68 ms  AS1299  United States, California, Los Angeles, t                                                                                elia.com
10  223.120.6.22  149.85 ms  AS58453  United States, California, Los Angeles, Ch                                                                                inaMobile
11  *
12  62.115.171.219  150.02 ms  AS1299  United States, California, Los Angeles, t                                                                                elia.com
13  221.176.16.213  289.52 ms  AS9808  China, Beijing, ChinaMobile
14  *
15  111.24.2.97  294.42 ms  AS9808  China, Beijing, ChinaMobile
16  *
17  *
18  211.136.67.166  298.03 ms  AS56048  China, Beijing, ChinaMobile
19  *
20  *
21  *
22  211.136.25.153  293.20 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.8.158 (58.247.8.158), 30 hops max, 32 byte packets
 1  178.170.54.250  0.31 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.162  0.73 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.135  16.95 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 4  213.246.32.135  2.60 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 5  184.104.205.17  9.14 ms  AS6939  France, Ile-de-France, Paris, he.net
 6  184.105.80.202  134.05 ms  AS6939  United States, California, Los Angeles, h                                                                                e.net
 7  184.105.80.202  134.37 ms  AS6939  United States, California, Los Angeles, h                                                                                e.net
 8  72.52.93.38  297.79 ms  AS6939  United States, California, Los Angeles, he.n                                                                                et
 9  72.52.93.38  295.26 ms  AS6939  United States, California, Los Angeles, he.n                                                                                et
10  219.158.96.33  301.27 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
11  219.158.8.141  301.97 ms  AS4837  China, Shanghai, ChinaUnicom
12  219.158.8.185  297.96 ms  AS4837  China, Shanghai, ChinaUnicom
13  *
14  139.226.227.42  318.23 ms  AS17621  China, Shanghai, ChinaUnicom
15  139.226.228.46  318.19 ms  AS17621  China, Shanghai, ChinaUnicom
16  58.247.8.153  323.86 ms  AS17621  China, Shanghai, ChinaUnicom
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.5 (180.153.28.5), 30 hops max, 32 byte packets
 1  178.170.54.250  0.29 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.166  0.77 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.135  15.46 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 4  80.249.212.76  18.29 ms  *  Netherlands, North Holland, Amsterdam, ams-ix.ne                                                                                t
 5  202.97.50.37  219.59 ms  AS4134  China, Shanghai, ChinaTelecom
 6  202.97.12.185  220.05 ms  AS4134  China, Shanghai, ChinaTelecom
 7  202.97.24.145  232.49 ms  AS4134  China, Shanghai, ChinaTelecom
 8  202.97.24.145  239.08 ms  AS4134  China, Shanghai, ChinaTelecom
 9  61.152.25.9  235.70 ms  AS4812  China, Shanghai, ChinaTelecom
10  *
11  101.227.255.34  217.61 ms  AS4812  China, Shanghai, ChinaTelecom
12  180.153.28.5  217.03 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 32 byte packets
 1  178.170.54.250  0.38 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.166  0.88 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.146  2.69 ms  AS21409  France, Grand Est, Reims, ikoula.com
 4  195.42.145.161  12.34 ms  AS9009  France, Ile-de-France, Paris, equinix.com
 5  223.120.10.145  134.63 ms  AS58453  Germany, Hesse, Frankfurt, ChinaMobile
 6  223.120.10.73  12.44 ms  AS58453  United Kingdom, London, ChinaMobile
 7  *
 8  221.183.55.22  235.63 ms  AS9808  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;9929&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 32 byte packets
 1  178.170.54.250  0.36 ms  http: 403  http: 403
 2  213.246.32.162  0.74 ms  http: 403  http: 403
 3  149.6.104.1  17.29 ms  http: 403  http: 403
 4  149.6.104.1  0.92 ms  http: 403  http: 403
 5  154.54.36.21  3.98 ms  http: 403  http: 403
 6  130.117.50.41  4.46 ms  http: 403  http: 403
 7  154.54.37.30  13.83 ms  http: 403  http: 403
 8  154.54.56.190  13.86 ms  http: 403  http: 403
 9  149.11.84.106  181.47 ms  http: 403  http: 403
10  210.78.28.149  183.12 ms  http: 403  http: 403
11  210.78.28.149  183.30 ms  http: 403  http: 403
12  218.105.2.198  189.28 ms  http: 403  http: 403
13  218.105.2.198  189.25 ms  http: 403  http: 403
14  210.13.75.138  190.44 ms  http: 403  http: 403
15  210.13.64.110  190.42 ms  http: 403  http: 403
16  210.13.66.237  195.65 ms  http: 403  http: 403
17  210.13.66.237  194.98 ms  http: 403  http: 403
18  210.13.66.238  192.18 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 32 byte packets
 1  178.170.54.250  0.37 ms  http: 403  http: 403
 2  213.246.32.162  0.76 ms  http: 403  http: 403
 3  213.246.32.146  13.08 ms  http: 403  http: 403
 4  62.115.40.12  2.63 ms  http: 403  http: 403
 5  62.115.40.12  2.65 ms  http: 403  http: 403
 6  62.115.133.238  9.18 ms  http: 403  http: 403
 7  62.115.135.24  10.29 ms  http: 403  http: 403
 8  62.115.120.239  10.36 ms  http: 403  http: 403
 9  59.43.187.185  201.12 ms  http: 403  http: 403
10  *
11  *
12  59.43.138.45  219.88 ms  http: 403  http: 403
13  58.32.0.1  215.92 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  178.170.54.250  0.28 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.162  0.64 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.135  12.41 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 4  184.104.205.17  18.54 ms  AS6939  France, Ile-de-France, Paris, he.net
 5  184.105.213.173  79.52 ms  AS6939  United States, Virginia, Ashburn, he.net
 6  184.105.213.173  79.42 ms  AS6939  United States, Virginia, Ashburn, he.net
 7  72.52.92.122  135.91 ms  AS6939  United States, California, Los Angeles, he.                                                                                net
 8  72.52.92.122  133.58 ms  AS6939  United States, California, Los Angeles, he.                                                                                net
 9  219.158.96.33  300.30 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
10  219.158.96.33  297.74 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
11  219.158.24.125  300.63 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
12  120.83.0.234  292.12 ms  AS17816  China, Guangdong, Jieyang, ChinaUnicom
13  120.80.175.70  295.75 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
 1  178.170.54.250  0.31 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.162  0.94 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.146  17.63 ms  AS21409  France, Grand Est, Reims, ikoula.com
 4  213.246.32.135  2.64 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 5  80.249.212.76  16.87 ms  *  Netherlands, North Holland, Amsterdam, ams-ix.ne                                                                                t
 6  *
 7  *
 8  202.97.94.149  224.23 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
 9  113.108.209.1  224.53 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 120.196.212.25 (120.196.212.25), 30 hops max, 32 byte packets
 1  178.170.54.250  0.39 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.166  0.82 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.147  12.00 ms  AS21409  France, Grand Est, Reims, ikoula.com
 4  154.54.36.21  4.66 ms  AS174  cogentco.com
 5  130.117.49.78  4.32 ms  AS174  Europe Regions, cogentco.com
 6  130.117.50.134  4.55 ms  AS174  France, Ile-de-France, Paris, cogentco.com
 7  154.54.61.113  16.51 ms  AS174  Spain, Euskadi, Bilbao, cogentco.com
 8  154.54.85.245  83.88 ms  AS174  United States, Virginia, Sterling, cogentco.                                                                                com
 9  154.54.7.158  112.34 ms  AS174  United States, Georgia, Atlanta, cogentco.co                                                                                m
10  154.54.28.130  116.35 ms  AS174  United States, Texas, Houston, cogentco.com
11  154.54.42.77  137.40 ms  AS174  United States, Arizona, Phoenix, cogentco.co                                                                                m
12  154.54.42.65  137.15 ms  AS174  United States, Arizona, Phoenix, cogentco.co                                                                                m
13  154.54.3.70  152.25 ms  AS174  United States, California, Los Angeles, cogen                                                                                tco.com
14  38.19.140.98  151.88 ms  AS174  United States, California, Los Angeles, coge                                                                                ntco.com
15  223.118.10.81  152.06 ms  AS58453  United States, California, Los Angeles, C                                                                                hinaMobile
16  *
17  221.183.52.85  282.63 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
18  221.176.18.109  304.50 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
19  111.24.5.173  297.65 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
20  *
21  111.24.5.30  302.30 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
22  211.136.208.189  304.34 ms  AS56040  China, Guangdong, Shenzhen, ChinaMobile
23  211.139.180.106  309.39 ms  http: 403  http: 403
24  211.139.180.106  308.90 ms  http: 403  http: 403
25  120.196.212.25  308.11 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT CN2 Gaming Broadband (TCP Mode, Max 30 Hop)
============================================================
traceroute to 119.121.0.1 (119.121.0.1), 30 hops max, 32 byte packets
 1  178.170.54.250  0.43 ms  http: 403  http: 403
 2  213.246.32.162  0.95 ms  http: 403  http: 403
 3  213.246.32.146  16.86 ms  http: 403  http: 403
 4  62.115.40.12  12.11 ms  http: 403  http: 403
 5  62.115.40.12  2.51 ms  http: 403  http: 403
 6  62.115.135.220  10.21 ms  http: 403  http: 403
 7  62.115.133.238  9.21 ms  http: 403  http: 403
 8  62.115.122.189  10.39 ms  http: 403  http: 403
 9  80.239.193.226  9.22 ms  http: 403  http: 403
10  59.43.184.125  183.90 ms  http: 403  http: 403
11  59.43.130.117  190.40 ms  http: 403  http: 403
12  59.43.130.101  188.36 ms  http: 403  http: 403
13  183.57.161.14  203.46 ms  http: 403  http: 403
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;依旧拉跨，还不如eppes.&lt;/p&gt;
</content:encoded></item><item><title>Ikoula法国EPPES区域VPS测评</title><link>https://yushum.com/posts/ikoula%E6%B3%95%E5%9B%BDeppes%E5%8C%BA%E5%9F%9Fvps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/ikoula%E6%B3%95%E5%9B%BDeppes%E5%8C%BA%E5%9F%9Fvps%E6%B5%8B%E8%AF%84/</guid><pubDate>Wed, 26 Jan 2022 11:00:27 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://yushum.com/ikoula%E6%96%B0%E5%8A%A0%E5%9D%A1vps%E6%B5%8B%E8%AF%84/&quot;&gt;Ikoula新加坡测评&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-28                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Wed Jan 26 02:11:03 UTC 2022

Basic System Information:
---------------------------------
Processor  : Intel(R) Xeon(R) Gold 6134 CPU @ 3.20GHz
CPU cores  : 1 @ 3199.938 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 467.0 MiB
Swap       : 3.0 GiB
Disk       : 47.9 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 53.17 MB/s   (13.2k) | 352.01 MB/s   (5.5k)
Write      | 53.26 MB/s   (13.3k) | 353.86 MB/s   (5.5k)
Total      | 106.43 MB/s  (26.6k) | 705.87 MB/s  (11.0k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 498.26 MB/s    (973) | 469.04 MB/s    (458)
Write      | 524.73 MB/s   (1.0k) | 500.28 MB/s    (488)
Total      | 1.02 GB/s     (1.9k) | 969.33 MB/s    (946)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 97.6 Mbits/sec  | 301 Mbits/sec
Online.net      | Paris, FR (10G)           | 97.7 Mbits/sec  | 872 Mbits/sec
WorldStream     | The Netherlands (10G)     | 97.2 Mbits/sec  | 408 Mbits/sec
WebHorizon      | Singapore (400M)          | 91.3 Mbits/sec  | 283 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 95.4 Mbits/sec  | 82.7 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 93.0 Mbits/sec  | 64.5 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 93.8 Mbits/sec  | 12.3 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 88.6 Mbits/sec  | 91.6 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 273
Multi Core      | 236
Full Test       | https://browser.geekbench.com/v5/cpu/12394582
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Intro              : https://teddysun.com/444.html
 Version            : v2022-01-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) Gold 6134 CPU @ 3.20GHz
 CPU Cores          : 1
 CPU Frequency      : 3199.938 MHz
 CPU Cache          : 25344 KB
 Total Disk         : 48.5 GB (5.9 GB Used)
 Total Mem          : 467 MB (185 MB Used)
 Total Swap         : 3071 MB (77 MB Used)
 System uptime      : 0 days, 0 hour 17 min
 Load average       : 1.16, 1.16, 0.82
 OS                 : Ubuntu 20.04.2 LTS
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.4.0-73-generic
 TCP CC             : cubic
 Virtualization     : Xen-DomU
 Organization       : AS21409 Ikoula Net SAS
 Location           : Paris / FR
 Region             : Île-de-France
----------------------------------------------------------------------
 I/O Speed(1st run) : 163 MB/s
 I/O Speed(2nd run) : 172 MB/s
 I/O Speed(3rd run) : 183 MB/s
 I/O Speed(average) : 172.7 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    87.01 Mbps        335.32 Mbps         2.94 ms
 Los Angeles, US  69.74 Mbps        19.21 Mbps          140.37 ms
 Dallas, US       82.00 Mbps        37.48 Mbps          112.39 ms
 Montreal, CA     37.03 Mbps        67.56 Mbps          89.91 ms
 Paris, FR        88.61 Mbps        153.99 Mbps         5.05 ms
 Amsterdam, NL    89.16 Mbps        58.62 Mbps          14.97 ms
 Shanghai, CN     79.26 Mbps        40.95 Mbps          299.79 ms
 Nanjing, CN      45.57 Mbps        53.13 Mbps          246.46 ms
 Guangzhou, CN    25.09 Mbps        15.87 Mbps          300.14 ms
 Hongkong, CN     56.11 Mbps        107.11 Mbps         193.49 ms
 Seoul, KR        81.52 Mbps        51.83 Mbps          258.06 ms
 Singapore, SG    52.54 Mbps        33.32 Mbps          309.97 ms
 Tokyo, JP        42.26 Mbps        23.83 Mbps          239.19 ms
----------------------------------------------------------------------
 Finished in        : 7 min 41 sec
 Timestamp          : 2022-01-26 02:32:43
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Wed Jan 26 02:37:08 UTC 2022

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Ikoula Net SAS (109.238.*.*)


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               No
 Netflix:                               Originals Only
 YouTube Premium:                       Yes (Region: FR)
 Amazon Prime Video:                    Yes (Region: FR)
 TVBAnywhere+:                          Yes
 Tiktok Region:                         FR
 iQyi Oversea Region:                   FR
 Viu.com:                               No
 YouTube CDN:                           Paris
 Netflix Preferred CDN:                 Paris
 Steam Currency:                        EUR
=======================================
当前主机不支持IPv6,跳过...

本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/26/1abfd75f77fc7.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/26/5e8f151e74eb9.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/26/7b2931ea1e735.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;CN2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/26/366dbb9677d66.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 32 byte packets
 1  109.238.3.253  0.31 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.142  0.86 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.132  3.29 ms  AS21409  France, Grand Est, Reims, ikoula.com
 4  154.14.26.153  2.77 ms  AS286,AS3257  France, Ile-de-France, Paris, gtt.net
 5  213.200.116.225  12.84 ms  AS3257  Germany, Hesse, Frankfurt, gtt.net
 6  *
 7  *
 8  219.158.111.121  257.32 ms  AS4837  China, Beijing, ChinaUnicom
 9  219.158.9.226  271.31 ms  AS4837  China, Beijing, ChinaUnicom
10  219.158.3.133  256.84 ms  AS4837  China, Beijing, ChinaUnicom
11  *
12  202.96.12.62  260.72 ms  AS4808  China, Beijing, ChinaUnicom
13  124.65.63.234  265.80 ms  AS4808  China, Beijing, ChinaUnicom
14  124.65.194.122  261.49 ms  AS4808  China, Beijing, ChinaUnicom
15  *
16  *
17  123.125.99.1  255.90 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.9 (180.149.128.9), 30 hops max, 32 byte packets
 1  109.238.3.253  0.36 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.142  0.79 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.141  12.08 ms  AS21409  France, Grand Est, Reims, ikoula.com
 4  213.246.32.156  3.43 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 5  80.249.212.76  19.25 ms  *  Netherlands, North Holland, Amsterdam, ams-ix.net
 6  202.97.76.41  263.35 ms  AS4134  China, Beijing, ChinaTelecom
 7  202.97.12.129  265.53 ms  AS4134  China, Beijing, ChinaTelecom
 8  202.97.85.53  282.80 ms  AS4134  China, Beijing, ChinaTelecom
 9  *
10  36.110.247.38  281.84 ms  AS23724  China, Beijing, ChinaTelecom
11  *
12  180.149.128.9  386.70 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
 1  109.238.3.253  0.23 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.142  0.78 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.141  20.28 ms  AS21409  France, Grand Est, Reims, ikoula.com
 4  213.246.32.153  3.19 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 5  213.246.32.156  3.36 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 6  62.115.135.220  140.22 ms  AS1299  telia.com
 7  *
 8  62.115.122.159  135.40 ms  AS1299  United States, Virginia, Ashburn, telia.com
 9  62.115.171.219  153.42 ms  AS1299  United States, California, Los Angeles, telia.com
10  223.120.6.22  148.74 ms  AS58453  United States, California, Los Angeles, ChinaMobile
11  *
12  *
13  *
14  *
15  111.24.2.245  290.71 ms  AS9808  China, Beijing, ChinaMobile
16  *
17  *
18  211.136.67.166  292.83 ms  AS56048  China, Beijing, ChinaMobile
19  211.136.63.66  292.49 ms  AS56048  China, Beijing, ChinaMobile
20  211.136.95.226  293.25 ms  AS56048  China, Beijing, ChinaMobile
21  211.136.95.226  300.60 ms  AS56048  China, Beijing, ChinaMobile
22  *
23  211.136.25.153  294.03 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.8.158 (58.247.8.158), 30 hops max, 32 byte packets
 1  109.238.3.253  0.19 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.128  0.77 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.141  14.29 ms  AS21409  France, Grand Est, Reims, ikoula.com
 4  213.246.32.153  3.33 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 5  184.104.205.17  3.02 ms  AS6939  France, Ile-de-France, Paris, he.net
 6  184.104.205.17  3.14 ms  AS6939  France, Ile-de-France, Paris, he.net
 7  184.105.213.173  80.00 ms  AS6939  United States, Virginia, Ashburn, he.net
 8  184.105.80.202  134.63 ms  AS6939  United States, California, Los Angeles, he.net
 9  72.52.92.122  147.65 ms  AS6939  United States, California, Los Angeles, he.net
10  72.52.93.38  291.29 ms  AS6939  United States, California, Los Angeles, he.net
11  219.158.111.137  298.30 ms  AS4837  China, Shanghai, ChinaUnicom
12  219.158.111.137  295.98 ms  AS4837  China, Shanghai, ChinaUnicom
13  219.158.113.142  285.54 ms  AS4837  China, Shanghai, ChinaUnicom
14  *
15  139.226.228.46  293.37 ms  AS17621  China, Shanghai, ChinaUnicom
16  58.247.221.178  284.91 ms  AS17621  China, Shanghai, ChinaUnicom
17  58.247.8.153  305.16 ms  AS17621  China, Shanghai, ChinaUnicom
18  58.247.8.153  350.22 ms  AS17621  China, Shanghai, ChinaUnicom
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.5 (180.153.28.5), 30 hops max, 32 byte packets
 1  109.238.3.253  0.26 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.142  0.70 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.141  15.00 ms  AS21409  France, Grand Est, Reims, ikoula.com
 4  213.246.32.153  3.13 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 5  213.246.32.156  3.26 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 6  80.249.212.76  22.53 ms  *  Netherlands, North Holland, Amsterdam, ams-ix.net
 7  202.97.33.125  266.30 ms  AS4134  China, Shanghai, ChinaTelecom
 8  *
 9  *
10  101.95.207.246  269.79 ms  AS4812  China, Shanghai, ChinaTelecom
11  124.74.232.62  277.79 ms  AS4811  China, Shanghai, ChinaTelecom
12  *
13  101.227.255.46  276.21 ms  AS4812  China, Shanghai, ChinaTelecom
14  180.153.28.5  277.36 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 32 byte packets
 1  109.238.3.253  0.25 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.128  0.78 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.141  14.25 ms  AS21409  France, Grand Est, Reims, ikoula.com
 4  213.246.32.156  3.39 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 5  195.42.145.161  13.12 ms  AS9009  France, Ile-de-France, Paris, equinix.com
 6  195.42.145.161  13.20 ms  AS9009  France, Ile-de-France, Paris, equinix.com
 7  *
 8  *
 9  221.183.55.22  238.74 ms  AS9808  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;9929&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 32 byte packets
 1  109.238.3.253  0.33 ms  http: 403  http: 403
 2  213.246.32.128  0.77 ms  http: 403  http: 403
 3  213.246.32.141  12.47 ms  http: 403  http: 403
 4  213.246.32.141  1.39 ms  http: 403  http: 403
 5  154.54.36.21  4.83 ms  http: 403  http: 403
 6  130.117.50.41  4.70 ms  http: 403  http: 403
 7  154.54.58.237  99.67 ms  http: 403  http: 403
 8  154.54.58.237  14.48 ms  http: 403  http: 403
 9  154.25.12.77  15.09 ms  http: 403  http: 403
10  154.25.12.77  14.14 ms  http: 403  http: 403
11  210.78.28.149  145.88 ms  http: 403  http: 403
12  *
13  218.105.2.198  168.15 ms  http: 403  http: 403
14  210.13.116.86  167.33 ms  http: 403  http: 403
15  210.13.64.109  170.58 ms  http: 403  http: 403
16  210.13.64.109  169.86 ms  http: 403  http: 403
17  210.13.66.237  170.77 ms  http: 403  http: 403
18  210.13.66.237  170.03 ms  http: 403  http: 403
19  210.13.66.238  172.16 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 32 byte packets
 1  109.238.3.253  0.20 ms  http: 403  http: 403
 2  213.246.32.142  0.73 ms  http: 403  http: 403
 3  213.246.32.153  13.05 ms  http: 403  http: 403
 4  213.246.32.153  3.26 ms  http: 403  http: 403
 5  62.115.40.12  3.19 ms  http: 403  http: 403
 6  62.115.40.12  3.12 ms  http: 403  http: 403
 7  62.115.135.24  10.78 ms  http: 403  http: 403
 8  62.115.120.239  10.69 ms  http: 403  http: 403
 9  80.239.193.226  10.60 ms  http: 403  http: 403
10  59.43.246.205  214.98 ms  http: 403  http: 403
11  59.43.246.205  215.43 ms  http: 403  http: 403
12  59.43.130.209  204.35 ms  http: 403  http: 403
13  61.152.24.182  251.11 ms  http: 403  http: 403
14  61.152.24.182  251.61 ms  http: 403  http: 403
15  58.32.0.1  216.93 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  109.238.3.253  0.24 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.128  0.92 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.153  10.58 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 4  213.246.32.156  3.28 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 5  213.246.32.135  3.41 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 6  184.104.205.17  19.27 ms  AS6939  France, Ile-de-France, Paris, he.net
 7  184.105.213.173  79.99 ms  AS6939  United States, Virginia, Ashburn, he.net
 8  72.52.92.122  132.44 ms  AS6939  United States, California, Los Angeles, he.net
 9  72.52.93.38  292.73 ms  AS6939  United States, California, Los Angeles, he.net
10  219.158.96.233  297.58 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
11  219.158.96.233  295.21 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
12  219.158.103.217  296.31 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
13  112.91.0.246  308.27 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
14  120.80.79.194  301.76 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
 1  109.238.3.253  0.20 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.142  0.81 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.132  12.06 ms  AS21409  France, Grand Est, Reims, ikoula.com
 4  213.246.32.153  3.20 ms  AS21409  France, Ile-de-France, Paris, ikoula.com
 5  80.249.212.76  18.07 ms  *  Netherlands, North Holland, Amsterdam, ams-ix.net
 6  202.97.13.25  252.68 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
 7  *
 8  202.97.94.105  253.99 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
 9  202.97.82.61  254.91 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
10  113.108.209.1  257.93 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 120.196.212.25 (120.196.212.25), 30 hops max, 32 byte packets
 1  109.238.3.253  0.27 ms  AS21409  France, Grand Est, Reims, ikoula.com
 2  213.246.32.142  0.85 ms  AS21409  France, Grand Est, Reims, ikoula.com
 3  213.246.32.133  15.18 ms  AS21409  France, Grand Est, Reims, ikoula.com
 4  213.246.32.141  1.25 ms  AS21409  France, Grand Est, Reims, ikoula.com
 5  154.54.39.77  4.79 ms  AS174  cogentco.com
 6  154.54.36.21  4.43 ms  AS174  cogentco.com
 7  130.117.49.41  4.64 ms  AS174  Europe Regions, cogentco.com
 8  154.54.85.245  84.02 ms  AS174  United States, Virginia, Sterling, cogentco.com
 9  154.54.7.158  100.25 ms  AS174  United States, Georgia, Atlanta, cogentco.com
10  154.54.7.158  100.40 ms  AS174  United States, Georgia, Atlanta, cogentco.com
11  154.54.29.222  129.81 ms  AS174  cogentco.com
12  154.54.42.77  148.84 ms  AS174  United States, Arizona, Phoenix, cogentco.com
13  154.54.42.77  141.08 ms  AS174  United States, Arizona, Phoenix, cogentco.com
14  154.54.27.118  152.74 ms  http: 403  http: 403
15  154.54.3.70  152.62 ms  http: 403  http: 403
16  223.118.10.85  154.09 ms  http: 403  http: 403
17  223.118.10.81  156.04 ms  http: 403  http: 403
18  *
19  221.176.18.109  305.33 ms  http: 403  http: 403
20  *
21  111.24.5.22  308.87 ms  http: 403  http: 403
22  211.136.196.234  299.12 ms  http: 403  http: 403
23  211.136.196.214  308.22 ms  http: 403  http: 403
24  211.139.180.106  379.09 ms  http: 403  http: 403
25  211.136.203.22  302.71 ms  http: 403  http: 403
26  *
27  120.196.212.25  310.01 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT CN2 Gaming Broadband (TCP Mode, Max 30 Hop)
============================================================
traceroute to 119.121.0.1 (119.121.0.1), 30 hops max, 32 byte packets
 1  109.238.3.253  0.24 ms  http: 403  http: 403
 2  213.246.32.142  0.74 ms  http: 403  http: 403
 3  213.246.32.153  12.73 ms  http: 403  http: 403
 4  213.246.32.156  3.44 ms  http: 403  http: 403
 5  213.246.32.135  3.37 ms  http: 403  http: 403
 6  *
 7  62.115.135.24  11.00 ms  http: 403  http: 403
 8  62.115.122.189  10.96 ms  http: 403  http: 403
 9  80.239.193.226  10.93 ms  http: 403  http: 403
10  80.239.193.226  10.24 ms  http: 403  http: 403
11  59.43.184.125  187.19 ms  http: 403  http: 403
12  *
13  59.43.130.101  186.57 ms  http: 403  http: 403
14  59.43.70.6  243.26 ms  http: 403  http: 403
15  119.121.0.1  218.73 ms  http: 403  http: 403
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;这性能实在是太拉跨了，探针专用机。&lt;/p&gt;
</content:encoded></item><item><title>Ikoula新加坡VPS测评</title><link>https://yushum.com/posts/ikoula%E6%96%B0%E5%8A%A0%E5%9D%A1vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/ikoula%E6%96%B0%E5%8A%A0%E5%9D%A1vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Mon, 24 Jan 2022 20:39:35 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;以前新用户送的100欧一直没用，今天开个新加坡测试一下，说不定以后就用的上了。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-28                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Mon 24 Jan 2022 11:56:27 AM CET

Basic System Information:
---------------------------------
Processor  : Intel(R) Xeon(R) CPU           X5650  @ 2.67GHz
CPU cores  : 1 @ 2659.930 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 477.0 MiB
Swap       : 952.0 MiB
Disk       : 8.8 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 26.05 MB/s    (6.5k) | 189.46 MB/s   (2.9k)
Write      | 26.08 MB/s    (6.5k) | 190.45 MB/s   (2.9k)
Total      | 52.13 MB/s   (13.0k) | 379.91 MB/s   (5.9k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 232.30 MB/s    (453) | 247.20 MB/s    (241)
Write      | 244.64 MB/s    (477) | 263.67 MB/s    (257)
Total      | 476.94 MB/s    (930) | 510.87 MB/s    (498)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 33.2 Mbits/sec  | 13.6 Mbits/sec
Online.net      | Paris, FR (10G)           | 33.1 Mbits/sec  | 16.3 Mbits/sec
WorldStream     | The Netherlands (10G)     | 38.4 Mbits/sec  | 8.43 Mbits/sec
WebHorizon      | Singapore (400M)          | 28.5 Mbits/sec  | busy
Clouvider       | NYC, NY, US (10G)         | 40.7 Mbits/sec  | 13.9 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 34.1 Mbits/sec  | 16.7 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 39.8 Mbits/sec  | 15.0 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | busy            | 5.71 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 153
Multi Core      | 145
Full Test       | https://browser.geekbench.com/v5/cpu/12363421
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Intro              : https://teddysun.com/444.html
 Version            : v2022-01-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) CPU           X5650  @ 2.67GHz
 CPU Cores          : 1
 CPU Frequency      : 2659.930 MHz
 CPU Cache          : 12288 KB
 Total Disk         : 8.9 GB (3.8 GB Used)
 Total Mem          : 476 MB (66 MB Used)
 Total Swap         : 951 MB (11 MB Used)
 System uptime      : 0 days, 2 hour 15 min
 Load average       : 0.00, 0.00, 0.00
 OS                 : Debian GNU/Linux 10
 Arch               : x86_64 (64 Bit)
 Kernel             : 4.19.0-16-amd64
 TCP CC             : bbr
 Virtualization     : Xen-DomU
 Organization       : AS3758 SingNet
 Location           : Singapore / SG
 Region             : Singapore
----------------------------------------------------------------------
 I/O Speed(1st run) : 196 MB/s
 I/O Speed(2nd run) : 199 MB/s
 I/O Speed(3rd run) : 198 MB/s
 I/O Speed(average) : 197.7 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    10.71 Mbps        26.38 Mbps          1.86 ms
 Los Angeles, US  25.87 Mbps        3.44 Mbps           177.73 ms
 Dallas, US       32.88 Mbps        2.15 Mbps           207.29 ms
 Montreal, CA     22.11 Mbps        5.00 Mbps           269.80 ms
 Paris, FR        22.05 Mbps        4.72 Mbps           247.13 ms
 Amsterdam, NL    9.83 Mbps         1.37 Mbps           321.05 ms
 Shanghai, CN     31.43 Mbps        13.41 Mbps          70.01 ms
 Nanjing, CN      20.21 Mbps        3.27 Mbps           310.49 ms
 Guangzhou, CN    1.49 Mbps         0.78 Mbps           209.81 ms
 Hongkong, CN     22.51 Mbps        44.96 Mbps          43.89 ms
 Seoul, KR        18.97 Mbps        3.84 Mbps           71.40 ms
 Singapore, SG    35.41 Mbps        27.38 Mbps          10.93 ms
 Tokyo, JP        30.02 Mbps        5.67 Mbps           85.81 ms
----------------------------------------------------------------------
 Finished in        : 7 min 50 sec
 Timestamp          : 2022-01-24 13:15:32
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Mon 24 Jan 2022 01:23:08 PM CET

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Singtel Business (118.201.*.*)


============[ Multination ]============
 Dazn:                                  Yes (Region: SG)
 HotStar:                               Yes (Region: SG)
 Disney+:                               Yes (Region: SG)
 Netflix:                               Yes (Region: SG)
 YouTube Premium:                       Yes (Region: SG)
 Amazon Prime Video:                    Yes (Region: SG)
 TVBAnywhere+:                          Yes
 Tiktok Region:                         SG
 iQyi Oversea Region:                   SG
 Viu.com:                               Yes (Region: SG)
 YouTube CDN:                           Singapore
 Netflix Preferred CDN:                 Singapore
 Steam Currency:                        SGD
=======================================
当前主机不支持IPv6,跳过...

本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/24/49f73a0156ff4.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/24/5b2f8a7541982.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/24/5a67b4e20c641.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 32 byte packets
 1  118.201.93.1  2.61 ms  AS3758  Singapore, singtel.com
 2  118.201.189.241  1.11 ms  AS3758  Singapore, singtel.com
 3  118.201.208.166  1.59 ms  AS3758  Singapore, singtel.com
 4  118.201.208.165  2.36 ms  AS3758  Singapore, singtel.com
 5  165.21.138.109  2.07 ms  AS3758  Singapore, singtel.com
 6  165.21.138.90  3.15 ms  AS3758  Singapore, singtel.com
 7  203.208.177.217  8.13 ms  AS7473  Singapore, singtel.com
 8  203.208.166.233  9.70 ms  AS7473  singtel.com
 9  203.208.152.2  6.29 ms  AS7473  Singapore, singtel.com
10  203.208.158.209  2.35 ms  AS7473  Singapore, singtel.com
11  203.208.171.81  63.33 ms  AS7473  China, Guangdong, Guangzhou, singtel.com
12  219.158.111.121  80.60 ms  AS4837  China, Beijing, ChinaUnicom
13  219.158.3.177  82.05 ms  AS4837  China, Beijing, ChinaUnicom
14  *
15  *
16  219.232.11.210  92.27 ms  AS4808  China, Beijing, ChinaUnicom
17  124.65.194.122  95.61 ms  AS4808  China, Beijing, ChinaUnicom
18  61.135.113.154  80.35 ms  AS4808  China, Beijing, ChinaUnicom
19  *
20  123.125.99.1  81.13 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.9 (180.149.128.9), 30 hops max, 32 byte packets
 1  118.201.93.1  3.19 ms  AS3758  Singapore, singtel.com
 2  118.201.189.241  37.43 ms  AS3758  Singapore, singtel.com
 3  118.201.208.166  1.89 ms  AS3758  Singapore, singtel.com
 4  118.201.208.165  20.19 ms  AS3758  Singapore, singtel.com
 5  165.21.138.109  1.40 ms  AS3758  Singapore, singtel.com
 6  165.21.138.94  1.63 ms  AS3758  Singapore, singtel.com
 7  203.208.177.217  2.31 ms  AS7473  Singapore, singtel.com
 8  203.208.166.233  11.40 ms  AS7473  singtel.com
 9  203.208.171.109  4.93 ms  AS7473  Singapore, singtel.com
10  64.125.35.193  196.64 ms  AS6461  United States, California, Palo Alto, zayo.com
11  64.125.31.16  174.96 ms  AS6461  United States, California, San Jose, zayo.com
12  64.125.31.16  185.65 ms  AS6461  United States, California, San Jose, zayo.com
13  64.125.30.233  176.46 ms  AS6461  United States, California, San Jose, zayo.com
14  64.125.31.15  200.74 ms  AS6461  United States, California, San Jose, zayo.com
15  64.125.14.78  192.70 ms  AS6461  United States, California, San Jose, zayo.com
16  202.97.85.41  362.68 ms  AS4134  China, Beijing, ChinaTelecom
17  202.97.12.137  378.88 ms  AS4134  China, Beijing, ChinaTelecom
18  *
19  36.110.246.222  369.32 ms  AS23724  China, Beijing, ChinaTelecom
20  180.149.128.9  365.07 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
 1  118.201.93.1  2.43 ms  AS3758  Singapore, singtel.com
 2  118.201.189.241  23.02 ms  AS3758  Singapore, singtel.com
 3  118.201.208.166  1.15 ms  AS3758  Singapore, singtel.com
 4  118.201.208.165  1.41 ms  AS3758  Singapore, singtel.com
 5  165.21.138.109  1.68 ms  AS3758  Singapore, singtel.com
 6  165.21.138.90  2.30 ms  AS3758  Singapore, singtel.com
 7  203.208.177.217  3.52 ms  AS7473  Singapore, singtel.com
 8  203.208.183.134  2.11 ms  AS7473  Singapore, singtel.com
 9  203.208.172.82  8.57 ms  AS7473  Singapore, singtel.com
10  223.121.2.53  125.64 ms  AS58453  China, ChinaMobile
11  223.120.2.117  127.38 ms  AS58453  China, Hong Kong, ChinaMobile
12  223.120.2.117  124.67 ms  AS58453  China, Hong Kong, ChinaMobile
13  *
14  *
15  *
16  221.176.16.213  168.43 ms  AS9808  China, Beijing, ChinaMobile
17  *
18  111.24.2.101  169.07 ms  AS9808  China, Beijing, ChinaMobile
19  211.136.67.106  168.86 ms  AS56048  China, Beijing, ChinaMobile
20  211.136.63.66  170.81 ms  AS56048  China, Beijing, ChinaMobile
21  *
22  211.136.95.226  178.84 ms  AS56048  China, Beijing, ChinaMobile
23  211.136.95.226  183.33 ms  AS56048  China, Beijing, ChinaMobile
24  211.136.25.153  179.35 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.8.158 (58.247.8.158), 30 hops max, 32 byte packets
 1  118.201.93.1  2.72 ms  AS3758  Singapore, singtel.com
 2  118.201.189.241  11.77 ms  AS3758  Singapore, singtel.com
 3  118.201.208.166  1.94 ms  AS3758  Singapore, singtel.com
 4  118.201.208.165  1.62 ms  AS3758  Singapore, singtel.com
 5  165.21.138.105  1.28 ms  AS3758  Singapore, singtel.com
 6  165.21.138.94  1.50 ms  AS3758  Singapore, singtel.com
 7  203.208.177.217  2.66 ms  AS7473  Singapore, singtel.com
 8  203.208.166.233  8.15 ms  AS7473  singtel.com
 9  203.208.153.109  5.60 ms  AS7473  Singapore, singtel.com
10  *
11  203.208.171.81  119.02 ms  AS7473  China, Guangdong, Guangzhou, singtel.com
12  219.158.111.137  74.34 ms  AS4837  China, Shanghai, ChinaUnicom
13  219.158.113.142  66.46 ms  AS4837  China, Shanghai, ChinaUnicom
14  *
15  *
16  139.226.228.46  71.44 ms  AS17621  China, Shanghai, ChinaUnicom
17  139.226.225.22  72.33 ms  AS17621  China, Shanghai, ChinaUnicom
18  58.247.8.153  96.68 ms  AS17621  China, Shanghai, ChinaUnicom
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.5 (180.153.28.5), 30 hops max, 32 byte packets
 1  118.201.93.1  2.42 ms  AS3758  Singapore, singtel.com
 2  118.201.189.241  0.99 ms  AS3758  Singapore, singtel.com
 3  118.201.208.166  3.67 ms  AS3758  Singapore, singtel.com
 4  118.201.208.165  3.28 ms  AS3758  Singapore, singtel.com
 5  165.21.138.109  5.08 ms  AS3758  Singapore, singtel.com
 6  165.21.138.90  14.56 ms  AS3758  Singapore, singtel.com
 7  202.83.208.125  45.22 ms  AS17888  China, Hong Kong, singtel.com
 8  202.97.62.33  201.41 ms  AS4134  China, Hong Kong, ChinaTelecom
 9  *
10  202.97.12.181  194.50 ms  AS4134  China, Shanghai, ChinaTelecom
11  *
12  61.152.24.77  220.92 ms  AS4812  China, Shanghai, ChinaTelecom
13  *
14  101.95.225.206  234.18 ms  AS4811  China, Shanghai, ChinaTelecom
15  101.227.255.46  202.23 ms  AS4812  China, Shanghai, ChinaTelecom
16  *
17  180.153.28.5  214.93 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 32 byte packets
 1  118.201.93.1  2.70 ms  AS3758  Singapore, singtel.com
 2  118.201.189.241  1.42 ms  AS3758  Singapore, singtel.com
 3  118.201.208.166  7.56 ms  AS3758  Singapore, singtel.com
 4  118.201.208.165  6.44 ms  AS3758  Singapore, singtel.com
 5  165.21.138.109  1.80 ms  AS3758  Singapore, singtel.com
 6  165.21.138.90  6.39 ms  AS3758  Singapore, singtel.com
 7  203.208.177.217  4.59 ms  AS7473  Singapore, singtel.com
 8  203.208.183.134  2.24 ms  AS7473  Singapore, singtel.com
 9  203.208.183.250  3.11 ms  AS7473  Singapore, singtel.com
10  203.208.171.242  42.56 ms  AS7473  China, Hong Kong, singtel.com
11  203.208.152.242  44.27 ms  AS7473  China, Hong Kong, singtel.com
12  203.208.152.190  52.14 ms  AS7473  China, Hong Kong, singtel.com
13  203.208.152.190  45.52 ms  AS7473  China, Hong Kong, singtel.com
14  223.120.2.41  38.07 ms  AS58453  China, Hong Kong, ChinaMobile
15  *
16  *
17  *
18  221.183.55.22  80.07 ms  AS9808  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;9929&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 32 byte packets
 1  118.201.93.1  2.65 ms  AS3758  Singapore, singtel.com
 2  118.201.189.241  25.25 ms  AS3758  Singapore, singtel.com
 3  118.201.208.166  1.65 ms  AS3758  Singapore, singtel.com
 4  118.201.208.165  2.03 ms  AS3758  Singapore, singtel.com
 5  165.21.138.109  2.46 ms  AS3758  Singapore, singtel.com
 6  165.21.138.94  1.47 ms  AS3758  Singapore, singtel.com
 7  203.208.177.217  5.13 ms  AS7473  Singapore, singtel.com
 8  203.208.183.134  3.92 ms  AS7473  Singapore, singtel.com
 9  203.208.182.250  8.88 ms  AS7473  Singapore, singtel.com
10  203.208.152.81  4.73 ms  AS7473  Singapore, singtel.com
11  203.208.152.81  3.26 ms  AS7473  Singapore, singtel.com
12  218.105.2.201  57.81 ms  AS9929  China, Shanghai, ChinaUnicom
13  218.105.2.210  57.78 ms  AS9929  China, Shanghai, ChinaUnicom
14  210.13.112.254  62.80 ms  AS9929  China, Shanghai, ChinaUnicom
15  210.13.116.82  68.66 ms  AS9929  China, Shanghai, ChinaUnicom
16  210.13.64.110  60.22 ms  AS9929  China, Shanghai, ChinaUnicom
17  210.13.64.110  58.74 ms  AS9929  China, Shanghai, ChinaUnicom
18  210.13.66.238  66.72 ms  AS9929  China, Shanghai, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 32 byte packets
 1  118.201.93.1  2.57 ms  AS3758  Singapore, singtel.com
 2  118.201.189.241  3.83 ms  AS3758  Singapore, singtel.com
 3  118.201.208.166  1.73 ms  AS3758  Singapore, singtel.com
 4  118.201.208.165  1.23 ms  AS3758  Singapore, singtel.com
 5  165.21.138.105  1.42 ms  AS3758  Singapore, singtel.com
 6  165.21.138.94  1.65 ms  AS3758  Singapore, singtel.com
 7  203.208.177.217  2.16 ms  AS7473  Singapore, singtel.com
 8  203.208.166.233  2.70 ms  AS7473  singtel.com
 9  203.208.153.109  2.28 ms  AS7473  Singapore, singtel.com
10  203.208.131.50  2.78 ms  AS7473  Singapore, singtel.com
11  *
12  *
13  *
14  101.95.88.206  199.07 ms  AS4812  China, Shanghai, ChinaTelecom
15  101.95.40.90  199.35 ms  AS4812  China, Shanghai, ChinaTelecom
16  58.32.0.1  67.50 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  118.201.93.1  2.56 ms  AS3758  Singapore, singtel.com
 2  118.201.189.241  1.80 ms  AS3758  Singapore, singtel.com
 3  118.201.208.166  1.04 ms  AS3758  Singapore, singtel.com
 4  118.201.208.165  6.29 ms  AS3758  Singapore, singtel.com
 5  165.21.138.105  4.86 ms  AS3758  Singapore, singtel.com
 6  165.21.138.94  1.89 ms  AS3758  Singapore, singtel.com
 7  203.208.177.217  11.57 ms  AS7473  Singapore, singtel.com
 8  203.208.166.233  2.04 ms  AS7473  singtel.com
 9  203.208.152.106  10.96 ms  AS7473  Singapore, singtel.com
10  203.208.171.61  43.69 ms  AS7473  China, Guangdong, Guangzhou, singtel.com
11  219.158.97.26  47.06 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
12  219.158.24.125  49.61 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
13  157.18.0.26  58.76 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
14  120.80.175.62  45.15 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
 1  118.201.93.1  2.61 ms  AS3758  Singapore, singtel.com
 2  118.201.189.241  20.07 ms  AS3758  Singapore, singtel.com
 3  118.201.208.166  1.08 ms  AS3758  Singapore, singtel.com
 4  118.201.208.165  1.31 ms  AS3758  Singapore, singtel.com
 5  165.21.138.109  5.91 ms  AS3758  Singapore, singtel.com
 6  165.21.138.90  1.56 ms  AS3758  Singapore, singtel.com
 7  203.208.177.217  1.92 ms  AS7473  Singapore, singtel.com
 8  203.208.166.233  4.81 ms  AS7473  singtel.com
 9  203.208.171.109  2.83 ms  AS7473  Singapore, singtel.com
10  203.208.182.250  4.36 ms  AS7473  Singapore, singtel.com
11  203.208.182.253  7.70 ms  AS7473  Singapore, singtel.com
12  202.97.22.129  200.61 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
13  183.91.56.141  167.10 ms  AS4134  China, Hong Kong, ChinaTelecom
14  202.97.89.201  213.53 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
15  202.97.94.121  200.97 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
16  113.108.209.1  209.19 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 120.196.212.25 (120.196.212.25), 30 hops max, 32 byte packets
 1  118.201.93.1  2.61 ms  AS3758  Singapore, singtel.com
 2  118.201.189.241  1.35 ms  AS3758  Singapore, singtel.com
 3  118.201.208.166  1.89 ms  AS3758  Singapore, singtel.com
 4  118.201.208.165  1.55 ms  AS3758  Singapore, singtel.com
 5  165.21.138.105  1.87 ms  AS3758  Singapore, singtel.com
 6  165.21.138.90  1.47 ms  AS3758  Singapore, singtel.com
 7  203.208.177.217  2.47 ms  AS7473  Singapore, singtel.com
 8  203.208.166.233  3.87 ms  AS7473  singtel.com
 9  203.208.171.109  2.74 ms  AS7473  Singapore, singtel.com
10  223.121.2.53  128.96 ms  AS58453  China, ChinaMobile
11  223.121.2.53  133.14 ms  AS58453  China, ChinaMobile
12  *
13  221.183.55.94  140.82 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
14  221.183.55.90  144.94 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
15  221.176.20.21  139.95 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
16  111.24.4.249  143.30 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
17  111.24.5.169  146.18 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
18  111.24.5.218  153.51 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
19  211.136.196.234  149.39 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
20  211.136.203.6  145.52 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
21  *
22  120.196.212.25  132.78 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;CN2&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT CN2 Gaming Broadband (TCP Mode, Max 30 Hop)
============================================================
traceroute to 119.121.0.1 (119.121.0.1), 30 hops max, 32 byte packets
 1  118.201.93.1  2.76 ms  AS3758  Singapore, singtel.com
 2  118.201.189.241  13.94 ms  AS3758  Singapore, singtel.com
 3  118.201.208.166  2.35 ms  AS3758  Singapore, singtel.com
 4  118.201.208.165  2.17 ms  AS3758  Singapore, singtel.com
 5  165.21.138.105  3.02 ms  AS3758  Singapore, singtel.com
 6  165.21.138.94  1.59 ms  AS3758  Singapore, singtel.com
 7  203.208.177.217  2.07 ms  AS7473  Singapore, singtel.com
 8  203.208.166.233  3.42 ms  AS7473  singtel.com
 9  203.208.183.250  4.34 ms  AS7473  Singapore, singtel.com
10  203.208.158.94  37.28 ms  AS7473  China, Hong Kong, singtel.com
11  218.188.104.54  37.54 ms  AS9304  China, Hong Kong, hgc.com.hk
12  *
13  *
14  *
15  *
16  119.121.0.1  90.17 ms  AS4809  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;机器性能很拉跨，网络也不怎么样，唯一的优点是IP很干净，各种流媒体都解锁。&lt;/p&gt;
</content:encoded></item><item><title>手动启用注册表模式</title><link>https://yushum.com/posts/%E6%89%8B%E5%8A%A8%E5%90%AF%E7%94%A8%E6%B3%A8%E5%86%8C%E8%A1%A8%E6%A8%A1%E5%BC%8F/</link><guid isPermaLink="true">https://yushum.com/posts/%E6%89%8B%E5%8A%A8%E5%90%AF%E7%94%A8%E6%B3%A8%E5%86%8C%E8%A1%A8%E6%A8%A1%E5%BC%8F/</guid><pubDate>Sun, 16 Jan 2022 23:23:30 GMT</pubDate><content:encoded>&lt;h2&gt;介绍&lt;/h2&gt;
&lt;p&gt;从2021.1-RC1版本开始，注册表模式被从向导中移除，以防止被没有经验的用户错误地应用，然后阻止系统启动。如果你在排除故障方面非常有经验，或者你的系统在注册表模式下与MacType完美地工作（我们称之为 &quot;防错系统&quot;😄），那么这个指南是为你准备的。&lt;/p&gt;
&lt;h2&gt;步骤&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;首先，在向导中把mactype设置为手动模式。这可以确保与加载模式没有冲突，mactype不会被加载两次。以前，当你选择注册表模式时，它是自动完成的，现在必须手动完成。&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;系统环境准备&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;按Win+Pause键，打开系统属性对话框。&lt;/li&gt;
&lt;li&gt;在左边的窗格中选择 &quot;高级系统设置&quot;。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src=&quot;https://github.com/snowie2000/mactype-wiki-assets/raw/master/step1.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;点击 &quot;环境变量&quot;&lt;/li&gt;
&lt;li&gt;编辑系统变量组中的变量 &quot;Path&quot;（不区分大小写），添加一个新行，并在其中填入你安装的Mactype的绝对文件夹路径。例如 &quot;C:\Program Files\Mactype&quot;。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src=&quot;https://github.com/snowie2000/mactype-wiki-assets/raw/master/step2.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;一路点击 &quot;确定 &quot;来保存你的修改。你可以通过打开 &quot;运行 &quot;对话框并输入 &quot;macwiz.exe &quot;来验证你的操作是否正确。mactype向导窗口应该弹出，而不是错误信息告诉你Windows找不到它。&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;捷径方式&lt;/h3&gt;
&lt;p&gt;如果你的系统非常干净，没有安装appinit dlls，这里有一个捷径给你。将以下文本保存为.reg文件，然后双击导入。X64版本：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows]
&quot;AppInit_DLLs&quot;=&quot;MacType64.dll&quot;
&quot;LoadAppInit_DLLs&quot;=dword:00000001
&quot;RequireSignedAppInit_DLLs&quot;=dword:00000000


[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows NT\CurrentVersion\Windows]
&quot;AppInit_DLLs&quot;=&quot;MacType.dll&quot;
&quot;LoadAppInit_DLLs&quot;=dword:00000001
&quot;RequireSignedAppInit_DLLs&quot;=dword:00000000
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;X86版本&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows]
&quot;AppInit_DLLs&quot;=&quot;MacType.dll&quot;
&quot;LoadAppInit_DLLs&quot;=dword:00000001
&quot;RequireSignedAppInit_DLLs&quot;=dword:00000000
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;重新启动，就完成了。&lt;/p&gt;
&lt;h3&gt;手动方式&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;按Win+R并输入&lt;code&gt;regedit&lt;/code&gt;来启动注册表编辑器。&lt;/li&gt;
&lt;li&gt;导航到&lt;code&gt;HKEY_LOCAL_MACHINE&lt;/code&gt;分支下的&lt;code&gt;\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;双击一个键来改变其值。&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;ul&gt;
&lt;li&gt;将&lt;code&gt;LoadAppInit_DLLs&lt;/code&gt;改为1&lt;/li&gt;
&lt;li&gt;将&lt;code&gt;RequireSignedAppInit_DLLs&lt;/code&gt;改为0，如果它不存在，已经很好了。&lt;/li&gt;
&lt;li&gt;将&lt;code&gt;AppInit_DLLs&lt;/code&gt;改为&lt;code&gt;MacType64.dll&lt;/code&gt;，如果它有任何预设的值，将 &quot;mactype64.dll &quot;附加到它上面，用逗号作为分隔符。所以修改后，&lt;code&gt;AppInit_DLLs&lt;/code&gt;应该是&lt;code&gt;Mactype64.dll&lt;/code&gt;或者&lt;code&gt;some.dll&lt;/code&gt;、&lt;code&gt;some2.dll&lt;/code&gt;、&lt;code&gt;mactype64.dll&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;
&lt;ol&gt;
&lt;li&gt;导航到同一分支下的 &lt;code&gt;\SOFTWARE\WOW6432Node\Microsoft\Windows NT\CurrentVersion\Windows&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;做与第三步相同的事情，但这一次，在&lt;code&gt;AppInit_DLLs&lt;/code&gt;键中使用&lt;code&gt;MacType.dll&lt;/code&gt;而不是&lt;code&gt;MacType64.dll&lt;/code&gt;。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;这应该是最终结果的样子:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://github.com/snowie2000/mactype-wiki-assets/raw/master/regedit.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;重新启动，它又完成了~&lt;/p&gt;
&lt;h2&gt;移除&lt;/h2&gt;
&lt;p&gt;你可以通过向导禁用注册模式。&lt;/p&gt;
&lt;p&gt;——翻译自&lt;a href=&quot;https://github.com/snowie2000/mactype/wiki/Enable-registry-mode-manually&quot;&gt;Enable registry mode manually&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Oracle首尔免费AMD实例测评</title><link>https://yushum.com/posts/oracle%E9%A6%96%E5%B0%94%E5%85%8D%E8%B4%B9amd%E5%AE%9E%E4%BE%8B%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/oracle%E9%A6%96%E5%B0%94%E5%85%8D%E8%B4%B9amd%E5%AE%9E%E4%BE%8B%E6%B5%8B%E8%AF%84/</guid><pubDate>Sat, 15 Jan 2022 22:05:28 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;上次测过了东京的amd实例（&lt;a href=&quot;https://yushum.com/oracle%E4%B8%9C%E4%BA%AC%E5%85%8D%E8%B4%B9amd%E5%AE%9E%E4%BE%8B%E6%B5%8B%E8%AF%84/&quot;&gt;点击查看&lt;/a&gt;），这次测一下首尔的。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-28                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Sat Jan 15 13:20:43 UTC 2022

Basic System Information:
---------------------------------
Processor  : AMD EPYC 7551 32-Core Processor
CPU cores  : 2 @ 1996.246 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 972.1 MiB
Swap       : 0.0 KiB
Disk       : 48.4 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 19.56 MB/s    (4.8k) | 47.26 MB/s     (738)
Write      | 19.55 MB/s    (4.8k) | 47.50 MB/s     (742)
Total      | 39.11 MB/s    (9.7k) | 94.76 MB/s    (1.4k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 44.22 MB/s      (86) | 42.93 MB/s      (41)
Write      | 46.84 MB/s      (91) | 45.90 MB/s      (44)
Total      | 91.06 MB/s     (177) | 88.84 MB/s      (85)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 40.9 Mbits/sec  | 43.9 Mbits/sec
Online.net      | Paris, FR (10G)           | 43.0 Mbits/sec  | 11.4 Mbits/sec
WorldStream     | The Netherlands (10G)     | 35.5 Mbits/sec  | 30.4 Mbits/sec
WebHorizon      | Singapore (400M)          | 47.6 Mbits/sec  | 48.0 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 44.0 Mbits/sec  | 46.2 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 42.4 Mbits/sec  | 45.7 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 45.4 Mbits/sec  | 46.4 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 37.2 Mbits/sec  | 37.6 Mbits/sec

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 41.8 Mbits/sec  | 43.8 Mbits/sec
Online.net      | Paris, FR (10G)           | 44.2 Mbits/sec  | 45.4 Mbits/sec
WorldStream     | The Netherlands (10G)     | 41.2 Mbits/sec  | 44.3 Mbits/sec
WebHorizon      | Singapore (400M)          | 42.8 Mbits/sec  | 44.3 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 44.0 Mbits/sec  | 44.5 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 45.2 Mbits/sec  | 46.7 Mbits/sec
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;-------------------- A Bench.sh Script By Teddysun -------------------
 Intro              : https://teddysun.com/444.html
 Version            : v2022-01-01
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : AMD EPYC 7551 32-Core Processor
 CPU Cores          : 2
 CPU Frequency      : 1996.246 MHz
 CPU Cache          : 512 KB
 Total Disk         : 49.8 GB (4.1 GB Used)
 Total Mem          : 972 MB (204 MB Used)
 Total Swap         : 0 MB (0 MB Used)
 System uptime      : 36 days, 6 hour 43 min
 Load average       : 0.00, 0.05, 0.07
 OS                 : Ubuntu 20.04.3 LTS
 Arch               : x86_64 (64 Bit)
 Kernel             : 5.11.0-1022-oracle
 TCP CC             : bbr
 Virtualization     : KVM
 Organization       : AS31898 Oracle Corporation
 Location           : Paripark / KR
 Region             : Seoul
----------------------------------------------------------------------
 I/O Speed(1st run) : 59.2 MB/s
 I/O Speed(2nd run) : 59.9 MB/s
 I/O Speed(3rd run) : 59.5 MB/s
 I/O Speed(average) : 59.5 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    47.25 Mbps        49.47 Mbps          168.59 ms
 Los Angeles, US  48.54 Mbps        45.42 Mbps          134.62 ms
 Dallas, US       48.99 Mbps        50.03 Mbps          179.26 ms
 Montreal, CA     49.67 Mbps        48.81 Mbps          197.37 ms
 Paris, FR        49.35 Mbps        50.07 Mbps          278.08 ms
 Amsterdam, NL    45.48 Mbps        49.56 Mbps          262.16 ms
 Shanghai, CN     47.84 Mbps        47.93 Mbps          111.50 ms
 Nanjing, CN      23.62 Mbps        48.93 Mbps          111.94 ms
 Guangzhou, CN    3.19 Mbps         31.49 Mbps          149.40 ms
 Hongkong, CN     33.22 Mbps        38.46 Mbps          143.72 ms
 Seoul, KR        46.36 Mbps        46.34 Mbps          1.84 ms
 Singapore, SG    49.00 Mbps        51.80 Mbps          77.80 ms
 Tokyo, JP        47.26 Mbps        48.23 Mbps          31.28 ms
----------------------------------------------------------------------
 Finished in        : 7 min 48 sec
 Timestamp          : 2022-01-15 13:47:50
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Sat Jan 15 13:48:47 UTC 2022

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Oracle Cloud


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               Yes (Region: JP)
 Netflix:                               Yes (Region: KR)
 YouTube Premium:                       Yes (Region: KR)
 Amazon Prime Video:                    Yes (Region: KR)
 TVBAnywhere+:                          Yes
 Tiktok Region:                         KR
 iQyi Oversea Region:                   KR
 Viu.com:                               No
 YouTube CDN:                           Associated with LGUPLUSWIRELINE
 Netflix Preferred CDN:                 Tokyo
 Steam Currency:                        KRW
=======================================


 ** 正在测试IPv6解锁情况
--------------------------------
 ** 您的网络为: Oracle Cloud


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               No
 Disney+:                               No
 Netflix:                               Yes (Region: KR)
 YouTube Premium:                       No  (Region: CN)
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 Tiktok Region:                         Failed
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           Hong Kong
 Netflix Preferred CDN:                 Failed
 Steam Currency:                        Failed (Network Connection)
=======================================
本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;路由测试&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/15/24e06eba99d56.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/15/d0d4321e94481.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/15/e1f35c7627b06.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 32 byte packets
 1  140.91.214.1  0.16 ms  AS31898  Republic of Korea, Seoul, oracle.com
 2  121.78.30.14  0.66 ms  AS9286  Republic of Korea, Seoul, kinx.net
 3  121.78.30.13  0.96 ms  AS9286  Republic of Korea, Seoul, kinx.net
 4  121.78.63.77  1.75 ms  AS9286  Republic of Korea, Seoul, kinx.net
 5  218.185.245.61  1.85 ms  AS4809  Republic of Korea, Seoul, ChinaTelecom
 6  59.43.247.41  30.65 ms  *  China, Shanghai, ChinaTelecom
 7  *
 8  59.43.130.217  35.78 ms  *  China, Shanghai, ChinaTelecom
 9  219.158.40.173  50.01 ms  AS4837  China, Shanghai, ChinaUnicom
10  219.158.113.197  45.69 ms  AS4837  China, Shanghai, ChinaUnicom
11  *
12  123.126.0.102  69.87 ms  AS4808  China, Beijing, ChinaUnicom
13  *
14  124.65.194.46  65.73 ms  AS4808  China, Beijing, ChinaUnicom
15  61.135.113.154  64.32 ms  AS4808  China, Beijing, ChinaUnicom
16  *
17  123.125.99.1  70.97 ms  AS4808  China, Beijing, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.9 (180.149.128.9), 30 hops max, 32 byte packets
 1  140.91.214.27  0.40 ms  AS31898  Republic of Korea, Seoul, oracle.com
 2  121.78.30.14  0.74 ms  AS9286  Republic of Korea, Seoul, kinx.net
 3  121.78.30.13  0.96 ms  AS9286  Republic of Korea, Seoul, kinx.net
 4  203.195.115.17  6.39 ms  AS4809  Republic of Korea, Seoul, ChinaTelecom
 5  *
 6  59.43.247.125  69.18 ms  *  China, Beijing, ChinaTelecom
 7  *
 8  59.43.132.17  73.79 ms  *  China, Beijing, ChinaTelecom
 9  *
10  36.110.244.46  52.11 ms  AS23724  China, Beijing, ChinaTelecom
11  36.110.246.198  63.90 ms  AS23724  China, Beijing, ChinaTelecom
12  *
13  180.149.128.9  70.72 ms  AS23724  China, Beijing, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
 1  140.91.214.1  0.24 ms  AS31898  Republic of Korea, Seoul, oracle.com
 2  121.78.30.14  35.47 ms  AS9286  Republic of Korea, Seoul, kinx.net
 3  121.78.30.13  0.92 ms  AS9286  Republic of Korea, Seoul, kinx.net
 4  223.119.19.153  134.90 ms  AS58453  Republic of Korea, Seoul, ChinaMobile
 5  223.120.3.117  132.88 ms  AS58453  Republic of Korea, Seoul, ChinaMobile
 6  *
 7  *
 8  *
 9  *
10  221.176.16.213  168.84 ms  AS9808  China, Beijing, ChinaMobile
11  111.24.2.101  183.70 ms  AS9808  China, Beijing, ChinaMobile
12  111.24.14.54  170.16 ms  AS9808  China, Beijing, ChinaMobile
13  *
14  211.136.67.166  172.45 ms  AS56048  China, Beijing, ChinaMobile
15  211.136.95.226  175.51 ms  AS56048  China, Beijing, ChinaMobile
16  *
17  *
18  211.136.25.153  171.42 ms  AS56048  China, Beijing, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.8.158 (58.247.8.158), 30 hops max, 32 byte packets
 1  140.91.214.27  0.25 ms  AS31898  Republic of Korea, Seoul, oracle.com
 2  121.78.30.14  0.82 ms  AS9286  Republic of Korea, Seoul, kinx.net
 3  121.78.30.13  0.96 ms  AS9286  Republic of Korea, Seoul, kinx.net
 4  203.160.70.129  101.07 ms  AS10099  China, Hong Kong, ChinaUnicom
 5  61.14.201.137  156.64 ms  *  China, Hong Kong, ChinaUnicom
 6  219.158.5.198  158.52 ms  AS4837  China, Shanghai, ChinaUnicom
 7  *
 8  *
 9  *
10  *
11  139.226.225.22  161.79 ms  AS17621  China, Shanghai, ChinaUnicom
12  58.247.8.153  175.10 ms  AS17621  China, Shanghai, ChinaUnicom
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.5 (180.153.28.5), 30 hops max, 32 byte packets
 1  140.91.214.7  0.27 ms  AS31898  Republic of Korea, Seoul, oracle.com
 2  121.78.30.14  0.97 ms  AS9286  Republic of Korea, Seoul, kinx.net
 3  121.78.30.13  1.12 ms  AS9286  Republic of Korea, Seoul, kinx.net
 4  203.195.115.13  43.10 ms  AS4809  Republic of Korea, Seoul, ChinaTelecom
 5  59.43.250.33  68.82 ms  *  China, Shanghai, ChinaTelecom
 6  59.43.187.61  80.75 ms  *  China, Shanghai, ChinaTelecom
 7  59.43.138.45  74.05 ms  *  China, Shanghai, ChinaTelecom
 8  61.152.24.182  60.56 ms  AS4812  China, Shanghai, ChinaTelecom
 9  124.74.166.222  44.31 ms  AS4812  China, Shanghai, ChinaTelecom
10  124.74.232.58  47.19 ms  AS4811  China, Shanghai, ChinaTelecom
11  101.227.255.34  34.83 ms  AS4812  China, Shanghai, ChinaTelecom
12  180.153.28.5  47.48 ms  AS4812  China, Shanghai, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 32 byte packets
 1  140.91.214.26  0.27 ms  AS31898  Republic of Korea, Seoul, oracle.com
 2  121.78.30.14  0.71 ms  AS9286  Republic of Korea, Seoul, kinx.net
 3  121.78.30.13  0.98 ms  AS9286  Republic of Korea, Seoul, kinx.net
 4  223.119.19.153  133.66 ms  AS58453  Republic of Korea, Seoul, ChinaMobile
 5  *
 6  *
 7  *
 8  221.183.55.22  151.33 ms  AS9808  China, Shanghai, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
 1  140.91.214.31  0.16 ms  AS31898  Republic of Korea, Seoul, oracle.com
 2  121.78.30.14  0.80 ms  AS9286  Republic of Korea, Seoul, kinx.net
 3  121.78.30.13  0.96 ms  AS9286  Republic of Korea, Seoul, kinx.net
 4  203.160.70.129  101.82 ms  AS10099  China, Hong Kong, ChinaUnicom
 5  61.14.201.137  154.16 ms  *  China, Hong Kong, ChinaUnicom
 6  *
 7  219.158.113.138  162.53 ms  AS4837  China, Shanghai, ChinaUnicom
 8  *
 9  *
10  112.89.0.58  166.25 ms  AS17816  China, Guangdong, Guangzhou, ChinaUnicom
11  120.80.170.254  160.67 ms  AS17622  China, Guangdong, Guangzhou, ChinaUnicom
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
 1  140.91.214.30  0.21 ms  AS31898  Republic of Korea, Seoul, oracle.com
 2  121.78.30.14  1.00 ms  AS9286  Republic of Korea, Seoul, kinx.net
 3  121.78.30.13  0.94 ms  AS9286  Republic of Korea, Seoul, kinx.net
 4  218.185.245.113  19.92 ms  AS4809  Republic of Korea, Seoul, ChinaTelecom
 5  59.43.187.209  67.90 ms  *  China, Shanghai, ChinaTelecom
 6  *
 7  *
 8  59.43.80.145  25.04 ms  *  China, Shanghai, ChinaTelecom
 9  *
10  *
11  113.108.209.1  89.57 ms  AS4134  China, Guangdong, Guangzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 120.196.212.25 (120.196.212.25), 30 hops max, 32 byte packets
 1  140.91.214.6  0.32 ms  AS31898  Republic of Korea, Seoul, oracle.com
 2  121.78.30.14  0.86 ms  AS9286  Republic of Korea, Seoul, kinx.net
 3  121.78.30.13  1.07 ms  AS9286  Republic of Korea, Seoul, kinx.net
 4  223.119.19.153  132.55 ms  AS58453  Republic of Korea, Seoul, ChinaMobile
 5  223.120.3.113  133.05 ms  AS58453  Republic of Korea, Seoul, ChinaMobile
 6  223.120.3.221  158.61 ms  AS58453  China, Hong Kong, ChinaMobile
 7  *
 8  221.183.55.62  367.31 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
 9  *
10  221.183.68.138  168.12 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
11  111.24.5.173  173.64 ms  AS9808  China, Guangdong, Guangzhou, ChinaMobile
12  111.24.5.222  177.16 ms  AS9808  China, Guangdong, Shenzhen, ChinaMobile
13  211.136.249.9  177.38 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
14  211.136.249.129  176.54 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
15  *
16  *
17  *
18  120.196.212.25  176.26 ms  AS56040  China, Guangdong, Guangzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;结语&lt;/h2&gt;
&lt;p&gt;性能羸弱，网络拉跨，百无一用，探针专用。&lt;/p&gt;
</content:encoded></item><item><title>新版clash内核与机场订阅不兼容解决办法</title><link>https://yushum.com/posts/%E6%96%B0%E7%89%88clash%E5%86%85%E6%A0%B8%E4%B8%8E%E6%9C%BA%E5%9C%BA%E8%AE%A2%E9%98%85%E4%B8%8D%E5%85%BC%E5%AE%B9%E8%A7%A3%E5%86%B3%E5%8A%9E%E6%B3%95/</link><guid isPermaLink="true">https://yushum.com/posts/%E6%96%B0%E7%89%88clash%E5%86%85%E6%A0%B8%E4%B8%8E%E6%9C%BA%E5%9C%BA%E8%AE%A2%E9%98%85%E4%B8%8D%E5%85%BC%E5%AE%B9%E8%A7%A3%E5%86%B3%E5%8A%9E%E6%B3%95/</guid><pubDate>Fri, 14 Jan 2022 19:37:55 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;现在常用的机场前端比如&lt;a href=&quot;https://docs.v2board.com/&quot;&gt;v2board&lt;/a&gt;的clash订阅中仍使用旧版格式，但是在新版clash内核中已经移除了对&lt;code&gt;vmess&lt;/code&gt;旧版格式&lt;code&gt;ws-headers&lt;/code&gt;and&lt;code&gt;ws-path&lt;/code&gt;的支持。所以会出现机场节点全部超时的情况。&lt;/p&gt;
&lt;h2&gt;解决办法&lt;/h2&gt;
&lt;h3&gt;法1&lt;/h3&gt;
&lt;p&gt;打开任务管理器，找到&lt;code&gt;clash-win64.exe&lt;/code&gt;进程，右键-打开文件位置，然后关闭&lt;code&gt;clash for windows&lt;/code&gt;程序。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/14/d41dc28623e00.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;下载旧版&lt;code&gt;clash&lt;/code&gt;核心替换：&lt;a href=&quot;https://github.com/Fndroid/clash_for_windows_pkg/files/7832164/clash-win64.zip&quot;&gt;下载地址&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;重新启动&lt;code&gt;clash for windows&lt;/code&gt;即可。&lt;/p&gt;
&lt;h3&gt;法2&lt;/h3&gt;
&lt;p&gt;将配置文件按照&lt;code&gt;clash&lt;/code&gt;官方实例模板进行修改：&lt;a href=&quot;https://github.com/Dreamacro/clash/wiki/configuration&quot;&gt;点击查看模板&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;结语&lt;/h2&gt;
&lt;p&gt;机场模板没更新之前还是更换内核的方式比较方便，clash还是能用就别升级了，越升bug越多。&lt;/p&gt;
</content:encoded></item><item><title>为你的warp账号添加warp+流量</title><link>https://yushum.com/posts/%E4%B8%BA%E4%BD%A0%E7%9A%84warp%E8%B4%A6%E5%8F%B7%E6%B7%BB%E5%8A%A0warp%E6%B5%81%E9%87%8F/</link><guid isPermaLink="true">https://yushum.com/posts/%E4%B8%BA%E4%BD%A0%E7%9A%84warp%E8%B4%A6%E5%8F%B7%E6%B7%BB%E5%8A%A0warp%E6%B5%81%E9%87%8F/</guid><pubDate>Fri, 14 Jan 2022 18:50:19 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;之前介绍了&lt;a href=&quot;https://yushum.com/%E4%B8%BAipv6-only%E7%9A%84vps%E6%B7%BB%E5%8A%A0ipv4/&quot;&gt;如何为IPv6 only的VPS添加IPv4网络&lt;/a&gt;，以及&lt;a href=&quot;https://yushum.com/warp-cli%E8%A7%A3%E9%94%81netflix/&quot;&gt;使用warp解锁Netflix&lt;/a&gt;。注册的新账号使用的流量都是免费流量，可以通过邀请新用户来获得warp+高级流量（当然也可以氪金获得无限warp+流量）。下面记录如何为warp账号刷warp+流量。&lt;/p&gt;
&lt;h2&gt;准备&lt;/h2&gt;
&lt;p&gt;使用的系统是Debian 11&lt;/p&gt;
&lt;h3&gt;安装python&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;apt install python3 -y
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;下载刷流量脚本&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;wget https://raw.githubusercontent.com/ALIILAPRO/warp-plus-cloudflare/master/wp-plus.py
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;IPv6 only的环境可以使用&lt;a href=&quot;https://yushum.com/%E5%9C%A8cloudflare-worker%E6%90%AD%E5%BB%BAghproxy/&quot;&gt;ghproxy&lt;/a&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;wget https://gh.yushum.com/https://raw.githubusercontent.com/ALIILAPRO/warp-plus-cloudflare/master/wp-plus.py
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;获取warp ID&lt;/h3&gt;
&lt;p&gt;打开&lt;code&gt;1.1.1.1&lt;/code&gt; APP，点击右上角三条横线的按钮-&lt;code&gt;高级&lt;/code&gt;-&lt;code&gt;诊断&lt;/code&gt;-&lt;code&gt;客户端配置&lt;/code&gt;-&lt;code&gt;ID&lt;/code&gt;&lt;/p&gt;
&lt;h3&gt;运行脚本&lt;/h3&gt;
&lt;p&gt;建议用screen在后台运行&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;apt install screen -y
screen -S warp
python3 wp-plus.py //输入你的warp ID 回车
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;运行结果&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/14/c5a18e975c4ad.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/14/90c93ab7275ab.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;结语&lt;/h2&gt;
&lt;p&gt;warp+流量实际使用体验似乎没什么区别。&lt;/p&gt;
</content:encoded></item><item><title>cloudflare worker使用自定义域名</title><link>https://yushum.com/posts/cloudflare-worker%E4%BD%BF%E7%94%A8%E8%87%AA%E5%AE%9A%E4%B9%89%E5%9F%9F%E5%90%8D/</link><guid isPermaLink="true">https://yushum.com/posts/cloudflare-worker%E4%BD%BF%E7%94%A8%E8%87%AA%E5%AE%9A%E4%B9%89%E5%9F%9F%E5%90%8D/</guid><pubDate>Fri, 14 Jan 2022 18:00:04 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;cloudflare worker好用是好用，但是太长了不方便记忆，所以记录一下使用自定义域名的过程。&lt;/p&gt;
&lt;h2&gt;设置&lt;/h2&gt;
&lt;p&gt;首先打开cloudflare对应域名的&lt;code&gt;worker&lt;/code&gt;页面，点击添加路由，假设想使用的域名是&lt;code&gt;worker.example.com&lt;/code&gt;，路由就写&lt;code&gt;worker.example.com/*&lt;/code&gt;，服务选想要自定义域名的&lt;code&gt;worker&lt;/code&gt;。&lt;/p&gt;
&lt;h3&gt;使用Cloudflare官方DNS服务&lt;/h3&gt;
&lt;p&gt;然后打开该域名的dns页面，随意添加一个&lt;code&gt;worker.example.com&lt;/code&gt;的A/AAAA/CNAME记录，目的是让cloudflare系统中记录这个域名。如果你的域名就在cloudflare，那就完成啦。&lt;/p&gt;
&lt;h3&gt;使用其他DNS服务&lt;/h3&gt;
&lt;p&gt;如果使用的是cloudflare partner或者之类的服务，上面的步骤就需要在cloudflare partner中操作，可以使用本人的cloudflare partner。&lt;a href=&quot;https://cf.yushum.com/&quot;&gt;点击前往&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;然后到域名的托管处设置&lt;code&gt;worker.example.com&lt;/code&gt;的CNAME记录到&lt;code&gt;worker.example.com.cdn.cloudflare.net&lt;/code&gt;，等待ns修改生效即可。&lt;/p&gt;
&lt;h2&gt;结语&lt;/h2&gt;
&lt;p&gt;设置好自定义域名后可以到&lt;code&gt;cloudfalre worker&lt;/code&gt;的触发器-路由中禁用&lt;code&gt;woker.dev&lt;/code&gt;域名。&lt;/p&gt;
</content:encoded></item><item><title>在cloudflare worker搭建ghproxy</title><link>https://yushum.com/posts/%E5%9C%A8cloudflare-worker%E6%90%AD%E5%BB%BAghproxy/</link><guid isPermaLink="true">https://yushum.com/posts/%E5%9C%A8cloudflare-worker%E6%90%AD%E5%BB%BAghproxy/</guid><pubDate>Fri, 14 Jan 2022 17:34:35 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;ghproxy是一个用来加速GitHub的工具，适合国内经常被阻断或者国外IPv6 only的环境（GitHub只支持IPv4）。&lt;/p&gt;
&lt;p&gt;例如在&lt;a href=&quot;https://yushum.com/%E4%B8%BAipv6-only%E7%9A%84vps%E6%B7%BB%E5%8A%A0ipv4/&quot;&gt;为IPv6 only的VPS添加IPv4&lt;/a&gt;一文中就用到了本人搭建的ghproxy。&lt;/p&gt;
&lt;h2&gt;安装&lt;/h2&gt;
&lt;p&gt;打开&lt;a href=&quot;https://workers.cloudflare.com/&quot;&gt;cloudflare worker&lt;/a&gt;页面，点击&lt;code&gt;Start building&lt;/code&gt;，在打开的页面中点击&lt;code&gt;创建服务&lt;/code&gt;，取一个名字，然后&lt;code&gt;创建服务&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;点击&lt;code&gt;快速编辑&lt;/code&gt;，复制&lt;code&gt;index.js&lt;/code&gt;到代码框，然后点击&lt;code&gt;保存并部署&lt;/code&gt;。&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;index.js&lt;/code&gt;默认配置下clone走github.com.cnpmjs.org，项目文件会走jsDeliver，如需走worker，修改Config变量即可&lt;br /&gt;
&lt;code&gt;ASSET_URL&lt;/code&gt;是静态资源的url（实际上就是现在显示出来的那个输入框单页面）&lt;br /&gt;
&lt;code&gt;PREFIX&lt;/code&gt;是前缀，默认（根路径情况为&quot;/&quot;），如果自定义路由为example.com/gh/*，请将PREFIX改为 &apos;/gh/&apos;，注意，少一个杠都会错！&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;使用&lt;/h2&gt;
&lt;p&gt;打开刚刚设置好的worker域名，即可看到如下页面。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/14/401cdfdb8a458.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;可以直接在需要加速的GitHub链接前加上你的worker域名。&lt;/p&gt;
&lt;h2&gt;自定义域名&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;worker&lt;/code&gt;的域名太长，可以使用自己的域名赏心悦目，&lt;a href=&quot;https://yushum.com/cloudflare-worker%E4%BD%BF%E7%94%A8%E8%87%AA%E5%AE%9A%E4%B9%89%E5%9F%9F%E5%90%8D/&quot;&gt;点击直达教程&lt;/a&gt;。&lt;/p&gt;
</content:encoded></item><item><title>Euserv 免费IPv6 only VPS测评</title><link>https://yushum.com/posts/euserv-%E5%85%8D%E8%B4%B9ipv6-only-vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/euserv-%E5%85%8D%E8%B4%B9ipv6-only-vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Fri, 14 Jan 2022 14:45:41 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;http://www.euserv.com/?pk=b67cb029a1327bb&quot;&gt;点击前往Euserv官网&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;每个账户可以申请三个免费VPS，记不清什么时候申请的了，当时还没什么人用。自从被各种薅羊毛和YouTuber宣传之后，续期变得越来越麻烦了，负载也越来越高了。现在拿出来测试记录一下，这个账户里有两台，一台测试机已使用wgcf添加IPv4，&lt;a href=&quot;https://yushum.com/%E4%B8%BAipv6-only%E7%9A%84vps%E6%B7%BB%E5%8A%A0ipv4/&quot;&gt;点击前往教程&lt;/a&gt;，另一台是纯IPv6。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;h3&gt;有IPv4:&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-28                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Fri 14 Jan 2022 07:14:14 AM CET

Basic System Information:
---------------------------------
Processor  : Intel(R) Xeon(R) CPU E3-1230 V2 @ 3.30GHz
CPU cores  : 1 @ 3388.997 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 976.6 MiB
Swap       : 976.6 MiB
Disk       : 9.7 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 4.83 MB/s     (1.2k) | 1.01 GB/s    (15.8k)
Write      | 4.85 MB/s     (1.2k) | 1.02 GB/s    (15.9k)
Total      | 9.69 MB/s     (2.4k) | 2.03 GB/s    (31.8k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 1.67 GB/s     (3.2k) | 3.17 MB/s        (3)
Write      | 1.76 GB/s     (3.4k) | 3.60 MB/s        (3)
Total      | 3.44 GB/s     (6.7k) | 6.78 MB/s        (6)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 186 Mbits/sec   | 21.2 Mbits/sec
Online.net      | Paris, FR (10G)           | 188 Mbits/sec   | 24.3 Mbits/sec
WorldStream     | The Netherlands (10G)     | 179 Mbits/sec   | 24.4 Mbits/sec
WebHorizon      | Singapore (400M)          | 107 Mbits/sec   | 21.0 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 170 Mbits/sec   | 21.8 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 131 Mbits/sec   | 17.2 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 138 Mbits/sec   | 1.12 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 119 Mbits/sec   | 10.8 Mbits/sec

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 758 Mbits/sec   | 426 Mbits/sec
Online.net      | Paris, FR (10G)           | 756 Mbits/sec   | 448 Mbits/sec
WorldStream     | The Netherlands (10G)     | 364 Mbits/sec   | 439 Mbits/sec
WebHorizon      | Singapore (400M)          | 110 Mbits/sec   | 41.3 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 587 Mbits/sec   | 391 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 312 Mbits/sec   | 153 Mbits/sec
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;IPv6 only:&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-28                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Fri 14 Jan 2022 07:20:34 AM CET

Basic System Information:
---------------------------------
Processor  : Intel(R) Xeon(R) CPU E3-1270 v3 @ 3.50GHz
CPU cores  : 1 @ 3866.811 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 976.6 MiB
Swap       : 976.6 MiB
Disk       : 9.7 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 2.17 MB/s      (543) | 1.20 GB/s    (18.7k)
Write      | 2.17 MB/s      (544) | 1.20 GB/s    (18.8k)
Total      | 4.35 MB/s     (1.0k) | 2.41 GB/s    (37.6k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 383.00 KB/s      (0) | 13.22 MB/s      (12)
Write      | 482.00 KB/s      (0) | 14.92 MB/s      (14)
Total      | 865.00 KB/s      (0) | 28.15 MB/s      (26)

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 650 Mbits/sec   | 374 Mbits/sec
Online.net      | Paris, FR (10G)           | 504 Mbits/sec   | 422 Mbits/sec
WorldStream     | The Netherlands (10G)     | 597 Mbits/sec   | 340 Mbits/sec
WebHorizon      | Singapore (400M)          | 31.2 Mbits/sec  | 91.2 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 305 Mbits/sec   | 362 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 298 Mbits/sec   | 283 Mbits/sec
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;h3&gt;有IPv4:&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/14/005eaa4d0097a.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;h3&gt;有IPv4:&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Fri 14 Jan 2022 07:45:09 AM CET

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Cloudflare Warp


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               No
 Disney+:                               Yes (Region: DE)
 Netflix:                               Yes (Region: DE)
 YouTube Premium:                       Yes (Region: DE)
 Amazon Prime Video:                    Yes (Region: DE)
 TVBAnywhere+:                          Yes
 Tiktok Region:                         DE
 iQyi Oversea Region:                   DE
 Viu.com:                               No
 YouTube CDN:                           Frankfurt
 Netflix Preferred CDN:                 Frankfurt
 Steam Currency:                        EUR
=======================================


 ** 正在测试IPv6解锁情况
--------------------------------
 ** 您的网络为: ISPpro Internet KG


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               No
 Disney+:                               No
 Netflix:                               Originals Only
 YouTube Premium:                       No  (Region: CN)
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 Tiktok Region:                         Failed
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           Frankfurt
 Netflix Preferred CDN:                 Failed
 Steam Currency:                        Failed (Network Connection)
=======================================
本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;因为是完全免费的，所以性价比就不说了。如果有时间折腾可以申请一个，不过只能当玩具了。&lt;/p&gt;
</content:encoded></item><item><title>为IPv6 only的VPS添加IPv4</title><link>https://yushum.com/posts/%E4%B8%BAipv6-only%E7%9A%84vps%E6%B7%BB%E5%8A%A0ipv4/</link><guid isPermaLink="true">https://yushum.com/posts/%E4%B8%BAipv6-only%E7%9A%84vps%E6%B7%BB%E5%8A%A0ipv4/</guid><pubDate>Fri, 14 Jan 2022 12:10:01 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;之前介绍过用cloudflare-warp官方客户端为本地提供一个代理服务来解锁Netflix以及其他流媒体，这种方式比较轻便，如果不是IPv6 only的环境还是建议使用官方客户端。 &lt;a href=&quot;https://yushum.com/warp-cli%E8%A7%A3%E9%94%81netflix/&quot;&gt;点击查看&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;本文介绍通过wireguard连接warp服务端，实现类似添加IPv4的功能。缺点是这种模式无法使用docker的bridge模式。&lt;/p&gt;
&lt;p&gt;网上有很多一键脚本，Google一搜就能找到，不过生命在于折腾，所以记录一下手动折腾过程，本文使用的环境是Debian 11。&lt;/p&gt;
&lt;h2&gt;wgcf&lt;/h2&gt;
&lt;h3&gt;安装&lt;/h3&gt;
&lt;p&gt;首先安装wgcf，因为本机没有ipv4，所以不能直接从&lt;a href=&quot;https://github.com/ViRb3/wgcf&quot;&gt;GitHub&lt;/a&gt;下载。这里使用了本人搭建的&lt;a href=&quot;https://github.com/hunshcn/gh-proxy&quot;&gt;ghproxy&lt;/a&gt;。当然你也可以自行搭建一个（&lt;a href=&quot;https://yushum.com/%E5%9C%A8cloudflare-worker%E6%90%AD%E5%BB%BAghproxy/&quot;&gt;查看教程&lt;/a&gt;）。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;cd /usr/local/bin &amp;amp;&amp;amp; wget https://gh.yushum.com/https://github.com/ViRb3/wgcf/releases/download/v2.2.11/wgcf_2.2.11_linux_amd64 -O wgcf &amp;amp;&amp;amp; chmod +x wgcf
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;注册&lt;/h3&gt;
&lt;h4&gt;全新注册&lt;/h4&gt;
&lt;p&gt;可以直接注册新账号&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;wgcf register
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;新账号将会保存在当前目录下的&lt;code&gt;wgcf-account.toml&lt;/code&gt;文件中。&lt;/p&gt;
&lt;h4&gt;使用原有账号&lt;/h4&gt;
&lt;p&gt;也可以使用原有账户信息，只要修改 &lt;code&gt;wgcf-account.toml&lt;/code&gt; 中的&lt;code&gt;license_key&lt;/code&gt;为你的值即可。可以通过邀请新用户的方式添加warp+高级流量，也可以用脚本刷流量，&lt;a href=&quot;https://yushum.com/%E4%B8%BA%E4%BD%A0%E7%9A%84warp%E8%B4%A6%E5%8F%B7%E6%B7%BB%E5%8A%A0warp%E6%B5%81%E9%87%8F/&quot;&gt;点击前往教程&lt;/a&gt;。&lt;/p&gt;
&lt;p&gt;手机端可以打开&lt;code&gt;1.1.1.1&lt;/code&gt;APP，点击右上角三条横线的菜单按钮，打开&lt;code&gt;账户&lt;/code&gt;，看到的&lt;code&gt;按键&lt;/code&gt;就是所需要的&lt;code&gt;license_key&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;有以下两种方式更新账户信息，二选一即可。&lt;/p&gt;
&lt;h5&gt;1. 修改&lt;code&gt;wgcf-account.toml&lt;/code&gt;文件&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;vi wgcf-account.toml //填入你的license_key,然后按esc :wq保存退出
wgcf update
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;2. 通过环境变量修改&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;WGCF_LICENSE_KEY=&quot;123412341234&quot; wgcf update
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;生成配置文件&lt;/h3&gt;
&lt;p&gt;现在就可以使用已经设置好的账号生成wireguard配置文件了。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;wgcf generate
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;此时当前目录下就会生成&lt;code&gt;wgcf-profile.conf&lt;/code&gt;文件。&lt;/p&gt;
&lt;h3&gt;处理配置文件&lt;/h3&gt;
&lt;h4&gt;监听&lt;/h4&gt;
&lt;p&gt;对于IPv6 only的服务器而言，我们只需要让warp接管ipv4的监听，所以需要删除&lt;code&gt;wgcf-profile.conf&lt;/code&gt;文件中的第十行&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;AllowedIPs = ::/0
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后将第11行的&lt;code&gt;engage.cloudflareclient.com&lt;/code&gt;修改为IPv6地址，一般都是&lt;code&gt;2606:4700:d0::a29f:c001&lt;/code&gt;，注意IPv6要加括号，所以第11行最终修改为&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;Endpoint = [2606:4700:d0::a29f:c001]:2408
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;最大传输单元(MTU)&lt;/h4&gt;
&lt;p&gt;配置文件中还有一项mtu，对网速的影响很大，可以酌情修改，具体环境自行测试，不能一概而论。&lt;/p&gt;
&lt;p&gt;可以参考GitHub中的讨论&lt;a href=&quot;https://github.com/ViRb3/wgcf/issues/40&quot;&gt;#40&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;WireGuard&lt;/h2&gt;
&lt;p&gt;对于全虚拟化或者独立服务器直接安装wireguard即可，因为wireguard的模块在内核中已经提供；对于半虚拟化不能修改内核，就只能用wireguard-go或者&lt;a href=&quot;https://github.com/cloudflare/boringtun&quot;&gt;BoringTun&lt;/a&gt;作为替代。&lt;/p&gt;
&lt;h3&gt;全虚拟化和独服&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;apt install wireguard-tools openresolv -y
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;半虚拟化&lt;/h3&gt;
&lt;p&gt;无论是wireguard-go还是BoringTun, 都需要服务器支持tun，如果不支持须联系服务商开启。以下两种方式二选一。&lt;/p&gt;
&lt;p&gt;首先安装wireguard&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;apt install wireguard-tools openresolv -y --no-install-recommends
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;1. wireguard-go&lt;/h4&gt;
&lt;p&gt;可以自行编译，嫌麻烦直接用别人编译好的也可以。&lt;/p&gt;
&lt;h5&gt;自行编译&lt;/h5&gt;
&lt;p&gt;注意需要本地golang版本高于1.13&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;git clone https://git.zx2c4.com/wireguard-go.git &amp;amp;&amp;amp; cd wireguard-go &amp;amp;&amp;amp; make
mv ./wireguard-go /usr/local/bin/
chmod +x /usr/local/bin/wireguard-go
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;安装好之后可以输入&lt;code&gt;wireguard-go&lt;/code&gt;测试一下，有返回结果即可。&lt;/p&gt;
&lt;h5&gt;第三方编译&lt;/h5&gt;
&lt;p&gt;以下二选一即可。&lt;/p&gt;
&lt;h6&gt;&lt;a href=&quot;https://github.com/bernardkkt/wg-go-builder&quot;&gt;bernardkkt&lt;/a&gt;&lt;/h6&gt;
&lt;p&gt;打开&lt;a href=&quot;https://github.com/bernardkkt/wg-go-builder/releases/latest&quot;&gt;Release页面&lt;/a&gt;查看最新版，目前最新版为&lt;code&gt;v0.0.20211016&lt;/code&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;wget https://gh.yushum.com/https://github.com/bernardkkt/wg-go-builder/releases/download/v0.0.20211016/wireguard-go -P /usr/local/bin &amp;amp;&amp;amp; chmod +x 

/usr/local/bin/wiregurad-go
&lt;/code&gt;&lt;/pre&gt;
&lt;h6&gt;&lt;a href=&quot;https://github.com/P3TERX/wireguard-go-builder&quot;&gt;P3TERX&lt;/a&gt;&lt;/h6&gt;
&lt;p&gt;打开&lt;a href=&quot;https://github.com/P3TERX/wireguard-go-builder/releases/latest&quot;&gt;Release页面&lt;/a&gt;查看最新版，目前最新版为&lt;code&gt;0.0.20211016&lt;/code&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;wget https://gh.yushum.com/https://github.com/P3TERX/wireguard-go-builder/releases/download/0.0.20211016/wireguard-go-linux-amd64.tar.gz
tar xvf wireguard-go-linux-amd64.tar.gz
chmod +x wireguard-go
mv wireguard-go /usr/local/bin
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;2. BoringTun&lt;/h4&gt;
&lt;p&gt;BoringTun也需要编译安装，懒得编译的可以&lt;a href=&quot;https://gh.yushum.com/https://raw.githubusercontent.com/yushum/boringtun/main/boringtun&quot;&gt;直接下载&lt;/a&gt;我编译好的到 &lt;code&gt;/usr/local/bin/&lt;/code&gt; 目录并给予可执行权限。&lt;/p&gt;
&lt;h5&gt;cargo&lt;/h5&gt;
&lt;p&gt;首先安装cargo&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;apt install cargo -y
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;编译&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;mkdir boringtun
cd boringtun 
git clone https://gh.yushum.com/https://github.com/cloudflare/boringtun .
cargo build --bin boringtun --release
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;安装&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;cp target/release/boringtun /usr/local/bin/
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;使用&lt;/h2&gt;
&lt;p&gt;将wgcf生成的&lt;code&gt;wgcf-profile.conf&lt;/code&gt;文件复制到wiregurad配置文件夹中&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;cp /usr/local/etc/wgcf/wgcf-profile.conf /etc/wiregurad/wgcf.conf
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;测试&lt;/h3&gt;
&lt;p&gt;测试一下配置文件有无错误&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;wg-quick up wgcf
curl ipinfo.io
&lt;/code&gt;&lt;/pre&gt;
&lt;blockquote&gt;
&lt;p&gt;如果使用了&lt;code&gt;BoringTun&lt;/code&gt;需要在前面加环境变量&lt;code&gt;WG_QUICK_USERSPACE_IMPLEMENTATION=boringtun WG_SUDO=1&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;没有错误的话就可以停止进程&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;wg-quick down wgcf
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;开机自启&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;systemctl enable wg-quick@wgcf.service
&lt;/code&gt;&lt;/pre&gt;
&lt;blockquote&gt;
&lt;p&gt;注意如果使用了BoringTun需要在&lt;code&gt;/lib/systemd/system/wg-quick@.service&lt;/code&gt;的&lt;code&gt;Environment=&lt;/code&gt;中加上&lt;code&gt;WG_QUICK_USERSPACE_IMPLEMENTATION=boringtun WG_SUDO=1&lt;/code&gt;, 然后&lt;code&gt;systemctl daemon-reload&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;结语&lt;/h2&gt;
&lt;p&gt;OpenVZ建议使用BoringTun，注意调整mtu（重要！），实测效果还是不错的。&lt;/p&gt;
&lt;p&gt;Euserv免费IPv6 VPS 不同mtu值speedtest测试结果：&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.speedtest.net/result/c/2917084f-fcf8-4bc6-8852-61d49844ebf0.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;1500&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.speedtest.net/result/c/bac3d61b-ad4d-4573-9816-0d0cd86045bf.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;1420&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.speedtest.net/result/c/f70360ae-59e5-4261-a087-6304b28a8e6b.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;1392&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.speedtest.net/result/c/4ea7fece-e453-47b2-a9bf-347126a6d2f7.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;1280&lt;/p&gt;
</content:encoded></item><item><title>Web Horizon $3.99/年 nat VPS测评</title><link>https://yushum.com/posts/web-horizon-3-99-%E5%B9%B4-nat-vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/web-horizon-3-99-%E5%B9%B4-nat-vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Thu, 13 Jan 2022 20:48:04 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://my.webhorizon.in/order/forms/a/MzgzMg==&quot;&gt;点击前往Web Horizon官网&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;建议关注&lt;a href=&quot;https://my.webhorizon.in/order/main/packages/BF/?group_id=21?a=MzgzMg==&quot;&gt;Web Horizon Special Deals&lt;/a&gt;页面&lt;/p&gt;
&lt;p&gt;购买他家不要挂代理，会人工审核，会让使用真实IP并修改个人资料。我购买的这款IP已被墙，只能套Cloudflare，所以就不测试路由了。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-28                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Thu Jan 13 13:27:51 CET 2022

Basic System Information:
---------------------------------
Processor  : AMD EPYC 7282 16-Core Processor
CPU cores  : 1 @ 2513.635 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 256.0 MiB
Swap       : 128.0 MiB
Disk       : 3.9 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 4.75 MB/s     (1.1k) | 54.41 MB/s     (850)
Write      | 4.77 MB/s     (1.1k) | 54.90 MB/s     (857)
Total      | 9.53 MB/s     (2.3k) | 109.31 MB/s   (1.7k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 134.96 MB/s    (263) | 124.75 MB/s    (121)
Write      | 142.13 MB/s    (277) | 133.06 MB/s    (129)
Total      | 277.10 MB/s    (540) | 257.82 MB/s    (250)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 237 Mbits/sec   | 162 Mbits/sec
Online.net      | Paris, FR (10G)           | busy            | 237 Mbits/sec
WorldStream     | The Netherlands (10G)     | busy            | busy
WebHorizon      | Singapore (400M)          | 11.3 Gbits/sec  | 6.55 Gbits/sec
Clouvider       | NYC, NY, US (10G)         | 193 Mbits/sec   | 229 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 234 Mbits/sec   | 286 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 311 Mbits/sec   | 186 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | busy            | 31.8 Mbits/sec

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 92.5 Mbits/sec  | 168 Mbits/sec
Online.net      | Paris, FR (10G)           | 159 Mbits/sec   | 233 Mbits/sec
WorldStream     | The Netherlands (10G)     | 28.9 Mbits/sec  | 77.3 Mbits/sec
WebHorizon      | Singapore (400M)          | 1.56 Gbits/sec  | 1.69 Gbits/sec
Clouvider       | NYC, NY, US (10G)         | 227 Mbits/sec   | 201 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 148 Mbits/sec   | 246 Mbits/sec
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/13/2d4becc5ed6bc.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt; ** 测试时间: Thu Jan 13 13:47:17 CET 2022

 ** 正在测试IPv4解锁情况
--------------------------------
 ** 您的网络为: Contabo Asia Private Limited


============[ Multination ]============
 Dazn:                                  No
 HotStar:                               Yes (Region: SG)
 Disney+:                               Yes (Region: SG)
 Netflix:                               Yes (Region: SG)
 YouTube Premium:                       Yes (Region: MY)
 Amazon Prime Video:                    Yes (Region: SG)
 TVBAnywhere+:                          Yes
 Tiktok Region:                         SG
 iQyi Oversea Region:                   SG
 Viu.com:                               Yes (Region: SG)
 YouTube CDN:                           Singapore
 Netflix Preferred CDN:                 Singapore
 Steam Currency:                        SGD
=======================================


 ** 正在测试IPv6解锁情况
--------------------------------
 ** 您的网络为: Contabo Asia Private Limited


============[ Multination ]============
 Dazn:                                  Failed (Network Connection)
 HotStar:                               Yes (Region: SG)
 Disney+:                               No
 Netflix:                               Originals Only
 YouTube Premium:                       No  (Region: CN)
 Amazon Prime Video:                    Unsupported
 TVBAnywhere+:                          Failed (Network Connection)
 Tiktok Region:                         Failed
 iQyi Oversea Region:                   Failed
 Viu.com:                               Failed
 YouTube CDN:                           Singapore
 Netflix Preferred CDN:                 Failed
 Steam Currency:                        Failed (Network Connection)
=======================================
本次测试已结束，感谢使用此脚本
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;偶尔能解锁Netflix。性能太垃圾，跑不了GB5。实际使用体验很差，不定期重启且邻居很折腾，只能当玩具。&lt;/p&gt;
</content:encoded></item><item><title>命令行查看IP地址</title><link>https://yushum.com/posts/curl%E6%9F%A5%E7%9C%8Bip%E5%9C%B0%E5%9D%80/</link><guid isPermaLink="true">https://yushum.com/posts/curl%E6%9F%A5%E7%9C%8Bip%E5%9C%B0%E5%9D%80/</guid><pubDate>Mon, 10 Jan 2022 11:54:05 GMT</pubDate><content:encoded>&lt;h2&gt;curl&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl ip.fm&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl ip.gs&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl ip.sb&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl cip.cc&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl 3.0.3.0&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl xabc.io/p&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl ipgrab.io&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl ipinfo.io&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl ip.fht.im&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl ip.z7z.cc&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl ifconfig.co&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl ifconfig.io&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl ip.p3terx.com&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl icanhazip.com&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl ip.threep.top&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl myip.ipip.net&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl api.ipify.org&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl httpbin.org/ip&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl ifconfig.me/ip&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl www.trackip.net/ip&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl checkip.dyndns.com&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl checkip.dyndns.org&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl pv.sohu.com/cityjson&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl myexternalip.com/raw&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl whatismyip.akamai.com&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl checkip.amazonaws.com&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl -sL hostname.cloudcache.net&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl cloudflare.com/cdn-cgi/trace&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl [2a09::]&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl [2a11::]&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl https://lerry.me/ip&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl https://api.myip.com&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl https://www.jsonip.com&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl https://myip.biturl.top&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;curl https://api.akkariin.com:24443/getip/&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;dig&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;dig -6 TXT +short o-o.myaddr.l.google.com @ns1.google.com&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;dig -4 TXT +short o-o.myaddr.l.google.com @ns1.google.com&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;dig -6 -t aaaa +short myip.opendns.com @resolver1.opendns.com&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;dig -4 -t a +short myip.opendns.com @resolver1.opendns.com&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;ssh&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;ssh -6 sshmyip.com&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ssh -4 sshmyip.com&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;telnet&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;telnet ipv6.telnetmyip.com&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;telnet ipv4.telnetmyip.com&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;telnet -6 telnetmyip.com&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;telnet -4 telnetmyip.com&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;转载自：&lt;a href=&quot;https://hostloc.com/thread-954782-1-1.html&quot;&gt;hostloc&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Oracle东京免费AMD实例测评</title><link>https://yushum.com/posts/oracle%E4%B8%9C%E4%BA%AC%E5%85%8D%E8%B4%B9amd%E5%AE%9E%E4%BE%8B%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/oracle%E4%B8%9C%E4%BA%AC%E5%85%8D%E8%B4%B9amd%E5%AE%9E%E4%BE%8B%E6%B5%8B%E8%AF%84/</guid><pubDate>Mon, 10 Jan 2022 10:53:31 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;前段时间测评过ARM实例，&lt;a href=&quot;https://yushum.com/oracle%E5%85%8D%E8%B4%B9arm%E5%AE%9E%E4%BE%8B%E6%B5%8B%E8%AF%84/&quot;&gt;点击查看ARM测评&lt;/a&gt;，现在测试一下弱鸡AMD实例。&lt;/p&gt;
&lt;p&gt;还测试了首尔的AMD实例（&lt;a href=&quot;https://yushum.com/oracle%E9%A6%96%E5%B0%94%E5%85%8D%E8%B4%B9amd%E5%AE%9E%E4%BE%8B%E6%B5%8B%E8%AF%84/&quot;&gt;点击查看&lt;/a&gt;）。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-28                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Mon Jan 10 01:20:49 UTC 2022

Basic System Information:
---------------------------------
Processor  : AMD EPYC 7551 32-Core Processor
CPU cores  : 2 @ 1996.251 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 972.1 MiB
Swap       : 0.0 KiB
Disk       : 48.4 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 23.25 MB/s    (5.8k) | 47.26 MB/s     (738)
Write      | 23.26 MB/s    (5.8k) | 47.50 MB/s     (742)
Total      | 46.51 MB/s   (11.6k) | 94.76 MB/s    (1.4k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 44.20 MB/s      (86) | 43.30 MB/s      (42)
Write      | 46.68 MB/s      (91) | 46.30 MB/s      (45)
Total      | 90.88 MB/s     (177) | 89.60 MB/s      (87)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 42.8 Mbits/sec  | 45.0 Mbits/sec
Online.net      | Paris, FR (10G)           | 41.1 Mbits/sec  | 44.2 Mbits/sec
WorldStream     | The Netherlands (10G)     | 41.3 Mbits/sec  | 45.1 Mbits/sec
WebHorizon      | Singapore (400M)          | 47.8 Mbits/sec  | 46.9 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 44.8 Mbits/sec  | 47.2 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 42.6 Mbits/sec  | 44.6 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 48.5 Mbits/sec  | 47.5 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 41.4 Mbits/sec  | 44.5 Mbits/sec

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 41.9 Mbits/sec  | 44.7 Mbits/sec
Online.net      | Paris, FR (10G)           | 42.0 Mbits/sec  | 43.9 Mbits/sec
WorldStream     | The Netherlands (10G)     | 40.8 Mbits/sec  | 44.3 Mbits/sec
WebHorizon      | Singapore (400M)          | 44.2 Mbits/sec  | 45.4 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 44.2 Mbits/sec  | 45.6 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 45.9 Mbits/sec  | 46.9 Mbits/sec
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/10/8bca97d93f405.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/10/879a9a05427c4.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/10/a9f1132aac84a.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/10/951b59cd15d92.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/10/9a9bc294a6b80.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;北京&lt;/h4&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/10/74af6e3bb6f8c.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/10/df5874906505d.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/10/b8f7e5d41511f.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;上海&lt;/h4&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/10/e850068f8d6f6.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/10/fe640f5d60291.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/10/2be515b3847f8.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;广州&lt;/h4&gt;
&lt;h5&gt;电信&lt;/h5&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/10/34d5df10b894c.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h5&gt;联通&lt;/h5&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/10/3827a03bec714.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h5&gt;移动&lt;/h5&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2022/01/10/0fc66e12f7a11.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;CPU太垃圾导致GB5无法运行，到国内的网络也很差。IPv6到国内校园网是直连，应该可以用来做免流，但是没有校园网环境，无法测试。&lt;/p&gt;
</content:encoded></item><item><title>lifehost360赫尔辛基VPS测评</title><link>https://yushum.com/posts/lifehost360%E8%B5%AB%E5%B0%94%E8%BE%9B%E5%9F%BAvps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/lifehost360%E8%B5%AB%E5%B0%94%E8%BE%9B%E5%9F%BAvps%E6%B5%8B%E8%AF%84/</guid><pubDate>Mon, 20 Dec 2021 19:14:47 GMT</pubDate><content:encoded>&lt;p&gt;前言&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.lifehost360.com/&quot;&gt;lifehost360&lt;/a&gt;前几天在let发贴，使用优惠码welcome-let可以获取5欧元账户余额。似乎是新商家，所以面板有很多bug，甚至新用户5欧元优惠可以重复获取（现已被修复）。开了一台2.99欧元的VPS，外网网卡需要自己添加，每台机器可以添加4个免费的IPv4地址，不过默认网卡配置有点问题。吃灰几天跑个测试吧。&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.lowendtalk.com/discussion/175958/lifehost360-com-meets-lowendtalk-get-your-5-coupon-now/p1&quot;&gt;lifehost360.com meets LowEndTalk - get your 5€ coupon now!&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/20/cd6cd23e01850.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/20/7bf785ccbad87.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/20/e76f0fa17029e.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/20/1582120996d07.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/20/c48de5a64322e.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/20/caafcb7433383.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/20/6f68a4d0e0d90.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/20/3aa7bc6f75a12.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/20/7381788c33bcd.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/20/cd33c46c8d5e7.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;性能表现一般，配置在欧洲VPS中也不算很高，做站还是套cloudflare吧。&lt;/p&gt;
</content:encoded></item><item><title>2CY西班牙马德里CN2 GIA VPS测评</title><link>https://yushum.com/posts/2cy%E8%A5%BF%E7%8F%AD%E7%89%99%E9%A9%AC%E5%BE%B7%E9%87%8Ccn2-vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/2cy%E8%A5%BF%E7%8F%AD%E7%89%99%E9%A9%AC%E5%BE%B7%E9%87%8Ccn2-vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Sun, 19 Dec 2021 19:07:57 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;在购买&lt;a href=&quot;https://yushum.com/2cy%E8%A5%BF%E9%9B%85%E5%9B%BEvps%E6%B5%8B%E8%AF%95/&quot;&gt;2CY家的西雅图&lt;/a&gt;后，再次购买了&lt;a href=&quot;https://secure.2cy.net/index.php?rp=/store/region-es-mad-cn2&quot;&gt;马德里CN2 VPS&lt;/a&gt;。以下测试所处时段为晚高峰。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/19/3179894dfa9db.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/19/889e13048367f.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/19/7636de41a17a8.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/19/9553983534d9d.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/19/cfa96a342f7a1.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/19/130b727240633.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/19/0ac283c8a84c9.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/19/0ac283c8a84c9.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/19/eae2466b145a7.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;除移动去程外均为CN2 GIA线路，IO性能爆炸，CPU性能也很优秀。买买买！&lt;/p&gt;
</content:encoded></item><item><title>2CY西雅图9929 VPS测试</title><link>https://yushum.com/posts/2cy%E8%A5%BF%E9%9B%85%E5%9B%BEvps%E6%B5%8B%E8%AF%95/</link><guid isPermaLink="true">https://yushum.com/posts/2cy%E8%A5%BF%E9%9B%85%E5%9B%BEvps%E6%B5%8B%E8%AF%95/</guid><pubDate>Sat, 18 Dec 2021 20:57:11 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;还是像我在&lt;a href=&quot;https://yushum.com/archives/395&quot;&gt;HostingViet越南河内VPS测评&lt;/a&gt;文章里说的，看到loc里都在哄抢斯巴达(Spartanhost)，我就知道该另寻他处了。果不其然今天斯巴达的线路就变差了。当天我购买的是2CY家&lt;a href=&quot;https://secure.2cy.net/index.php?rp=/store/region-us-sea-premium&quot;&gt;北美 | 西雅图 | Premium&lt;/a&gt;，&lt;s&gt;三网走9929，购买至今一直比较稳定。&lt;/s&gt;&lt;/p&gt;
&lt;p&gt;线路已改，查看最新测试：&lt;a href=&quot;https://yushum.com/2cy%E8%A5%BF%E9%9B%85%E5%9B%BE%E5%86%8D%E6%AC%A1%E6%B5%8B%E8%AF%84/&quot;&gt;2CY西雅图再次测评&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;以下测试均为晚高峰。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-03                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Sat 18 Dec 2021 04:20:42 AM PST

Basic System Information:
---------------------------------
Processor  : Common KVM processor
CPU cores  : 2 @ 2500.154 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 978.6 MiB
Swap       : 975.0 MiB
Disk       : 8.8 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 48.51 MB/s   (12.1k) | 83.34 MB/s    (1.3k)
Write      | 48.60 MB/s   (12.1k) | 83.78 MB/s    (1.3k)
Total      | 97.12 MB/s   (24.2k) | 167.13 MB/s   (2.6k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 31.23 MB/s      (61) | 125.55 MB/s    (122)
Write      | 32.77 MB/s      (64) | 133.91 MB/s    (130)
Total      | 64.01 MB/s     (125) | 259.46 MB/s    (252)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 1.35 Gbits/sec  | 1.28 Gbits/sec
Online.net      | Paris, FR (10G)           | 1.49 Gbits/sec  | 1.36 Gbits/sec
WorldStream     | The Netherlands (10G)     | 1.25 Gbits/sec  | 1.31 Gbits/sec
WebHorizon      | Singapore (1G)            | 367 Mbits/sec   | 164 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 3.08 Gbits/sec  | 2.85 Gbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 3.10 Gbits/sec  | 2.82 Gbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 3.44 Gbits/sec  | 6.31 Gbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 581 Mbits/sec   | 38.2 Mbits/sec

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 1.35 Gbits/sec  | 1.31 Gbits/sec
Online.net      | Paris, FR (10G)           | 1.47 Gbits/sec  | 1.13 Gbits/sec
WorldStream     | The Netherlands (10G)     | 1.26 Gbits/sec  | 1.26 Gbits/sec
WebHorizon      | Singapore (1G)            | 334 Mbits/sec   | 273 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 3.15 Gbits/sec  | 2.92 Gbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 6.40 Gbits/sec  | 5.24 Gbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 555
Multi Core      | 1084
Full Test       | https://browser.geekbench.com/v5/cpu/11676024
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;----------------------------------------------------------------------
 CPU Model             : Common KVM processor
 CPU Cores             : 2
 CPU Frequency         : 2500.154 MHz
 CPU Cache             : 16384 KB
 Total Disk            : 8.9 GB (1.2 GB Used)
 Total Mem             : 978 MB (109 MB Used)
 Total Swap            : 974 MB (39 MB Used)
 System uptime         : 21 days, 3 hour 21 min
 Load average          : 0.00, 0.26, 0.40
 OS                    : Debian GNU/Linux 11
 Arch                  : x86_64 (64 Bit)
 Kernel                : 5.10.0-9-cloud-amd64
 TCP CC                : bbr
 Virtualization        : KVM
 Organization          : AS48024 NEROCLOUD LTD
 Location              : Des Moines / US
 Region                : Washington
----------------------------------------------------------------------
 I/O Speed(1st run)    : 24.0 MB/s
 I/O Speed(2nd run)    : 55.7 MB/s
 I/O Speed(3rd run)    : 42.9 MB/s
 Average I/O speed     : 40.9 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    9025.49 Mbps      7005.83 Mbps        0.24 ms
 Shanghai   CT    80.35 Mbps        1741.48 Mbps        133.16 ms
 Shanghai   CU    79.92 Mbps        1940.15 Mbps        128.93 ms
 Guangzhou  CT    44.46 Mbps        1839.24 Mbps        156.63 ms
 Shenzhen   CU    83.84 Mbps        2045.13 Mbps        160.21 ms
 Hongkong   CN    71.22 Mbps        1022.63 Mbps        159.08 ms
 Tokyo      JP    550.47 Mbps       46.57 Mbps          82.57 ms
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/18/2681099a8988a.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/18/e06ba40c96914.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/18/9da64b03b3bc7.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/18/bb73e5a1c97c9.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/18/d2c6cf9000d54.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/18/7b1232c309482.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/18/50d79bed77de3.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;移动去程cmi，回程9929，联通电信全程9929，10Gbps带宽。缺点是80、443、8080端口无法使用，并且国内方向上传限速100Mbps。但是这种配置、线路和稳定性，再加上流媒体全解锁，还是超值的。&lt;/p&gt;
</content:encoded></item><item><title>Oracle东京免费ARM实例测评</title><link>https://yushum.com/posts/oracle%E5%85%8D%E8%B4%B9arm%E5%AE%9E%E4%BE%8B%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/oracle%E5%85%8D%E8%B4%B9arm%E5%AE%9E%E4%BE%8B%E6%B5%8B%E8%AF%84/</guid><pubDate>Fri, 17 Dec 2021 10:04:21 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;Oracle（也就是甲骨文）已经烧了两年的钱，甚至免费提供配置达到4c24g的ARM VPS。但是因为不甚明朗的封号策略，大家都不敢将其用作主力机。现在拿出一台东京的ARM实例做一次测试。&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-03                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Fri 17 Dec 2021 10:26:53 AM JST

ARM compatibility is considered *experimental*

Basic System Information:
---------------------------------
Processor  : Neoverse-N1
CPU cores  : 4 @ ??? MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 23.3 GiB
Swap       : 976.0 MiB
Disk       : 96.9 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 48.54 MB/s   (12.1k) | 80.00 MB/s    (1.2k)
Write      | 48.51 MB/s   (12.1k) | 82.38 MB/s    (1.2k)
Total      | 97.06 MB/s   (24.2k) | 162.39 MB/s   (2.5k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 80.44 MB/s     (157) | 78.25 MB/s      (76)
Write      | 87.32 MB/s     (170) | 87.31 MB/s      (85)
Total      | 167.77 MB/s    (327) | 165.57 MB/s    (161)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 708 Mbits/sec   | 512 Mbits/sec
Online.net      | Paris, FR (10G)           | 819 Mbits/sec   | 666 Mbits/sec
WorldStream     | The Netherlands (10G)     | 665 Mbits/sec   | 381 Mbits/sec
WebHorizon      | Singapore (1G)            | busy            | busy
Clouvider       | NYC, NY, US (10G)         | 873 Mbits/sec   | 727 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 870 Mbits/sec   | 843 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 932 Mbits/sec   | 708 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 568 Mbits/sec   | 440 Mbits/sec

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 703 Mbits/sec   | 553 Mbits/sec
Online.net      | Paris, FR (10G)           | 805 Mbits/sec   | busy
WorldStream     | The Netherlands (10G)     | 651 Mbits/sec   | 497 Mbits/sec
WebHorizon      | Singapore (1G)            | busy            | busy
Clouvider       | NYC, NY, US (10G)         | 855 Mbits/sec   | 731 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 912 Mbits/sec   | 879 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 877
Multi Core      | 3384
Full Test       | https://browser.geekbench.com/v5/cpu/11649858
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/17/6798af146f50c.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/17/0e4219957950e.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/17/6de4bcc019510.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/17/18a6ed30fd157.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/17/36c78ae5687b6.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/17/5cffdf6a0cca7.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/17/c8ac652394285.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;无论是配置还是网络，都可以说是无可挑剔。唯一的缺点可能就是国人太多，IPv4都被标记为中国了。我已经找不到购买其他VPS的理由了。&lt;/p&gt;
</content:encoded></item><item><title>腾讯云轻量香港24元/月VPS评测</title><link>https://yushum.com/posts/%E8%85%BE%E8%AE%AF%E4%BA%91%E8%BD%BB%E9%87%8F%E9%A6%99%E6%B8%AF24%E5%85%83-%E6%9C%88vps%E8%AF%84%E6%B5%8B/</link><guid isPermaLink="true">https://yushum.com/posts/%E8%85%BE%E8%AE%AF%E4%BA%91%E8%BD%BB%E9%87%8F%E9%A6%99%E6%B8%AF24%E5%85%83-%E6%9C%88vps%E8%AF%84%E6%B5%8B/</guid><pubDate>Thu, 16 Dec 2021 08:38:09 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;之前用各种优惠券以差不多半价购买了一年的香港轻量，一直在吃灰，跑跑测试看还有没有续费的价值。&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://cloud.tencent.com/act/cps/redirect?redirect=1556&amp;amp;cps_key=2ff35ef8d28b63952dce93ca1800976f&amp;amp;from=console&quot;&gt;【腾讯云】1核2G5M轻量应用服务器50元首年，高性价比，助您轻松上云&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-03                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

2021年 12月 16日 星期四 08:09:49 CST

Basic System Information:
---------------------------------
Processor  : AMD EPYC 7K62 48-Core Processor
CPU cores  : 1 @ 2595.124 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 978.7 MiB
Swap       : 975.0 MiB
Disk       : 23.5 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 10.72 MB/s    (2.6k) | 131.70 MB/s   (2.0k)
Write      | 10.75 MB/s    (2.6k) | 132.40 MB/s   (2.0k)
Total      | 21.47 MB/s    (5.3k) | 264.10 MB/s   (4.1k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 123.25 MB/s    (240) | 121.66 MB/s    (118)
Write      | 129.80 MB/s    (253) | 129.77 MB/s    (126)
Total      | 253.06 MB/s    (493) | 251.44 MB/s    (244)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 28.6 Mbits/sec  | 94.1 Mbits/sec
Online.net      | Paris, FR (10G)           | 29.9 Mbits/sec  | 108 Mbits/sec
WorldStream     | The Netherlands (10G)     | 25.6 Mbits/sec  | 109 Mbits/sec
WebHorizon      | Singapore (1G)            | busy            | busy
Clouvider       | NYC, NY, US (10G)         | 30.6 Mbits/sec  | 98.8 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 501 Kbits/sec   | 97.3 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 34.2 Mbits/sec  | 101 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | busy            | 71.3 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 821
Multi Core      | 818
Full Test       | https://browser.geekbench.com/v5/cpu/11631481
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;----------------------------------------------------------------------
 CPU Model             : AMD EPYC 7K62 48-Core Processor
 CPU Cores             : 1
 CPU Frequency         : 2595.124 MHz
 CPU Cache             : 512 KB
 Total Disk            : 24.0 GB (1.7 GB Used)
 Total Mem             : 978 MB (119 MB Used)
 Total Swap            : 974 MB (39 MB Used)
 System uptime         : 125 days, 10 hour 1 min
 Load average          : 0.04, 0.17, 0.10
 OS                    : Debian GNU/Linux 10
 Arch                  : x86_64 (64 Bit)
 Kernel                : 5.10.0-0.bpo.8-cloud-amd64
 TCP CC                : bbr
 Virtualization        : KVM
 Organization          : AS132203 Tencent Building, Kejizhongyi Avenue
 Location              : Hong Kong / HK
 Region                : Central and Western
----------------------------------------------------------------------
 I/O Speed(1st run)    : 147 MB/s
 I/O Speed(2nd run)    : 132 MB/s
 I/O Speed(3rd run)    : 132 MB/s
 Average I/O speed     : 137.0 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    28.79 Mbps        113.21 Mbps         2.22 ms
 Shanghai   CT    31.38 Mbps        121.48 Mbps         28.01 ms
 Shanghai   CU    20.47 Mbps        95.04 Mbps          32.72 ms
 Guangzhou  CT    30.64 Mbps        110.14 Mbps         8.08 ms
 Hongkong   CN    31.13 Mbps        98.72 Mbps          2.84 ms
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/16/ce4a8d0e9b618.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/16/3aadc1d136fc8.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/16/aadca695db1d5.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/16/b352b994f0ea1.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.229.173.1 (221.229.173.1), 30 hops max, 32 byte packets
 1  9.176.202.129  1.09 ms  *  美国, ibm.com
    9.176.202.129  1.08 ms  *  美国, ibm.com
    9.176.202.129  0.96 ms  *  美国, ibm.com
 2  9.176.248.24  1.39 ms  *  美国, ibm.com
    9.176.248.24  1.79 ms  *  美国, ibm.com
    *
 3  *
    *
    *
 4  10.200.59.181  1.49 ms  *  局域网
    10.200.59.181  1.54 ms  *  局域网
    10.200.59.181  1.50 ms  *  局域网
 5  221.229.173.1  38.44 ms  AS4134  中国, 江苏, 徐州, chinatelecom.com.cn, 电信
    221.229.173.1  38.19 ms  AS4134  中国, 江苏, 徐州, chinatelecom.com.cn, 电信
    221.229.173.1  38.18 ms  AS4134  中国, 江苏, 徐州, chinatelecom.com.cn, 电信
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 112.85.231.1 (112.85.231.1), 30 hops max, 32 byte packets
 1  9.176.202.129  1.15 ms  *  美国, ibm.com
    9.176.202.129  0.92 ms  *  美国, ibm.com
    9.176.202.129  1.48 ms  *  美国, ibm.com
 2  *
    9.176.252.88  1.00 ms  *  美国, ibm.com
    *
 3  *
    *
    *
 4  10.200.59.145  0.86 ms  *  局域网
    10.200.59.145  0.79 ms  *  局域网
    10.200.59.145  0.80 ms  *  局域网
 5  112.85.231.1  39.44 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
    112.85.231.1  38.89 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
    112.85.231.1  38.73 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 120.195.6.12 (120.195.6.12), 30 hops max, 32 byte packets
 1  9.176.202.129  1.11 ms  *  美国, ibm.com
    9.176.202.129  1.11 ms  *  美国, ibm.com
    9.176.202.129  0.89 ms  *  美国, ibm.com
 2  9.176.252.88  0.81 ms  *  美国, ibm.com
    *
    9.176.252.88  1.08 ms  *  美国, ibm.com
 3  *
    10.196.76.141  0.77 ms  *  局域网
    10.196.76.141  0.74 ms  *  局域网
 4  10.196.94.145  1.57 ms  *  局域网
    10.196.94.145  1.49 ms  *  局域网
    10.196.94.145  1.58 ms  *  局域网
 5  11.50.201.53  1.54 ms  AS749  美国, defense.gov
    11.50.201.53  1.37 ms  AS749  美国, defense.gov
    11.50.201.53  1.46 ms  AS749  美国, defense.gov
 6  11.50.201.55  0.97 ms  AS749  美国, defense.gov
    11.50.201.55  1.33 ms  AS749  美国, defense.gov
    11.50.201.55  1.01 ms  AS749  美国, defense.gov
 7  223.119.21.217  4.73 ms  AS58453  中国, 香港, chinamobile.com, 移动
    223.119.21.217  3.97 ms  AS58453  中国, 香港, chinamobile.com, 移动
    223.119.21.217  3.56 ms  AS58453  中国, 香港, chinamobile.com, 移动
 8  223.120.2.53  2.79 ms  AS58453  中国, 香港, chinamobile.com, 移动
    223.120.2.53  3.10 ms  AS58453  中国, 香港, chinamobile.com, 移动
    223.120.2.53  5.12 ms  AS58453  中国, 香港, chinamobile.com, 移动
 9  223.120.3.186  27.93 ms  AS58453  中国, 上海, chinamobile.com, 移动
    223.120.3.186  27.95 ms  AS58453  中国, 上海, chinamobile.com, 移动
    223.120.3.186  28.05 ms  AS58453  中国, 上海, chinamobile.com, 移动
10  221.183.89.170  29.61 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.170  29.62 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.170  29.62 ms  AS9808  中国, 上海, chinamobile.com, 移动
11  221.183.89.33  28.76 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.33  28.76 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.33  28.67 ms  AS9808  中国, 上海, chinamobile.com, 移动
12  221.183.89.10  31.09 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.10  29.41 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.10  29.44 ms  AS9808  中国, 上海, chinamobile.com, 移动
13  221.183.40.58  36.56 ms  AS9808  中国, 江苏, 南京, chinamobile.com, 移动
    221.183.40.58  36.75 ms  AS9808  中国, 江苏, 南京, chinamobile.com, 移动
    221.183.40.58  37.59 ms  AS9808  中国, 江苏, 南京, chinamobile.com, 移动
14  *
    *
    *
15  122.169.195.120.static.js.chinamobile.com (120.195.169.122)  42.42 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
    122.169.195.120.static.js.chinamobile.com (120.195.169.122)  42.29 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
    122.169.195.120.static.js.chinamobile.com (120.195.169.122)  42.41 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
16  120.195.42.130  48.55 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
    120.195.42.130  48.37 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
    120.195.42.130  48.38 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
17  *
    *
    *
18  *
    *
    *
19  *
    *
    *
20  *
    *
    *
21  *
    *
    *
22  *
    *
    *
23  120.195.6.12  46.62 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
    120.195.6.12  46.38 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
    120.195.6.12  46.43 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;测试结果还是很出乎预料的，无论是延迟还是带宽腾讯云无愧于良心云的称号，建站或是其他用途都很适合，值得购买。&lt;/p&gt;
</content:encoded></item><item><title>Peer2Profit--闲置VPS/服务器流量挂机</title><link>https://yushum.com/posts/peer2profit-%E9%97%B2%E7%BD%AEvps-%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%B5%81%E9%87%8F%E6%8C%82%E6%9C%BA/</link><guid isPermaLink="true">https://yushum.com/posts/peer2profit-%E9%97%B2%E7%BD%AEvps-%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%B5%81%E9%87%8F%E6%8C%82%E6%9C%BA/</guid><pubDate>Wed, 15 Dec 2021 08:37:35 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;peer2profit是来自俄罗斯的流量变现平台，通过共享网络来给予货币奖励。 &lt;a href=&quot;https://peer2profit.com/r/1629381167611e622f7efc4&quot;&gt;点击进入官网&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;推荐使用的VPS/服务器：&lt;/h3&gt;
&lt;p&gt;建议使用俄罗斯的网络。我使用的VPS中收入较多的是这两台：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://yushum.com/ruvds%E6%B5%8B%E8%AF%84/&quot;&gt;RuVDS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://yushum.com/archives/395&quot;&gt;HostingViet&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;效果如下：&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://iknow-pic.cdn.bcebos.com/78310a55b319ebc4ffdfe1089026cffc1f1716ff&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;安装使用&lt;/h2&gt;
&lt;p&gt;首先到官网注册一个账号。&lt;a href=&quot;https://p2pr.me/1629381167611e622f7efc4&quot;&gt;点击进入官网&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;注册好之后，下载官方客户端，可以在&lt;a href=&quot;https://dashboard.peer2profit.app/download&quot;&gt;这个页面&lt;/a&gt;看到具体支持。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/15/eac2c4eb0c056.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;也可以直接将二进制文件下载到服务器上：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;wget https://cdn.jsdelivr.net/gh/yushum/peer2profit@main/p2pclient &amp;amp;&amp;amp; chmod +x ./p2pclient &amp;amp;&amp;amp; mv ./p2pclient /usr/local/bin
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后就可以开始运行赚钱了：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;p2pclient -l &amp;lt;你的邮箱&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;使用除了俄罗斯以外的服务器收入少的可怜，因此建议使用便宜的俄罗斯服务器，差不多可以回本。&lt;/p&gt;
</content:encoded></item><item><title>RuVDS测评</title><link>https://yushum.com/posts/ruvds%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/ruvds%E6%B5%8B%E8%AF%84/</guid><pubDate>Tue, 14 Dec 2021 09:51:43 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;RuVDS也就是loc里经常被人提起出售的三毛、五毛的商家。现在有活动使用&lt;code&gt;cheap30&lt;/code&gt;促销代码可以以624RUB（也就是54元）的价格购买一年，活动截止今年年底，并且明年将会涨价。&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://ruvds.com/en-rub/pr6060&quot;&gt;点击进入官网&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-03                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Tue Dec 14 03:41:34 MSK 2021

Basic System Information:
---------------------------------
Processor  : Intel(R) Xeon(R) Gold 6226R CPU @ 2.90GHz
CPU cores  : 1 @ 2893.198 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 395.7 MiB
Swap       : 2.0 GiB
Disk       : 9.7 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 58.96 MB/s   (14.7k) | 683.99 MB/s  (10.6k)
Write      | 59.07 MB/s   (14.7k) | 687.59 MB/s  (10.7k)
Total      | 118.03 MB/s  (29.5k) | 1.37 GB/s    (21.4k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 1.96 GB/s     (3.8k) | 2.22 GB/s     (2.1k)
Write      | 2.07 GB/s     (4.0k) | 2.37 GB/s     (2.3k)
Total      | 4.04 GB/s     (7.8k) | 4.59 GB/s     (4.4k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 95.6 Mbits/sec  | 44.9 Mbits/sec
Online.net      | Paris, FR (10G)           | 94.8 Mbits/sec  | 66.5 Mbits/sec
WorldStream     | The Netherlands (10G)     | 95.2 Mbits/sec  | 62.9 Mbits/sec
WebHorizon      | Singapore (1G)            | 86.0 Mbits/sec  | 75.2 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 92.0 Mbits/sec  | 28.4 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 88.5 Mbits/sec  | 24.0 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 88.0 Mbits/sec  | 40.1 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 83.1 Mbits/sec  | 24.1 Mbits/sec


Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value                        
                |                              
Single Core     | 815                           
Multi Core      | 779                           
Full Test       | https://browser.geekbench.com/v5/cpu/11393785
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;----------------------------------------------------------------------
 CPU Model             : Intel(R) Xeon(R) Gold 6226R CPU @ 2.90GHz
 CPU Cores             : 1
 CPU Frequency         : 2893.198 MHz
 CPU Cache             : 22528 KB
 Total Disk            : 9.8 GB (3.0 GB Used)
 Total Mem             : 395 MB (132 MB Used)
 Total Swap            : 2047 MB (62 MB Used)
 System uptime         : 10 days, 11 hour 37 min
 Load average          : 0.14, 0.12, 0.11
 OS                    : Debian GNU/Linux 11
 Arch                  : x86_64 (64 Bit)
 Kernel                : 5.10.0-9-cloud-amd64
 TCP CC                : bbr
 Virtualization        : Hyper-V
 Organization          : AS48347 JSC Mediasoft ekspert
 Location              : Moscow / RU
 Region                : Moscow
----------------------------------------------------------------------
 I/O Speed(1st run)    : 765 MB/s
 I/O Speed(2nd run)    : 997 MB/s
 I/O Speed(3rd run)    : 1.1 GB/s
 Average I/O speed     : 962.8 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    98.63 Mbps        674.25 Mbps         1.33 ms
 Shanghai   CT    47.96 Mbps        154.60 Mbps         230.61 ms
 Shanghai   CU    85.29 Mbps        673.59 Mbps         156.47 ms
 Guangzhou  CT    93.16 Mbps        180.29 Mbps         239.73 ms
 Hongkong   CN    92.33 Mbps        332.87 Mbps         228.24 ms
 Tokyo      JP    93.24 Mbps        333.06 Mbps         274.25 ms
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/14/7912becb93406.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/14/723818e0ec796.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/14/75733535da468.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/14/b185ce7c62381.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.229.173.1 (221.229.173.1), 30 hops max, 32 byte packets
 1  45.142.36.1  5.38 ms  AS48347  Russian Federation, Moscow, mylir.ru
    45.142.36.1  1.72 ms  AS48347  Russian Federation, Moscow, mylir.ru
    45.142.36.1  2.72 ms  AS48347  Russian Federation, Moscow, mylir.ru
 2  vl505-gw1.mtw.ru (93.95.100.2)  0.76 ms  AS48347  Russian Federation, Moscow, mtw.ru
    vl505-gw1.mtw.ru (93.95.100.2)  0.98 ms  AS48347  Russian Federation, Moscow, mtw.ru
    vl505-gw1.mtw.ru (93.95.100.2)  3.29 ms  AS48347  Russian Federation, Moscow, mtw.ru
 3  mskn17ra.transtelecom.net (188.43.247.222)  5.47 ms  AS20485  Russian Federation, Moscow, ttk.ru
    mskn17ra.transtelecom.net (188.43.247.222)  2.85 ms  AS20485  Russian Federation, Moscow, ttk.ru
    mskn17ra.transtelecom.net (188.43.247.222)  3.31 ms  AS20485  Russian Federation, Moscow, ttk.ru
 4  *
    *
    *
 5  *
    *
    *
 6  202.97.58.61  314.95 ms  AS4134  China, Shanghai, ChinaTelecom
    202.97.58.61  314.54 ms  AS4134  China, Shanghai, ChinaTelecom
    202.97.58.61  314.73 ms  AS4134  China, Shanghai, ChinaTelecom
 7  202.97.39.178  287.97 ms  AS4134  China, Anhui, Hefei, ChinaTelecom
    *
    *
 8  *
    *
    *
 9  202.97.74.134  281.15 ms  *  China, Jiangsu, Wuxi, ChinaTelecom
    202.97.74.134  281.79 ms  *  China, Jiangsu, Wuxi, ChinaTelecom
    202.97.74.134  281.42 ms  *  China, Jiangsu, Wuxi, ChinaTelecom
10  221.229.192.182  306.06 ms  AS4134  China, Jiangsu, Xuzhou, ChinaTelecom
    221.229.192.182  291.77 ms  AS4134  China, Jiangsu, Xuzhou, ChinaTelecom
    221.229.192.182  291.87 ms  AS4134  China, Jiangsu, Xuzhou, ChinaTelecom
11  *
    *
    *
12  *
    *
    *
13  *
    *
    *
14  *
    *
    *
15  *
    221.229.173.1  296.39 ms  AS4134  China, Jiangsu, Xuzhou, ChinaTelecom
    221.229.173.1  296.85 ms  AS4134  China, Jiangsu, Xuzhou, ChinaTelecom
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 112.85.231.1 (112.85.231.1), 30 hops max, 32 byte packets
 1  45.142.36.1  8.61 ms  AS48347  Russian Federation, Moscow, mylir.ru
    45.142.36.1  9.53 ms  AS48347  Russian Federation, Moscow, mylir.ru
    45.142.36.1  11.42 ms  AS48347  Russian Federation, Moscow, mylir.ru
 2  vl505-gw1.mtw.ru (93.95.100.2)  0.88 ms  AS48347  Russian Federation, Moscow, mtw.ru
    vl505-gw1.mtw.ru (93.95.100.2)  1.04 ms  AS48347  Russian Federation, Moscow, mtw.ru
    vl505-gw1.mtw.ru (93.95.100.2)  2.25 ms  AS48347  Russian Federation, Moscow, mtw.ru
 3  149.11.82.57  21.94 ms  AS174  Sweden, Stockholm County, Stockholm, cogentco.com
    149.11.82.57  22.09 ms  AS174  Sweden, Stockholm County, Stockholm, cogentco.com
    149.11.82.57  22.19 ms  AS174  Sweden, Stockholm County, Stockholm, cogentco.com
 4  be2759.ccr21.sto03.atlas.cogentco.com (154.54.57.97)  23.00 ms  AS174  Sweden, Stockholm County, Stockholm, cogentco.com
    be2759.ccr21.sto03.atlas.cogentco.com (154.54.57.97)  22.89 ms  AS174  Sweden, Stockholm County, Stockholm, cogentco.com
    be2759.ccr21.sto03.atlas.cogentco.com (154.54.57.97)  23.26 ms  AS174  Sweden, Stockholm County, Stockholm, cogentco.com
 5  be2555.rcr21.cph01.atlas.cogentco.com (154.54.61.237)  32.33 ms  AS174  Denmark, Capital Region of Denmark, Copenhagen, cogentco.com
    be2555.rcr21.cph01.atlas.cogentco.com (154.54.61.237)  32.39 ms  AS174  Denmark, Capital Region of Denmark, Copenhagen, cogentco.com
    be2555.rcr21.cph01.atlas.cogentco.com (154.54.61.237)  32.61 ms  AS174  Denmark, Capital Region of Denmark, Copenhagen, cogentco.com
 6  be2504.ccr42.ham01.atlas.cogentco.com (154.54.61.229)  37.34 ms  AS174  Germany, Hamburg, cogentco.com
    be2504.ccr42.ham01.atlas.cogentco.com (154.54.61.229)  38.26 ms  AS174  Germany, Hamburg, cogentco.com
    be2504.ccr42.ham01.atlas.cogentco.com (154.54.61.229)  37.89 ms  AS174  Germany, Hamburg, cogentco.com
 7  be2798.ccr42.fra03.atlas.cogentco.com (154.54.58.229)  45.90 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
    be2798.ccr42.fra03.atlas.cogentco.com (154.54.58.229)  46.05 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
    be2798.ccr42.fra03.atlas.cogentco.com (154.54.58.229)  46.00 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 8  be2846.rcr22.fra06.atlas.cogentco.com (154.54.37.30)  46.41 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
    be2846.rcr22.fra06.atlas.cogentco.com (154.54.37.30)  47.06 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
    be2846.rcr22.fra06.atlas.cogentco.com (154.54.37.30)  47.51 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
 9  be3460.nr51.b037206-0.fra06.atlas.cogentco.com (154.25.12.77)  46.80 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
    be3460.nr51.b037206-0.fra06.atlas.cogentco.com (154.25.12.77)  46.24 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
    be3460.nr51.b037206-0.fra06.atlas.cogentco.com (154.25.12.77)  46.56 ms  AS174  Germany, Hesse, Frankfurt, cogentco.com
10  *
    *
    *
11  219.158.11.165  179.65 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
    219.158.11.165  184.84 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
    219.158.11.165  181.78 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
12  219.158.96.206  177.82 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
    219.158.96.206  175.01 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
    219.158.96.206  172.77 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
13  219.158.8.117  173.49 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
    219.158.8.117  178.75 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
    219.158.8.117  176.21 ms  AS4837  China, Guangdong, Guangzhou, ChinaUnicom
14  219.158.114.214  174.89 ms  AS4837  China, Jiangsu, Nanjing, ChinaUnicom
    219.158.114.214  174.43 ms  AS4837  China, Jiangsu, Nanjing, ChinaUnicom
    219.158.114.214  174.38 ms  AS4837  China, Jiangsu, Nanjing, ChinaUnicom
15  112.85.230.6  192.92 ms  AS4837  China, Jiangsu, Xuzhou, ChinaUnicom
    112.85.230.6  192.48 ms  AS4837  China, Jiangsu, Xuzhou, ChinaUnicom
    112.85.230.6  192.39 ms  AS4837  China, Jiangsu, Xuzhou, ChinaUnicom
16  112.85.231.1  193.24 ms  AS4837  China, Jiangsu, Xuzhou, ChinaUnicom
    112.85.231.1  193.42 ms  AS4837  China, Jiangsu, Xuzhou, ChinaUnicom
    112.85.231.1  194.18 ms  AS4837  China, Jiangsu, Xuzhou, ChinaUnicom
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 120.195.6.1 (120.195.6.1), 30 hops max, 32 byte packets
 1  45.142.36.1  5.54 ms  AS48347  Russian Federation, Moscow, mylir.ru
    45.142.36.1  4.39 ms  AS48347  Russian Federation, Moscow, mylir.ru
    45.142.36.1  5.85 ms  AS48347  Russian Federation, Moscow, mylir.ru
 2  vl505-gw1.mtw.ru (93.95.100.2)  1.31 ms  AS48347  Russian Federation, Moscow, mtw.ru
    vl505-gw1.mtw.ru (93.95.100.2)  0.93 ms  AS48347  Russian Federation, Moscow, mtw.ru
    vl505-gw1.mtw.ru (93.95.100.2)  1.26 ms  AS48347  Russian Federation, Moscow, mtw.ru
 3  149.11.82.57  21.95 ms  AS174  Sweden, Stockholm County, Stockholm, cogentco.com
    149.11.82.57  22.10 ms  AS174  Sweden, Stockholm County, Stockholm, cogentco.com
    149.11.82.57  23.53 ms  AS174  Sweden, Stockholm County, Stockholm, cogentco.com
 4  be2760.ccr22.sto03.atlas.cogentco.com (154.54.57.101)  23.32 ms  AS174  Sweden, Stockholm County, Stockholm, cogentco.com
    be2760.ccr22.sto03.atlas.cogentco.com (154.54.57.101)  22.93 ms  AS174  Sweden, Stockholm County, Stockholm, cogentco.com
    be2760.ccr22.sto03.atlas.cogentco.com (154.54.57.101)  22.81 ms  AS174  Sweden, Stockholm County, Stockholm, cogentco.com
 5  be2557.rcr21.cph01.atlas.cogentco.com (154.54.61.241)  32.59 ms  AS174  Denmark, Capital Region of Denmark, Copenhagen, cogentco.com
    be2557.rcr21.cph01.atlas.cogentco.com (154.54.61.241)  32.96 ms  AS174  Denmark, Capital Region of Denmark, Copenhagen, cogentco.com
    be2557.rcr21.cph01.atlas.cogentco.com (154.54.61.241)  32.72 ms  AS174  Denmark, Capital Region of Denmark, Copenhagen, cogentco.com
 6  be2504.ccr42.ham01.atlas.cogentco.com (154.54.61.229)  37.85 ms  AS174  Germany, Hamburg, cogentco.com
    be2504.ccr42.ham01.atlas.cogentco.com (154.54.61.229)  37.21 ms  AS174  Germany, Hamburg, cogentco.com
    be2504.ccr42.ham01.atlas.cogentco.com (154.54.61.229)  37.65 ms  AS174  Germany, Hamburg, cogentco.com
 7  be2816.ccr42.ams03.atlas.cogentco.com (154.54.38.209)  45.17 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
    be2816.ccr42.ams03.atlas.cogentco.com (154.54.38.209)  45.07 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
    be2816.ccr42.ams03.atlas.cogentco.com (154.54.38.209)  45.28 ms  AS174  Netherlands, North Holland, Amsterdam, cogentco.com
 8  be12488.ccr42.lon13.atlas.cogentco.com (130.117.51.41)  52.11 ms  AS174  United Kingdom, London, cogentco.com
    be12488.ccr42.lon13.atlas.cogentco.com (130.117.51.41)  52.52 ms  AS174  United Kingdom, London, cogentco.com
    be12488.ccr42.lon13.atlas.cogentco.com (130.117.51.41)  52.39 ms  AS174  United Kingdom, London, cogentco.com
 9  be3488.ccr52.lhr01.atlas.cogentco.com (154.54.60.14)  53.18 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
    be3488.ccr52.lhr01.atlas.cogentco.com (154.54.60.14)  53.10 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
    be3488.ccr52.lhr01.atlas.cogentco.com (154.54.60.14)  53.05 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
10  be3672.agr21.lhr01.atlas.cogentco.com (130.117.48.146)  53.87 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
    be3672.agr21.lhr01.atlas.cogentco.com (130.117.48.146)  53.17 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
    be3672.agr21.lhr01.atlas.cogentco.com (130.117.48.146)  53.30 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
11  149.14.199.194  53.12 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
    149.14.199.194  53.06 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
    149.14.199.194  53.10 ms  AS174  United Kingdom, Berkshire County, Slough, cogentco.com
12  223.120.10.225  54.59 ms  AS58453  Europe Regions, ChinaMobile
    223.120.10.225  54.98 ms  AS58453  Europe Regions, ChinaMobile
    223.120.10.225  54.60 ms  AS58453  Europe Regions, ChinaMobile
13  223.120.16.106  295.59 ms  AS58453  China, ChinaMobile
    223.120.16.106  295.49 ms  AS58453  China, ChinaMobile
    223.120.16.106  295.46 ms  AS58453  China, ChinaMobile
14  221.183.89.174  295.30 ms  AS9808  China, Shanghai, ChinaMobile
    221.183.89.174  295.48 ms  AS9808  China, Shanghai, ChinaMobile
    221.183.89.174  295.47 ms  AS9808  China, Shanghai, ChinaMobile
15  221.183.89.69  295.98 ms  AS9808  China, Shanghai, ChinaMobile
    221.183.89.69  295.86 ms  AS9808  China, Shanghai, ChinaMobile
    221.183.89.69  296.10 ms  AS9808  China, Shanghai, ChinaMobile
16  221.183.89.50  297.74 ms  AS9808  China, Shanghai, ChinaMobile
    221.183.89.50  297.44 ms  AS9808  China, Shanghai, ChinaMobile
    221.183.89.50  297.25 ms  AS9808  China, Shanghai, ChinaMobile
17  221.183.40.138  303.74 ms  AS9808  China, Jiangsu, Nanjing, ChinaMobile
    221.183.40.138  303.90 ms  AS9808  China, Jiangsu, Nanjing, ChinaMobile
    221.183.40.138  303.84 ms  AS9808  China, Jiangsu, Nanjing, ChinaMobile
18  *
    *
    *
19  18.169.195.120.static.js.chinamobile.com (120.195.169.18)  323.98 ms  AS56046  China, Jiangsu, Xuzhou, ChinaMobile
    18.169.195.120.static.js.chinamobile.com (120.195.169.18)  322.39 ms  AS56046  China, Jiangsu, Xuzhou, ChinaMobile
    18.169.195.120.static.js.chinamobile.com (120.195.169.18)  322.70 ms  AS56046  China, Jiangsu, Xuzhou, ChinaMobile
20  120.195.42.126  333.68 ms  AS56046  China, Jiangsu, Xuzhou, ChinaMobile
    120.195.42.126  351.98 ms  AS56046  China, Jiangsu, Xuzhou, ChinaMobile
    120.195.42.126  356.04 ms  AS56046  China, Jiangsu, Xuzhou, ChinaMobile
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;一分价钱一分货，除了硬盘IO，别的表现都很一般，优势是无限流量。&lt;/p&gt;
</content:encoded></item><item><title>Bandwagon HOST软银VPS测评</title><link>https://yushum.com/posts/bandwagon-host%E8%BD%AF%E9%93%B6vps%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/bandwagon-host%E8%BD%AF%E9%93%B6vps%E6%B5%8B%E8%AF%84/</guid><pubDate>Mon, 13 Dec 2021 10:13:56 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;Bandwagon HOST一般被叫做搬瓦工，成立时间也很久了，优点就是稳定。从多年前的3.99刀到现在的100刀，瓦工变得越来越“高端”了，目标群体显然不是以前的人了。去年购买了&lt;code&gt;SPECIAL 10G KVM PROMO V5 - JAPAN LIMITED EDITION&lt;/code&gt;现在拿出来测试一下。目前此款无货，感兴趣的可以蹲守一下。&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://bwh81.net/aff.php?aff=6989&quot;&gt;&lt;em&gt;&lt;strong&gt;点击进入官网&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-03                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

2021年 12月 13日 星期一 09:33:12 CST

Basic System Information:
---------------------------------
Processor  : QEMU Virtual CPU version (cpu64-rhel6)
CPU cores  : 1 @ 2699.998 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 490.8 MiB
Swap       : 528.0 MiB
Disk       : 9.3 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 37.78 MB/s    (9.4k) | 414.59 MB/s   (6.4k)
Write      | 37.88 MB/s    (9.4k) | 416.78 MB/s   (6.5k)
Total      | 75.67 MB/s   (18.9k) | 831.37 MB/s  (12.9k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 894.03 MB/s   (1.7k) | 1.08 GB/s     (1.0k)
Write      | 941.54 MB/s   (1.8k) | 1.15 GB/s     (1.1k)
Total      | 1.83 GB/s     (3.5k) | 2.24 GB/s     (2.1k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 646 Mbits/sec   | 9.90 Mbits/sec
Online.net      | Paris, FR (10G)           | 502 Mbits/sec   | 2.09 Mbits/sec
WorldStream     | The Netherlands (10G)     | 609 Mbits/sec   | 153 Mbits/sec
WebHorizon      | Singapore (1G)            | 269 Mbits/sec   | 288 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 990 Mbits/sec   | 5.07 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 316 Mbits/sec   | 19.4 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 1.41 Gbits/sec  | 8.81 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 158 Mbits/sec   | 172 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 477
Multi Core      | 482
Full Test       | https://browser.geekbench.com/v5/cpu/11574478
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;----------------------------------------------------------------------
 CPU Model             : QEMU Virtual CPU version (cpu64-rhel6)
 CPU Cores             : 1
 CPU Frequency         : 2699.998 MHz
 CPU Cache             : 16384 KB
 Total Disk            : 9.3 GB (2.2 GB Used)
 Total Mem             : 490 MB (83 MB Used)
 Total Swap            : 527 MB (58 MB Used)
 System uptime         : 122 days, 11 hour 25 min
 Load average          : 0.10, 0.27, 0.21
 OS                    : Debian GNU/Linux 11
 Arch                  : x86_64 (64 Bit)
 Kernel                : 5.10.0-8-cloud-amd64
 TCP CC                : bbr
 Virtualization        : KVM
 Organization          : AS25820 IT7 Networks Inc
 Location              : Osaka / JP
 Region                : Ōsaka
----------------------------------------------------------------------
 I/O Speed(1st run)    : 564 MB/s
 I/O Speed(2nd run)    : 548 MB/s
 I/O Speed(3rd run)    : 494 MB/s
 Average I/O speed     : 535.3 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    292.17 Mbps       1151.94 Mbps        119.40 ms
 Shanghai   CT    152.71 Mbps       1309.07 Mbps        185.49 ms
 Shanghai   CU    79.59 Mbps        3.04 Mbps           185.91 ms
 Hongkong   CN    218.57 Mbps       23.72 Mbps          187.51 ms
 Tokyo      JP    226.20 Mbps       10.41 Mbps          121.98 ms
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/13/a2c341f168027.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/14/f9eb369368dd5.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/14/5592073e574dc.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/14/9f84e5de47798.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.229.173.1 (221.229.173.1), 30 hops max, 32 byte packets
 1  172.22.31.200  13.14 ms  *  局域网
    172.22.31.200  18.28 ms  *  局域网
    172.22.31.200  20.02 ms  *  局域网
 2  jp-os1-sb-2-1.it7.net (185.248.84.244)  2.82 ms  AS4785  日本, 大阪府, 大阪, xtom.com
    jp-os1-sb-2-1.it7.net (185.248.84.244)  6.78 ms  AS4785  日本, 大阪府, 大阪, xtom.com
    jp-os1-sb-2-1.it7.net (185.248.84.244)  72.03 ms  AS4785  日本, 大阪府, 大阪, xtom.com
 3  211.15.42.254  1.14 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
    211.15.42.254  0.35 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
    211.15.42.254  0.45 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
 4  211.15.42.253  110.51 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
    211.15.42.253  110.44 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
    211.15.42.253  110.49 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
 5  *
    *
    *
 6  *
    *
    *
 7  *
    *
    *
 8  softbank221111202050.bbtec.net (221.111.202.50)  153.06 ms  AS17676  中国, 上海, bbtec.net
    *
    softbank221111202050.bbtec.net (221.111.202.50)  152.96 ms  AS17676  中国, 上海, bbtec.net
 9  202.97.12.205  185.03 ms  AS4134  中国, 上海, chinatelecom.com.cn, 电信
    *
    *
10  *
    *
    *
11  202.97.66.198  170.05 ms  *  中国, 江苏, 南京, chinatelecom.com.cn, 电信
    202.97.66.198  165.97 ms  *  中国, 江苏, 南京, chinatelecom.com.cn, 电信
    202.97.66.198  166.27 ms  *  中国, 江苏, 南京, chinatelecom.com.cn, 电信
12  221.229.192.106  195.81 ms  AS4134  中国, 江苏, 徐州, chinatelecom.com.cn, 电信
    221.229.192.106  195.93 ms  AS4134  中国, 江苏, 徐州, chinatelecom.com.cn, 电信
    221.229.192.106  195.62 ms  AS4134  中国, 江苏, 徐州, chinatelecom.com.cn, 电信
13  *
    *
    *
14  *
    *
    *
15  *
    *
    *
16  *
    *
    *
17  221.229.173.1  170.75 ms  AS4134  中国, 江苏, 徐州, chinatelecom.com.cn, 电信
    221.229.173.1  170.68 ms  AS4134  中国, 江苏, 徐州, chinatelecom.com.cn, 电信
    221.229.173.1  170.68 ms  AS4134  中国, 江苏, 徐州, chinatelecom.com.cn, 电信
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt; 1  172.22.31.200  16.77 ms  *  局域网
    172.22.31.200  19.15 ms  *  局域网
    172.22.31.200  11.56 ms  *  局域网
 2  jp-os1-sb-1-1.it7.net (185.248.84.246)  21.57 ms  AS4785  日本, 大阪府, 大阪, xtom.com
    jp-os1-sb-1-1.it7.net (185.248.84.246)  12.16 ms  AS4785  日本, 大阪府, 大阪, xtom.com
    jp-os1-sb-1-1.it7.net (185.248.84.246)  13.45 ms  AS4785  日本, 大阪府, 大阪, xtom.com
 3  211.15.42.254  0.76 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
    211.15.42.254  0.44 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
    211.15.42.254  0.42 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
 4  211.15.42.253  110.57 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
    211.15.42.253  110.61 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
    211.15.42.253  110.54 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
 5  *
    *
    *
 6  *
    *
    *
 7  *
    *
    *
 8  softbank221111202046.bbtec.net (221.111.202.46)  190.16 ms  AS17676  中国, 上海, bbtec.net
    softbank221111202046.bbtec.net (221.111.202.46)  187.71 ms  AS17676  中国, 上海, bbtec.net
    softbank221111202046.bbtec.net (221.111.202.46)  192.16 ms  AS17676  中国, 上海, bbtec.net
 9  219.158.113.142  196.75 ms  AS4837  中国, 上海, chinaunicom.com, 联通
    219.158.113.142  194.29 ms  AS4837  中国, 上海, chinaunicom.com, 联通
    219.158.113.142  200.40 ms  AS4837  中国, 上海, chinaunicom.com, 联通
10  219.158.113.109  198.77 ms  AS4837  中国, 上海, chinaunicom.com, 联通
    219.158.113.109  196.89 ms  AS4837  中国, 上海, chinaunicom.com, 联通
    *
11  219.158.104.222  193.58 ms  AS4837  中国, 江苏, 无锡, chinaunicom.com, 联通
    219.158.104.222  196.08 ms  AS4837  中国, 江苏, 无锡, chinaunicom.com, 联通
    219.158.104.222  193.50 ms  AS4837  中国, 江苏, 无锡, chinaunicom.com, 联通
12  112.85.230.54  201.98 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
    112.85.230.54  202.06 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
    112.85.230.54  201.76 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
13  *
    *
    *
14  112.85.218.150  209.75 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
    112.85.218.150  200.33 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
    112.85.218.150  200.31 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;1  172.22.31.200  21.98 ms  *  局域网
    172.22.31.200  12.94 ms  *  局域网
    172.22.31.200  13.54 ms  *  局域网
 2  jp-os1-sb-2-1.it7.net (185.248.84.244)  1.63 ms  AS4785  日本, 大阪府, 大阪, xtom.com
    jp-os1-sb-2-1.it7.net (185.248.84.244)  8.64 ms  AS4785  日本, 大阪府, 大阪, xtom.com
    jp-os1-sb-2-1.it7.net (185.248.84.244)  0.94 ms  AS4785  日本, 大阪府, 大阪, xtom.com
 3  211.15.42.254  0.34 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
    211.15.42.254  0.38 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
    211.15.42.254  0.38 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
 4  211.15.42.253  110.93 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
    211.15.42.253  110.46 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
    211.15.42.253  110.91 ms  AS17676  日本, 大阪府, 大阪, bbtec.net
 5  *
    *
    *
 6  *
    *
    *
 7  *
    *
    *
 8  softbank221111202238.bbtec.net (221.111.202.238)  162.15 ms  AS17676  BBTEC.NET 骨干网, bbtec.net
    softbank221111202238.bbtec.net (221.111.202.238)  162.07 ms  AS17676  BBTEC.NET 骨干网, bbtec.net
    softbank221111202238.bbtec.net (221.111.202.238)  162.18 ms  AS17676  BBTEC.NET 骨干网, bbtec.net
 9  223.120.3.202  286.90 ms  AS58453  CHINAMOBILE.COM 骨干网, chinamobile.com, 移动
    223.120.3.202  286.71 ms  AS58453  CHINAMOBILE.COM 骨干网, chinamobile.com, 移动
    223.120.3.202  286.68 ms  AS58453  CHINAMOBILE.COM 骨干网, chinamobile.com, 移动
10  221.183.89.182  219.79 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.182  219.67 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.182  219.91 ms  AS9808  中国, 上海, chinamobile.com, 移动
11  221.183.89.69  219.66 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.69  219.65 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.69  219.73 ms  AS9808  中国, 上海, chinamobile.com, 移动
12  221.183.89.46  223.07 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.46  223.05 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.46  223.13 ms  AS9808  中国, 上海, chinamobile.com, 移动
13  221.183.40.58  229.10 ms  AS9808  中国, 江苏, 南京, chinamobile.com, 移动
    221.183.40.58  229.21 ms  AS9808  中国, 江苏, 南京, chinamobile.com, 移动
    221.183.40.58  229.11 ms  AS9808  中国, 江苏, 南京, chinamobile.com, 移动
14  *
    *
    *
15  122.169.195.120.static.js.chinamobile.com (120.195.169.122)  261.07 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
    122.169.195.120.static.js.chinamobile.com (120.195.169.122)  261.06 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
    122.169.195.120.static.js.chinamobile.com (120.195.169.122)  260.89 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;搬瓦工多年来因为稳定，且购买方便受到广大mjj的喜爱。但是最近故障频出，价格也是节节攀升。但是对于不差钱的用户而言，依然是不错的选择。&lt;/p&gt;
</content:encoded></item><item><title>netcup vps1337测评</title><link>https://yushum.com/posts/netcup-vps1337%E6%B5%8B%E8%AF%84/</link><guid isPermaLink="true">https://yushum.com/posts/netcup-vps1337%E6%B5%8B%E8%AF%84/</guid><pubDate>Sun, 12 Dec 2021 10:19:53 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;前段时间程序员节netcup出了&lt;a href=&quot;https://www.netcup-sonderangebote.de/vserver/vps-1337/&quot;&gt;VPS 1337&lt;/a&gt;特价款，其实就是&lt;a href=&quot;https://www.netcup.de/bestellen/produkt.php?produkt=2554&quot;&gt;VPS 1000 G9&lt;/a&gt;，现在本站已经迁移到上面。所以并非在空闲状态下测试，不是很准确。&lt;/p&gt;
&lt;p&gt;2021/12/14------今日该款有优惠&lt;a href=&quot;https://www.netcup.de/bestellen/produkt.php?produkt=2830&quot;&gt;VPS 1000 G9 ADV21&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;2023/6/29-------更新GB6&lt;/p&gt;
&lt;h2&gt;bench.sh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;----------------------------------------------------------------------
 CPU Model             : QEMU Virtual CPU version 2.5+
 CPU Cores             : 2
 CPU Frequency         : 1996.249 MHz
 CPU Cache             : 512 KB
 Total Disk            : 156.0 GB (7.9 GB Used)
 Total Mem             : 7959 MB (3416 MB Used)
 Total Swap            : 974 MB (176 MB Used)
 System uptime         : 5 days, 21 hour 38 min
 Load average          : 1.16, 1.67, 1.19
 OS                    : Debian GNU/Linux 11
 Arch                  : x86_64 (64 Bit)
 Kernel                : 5.10.0-9-cloud-amd64
 TCP CC                : bbr
 Virtualization        : KVM
 Organization          : AS197540 netcup GmbH
 Location              : Düsseldorf / DE
 Region                : North Rhine-Westphalia
----------------------------------------------------------------------
 I/O Speed(1st run)    : 874 MB/s
 I/O Speed(2nd run)    : 792 MB/s
 I/O Speed(3rd run)    : 782 MB/s
 Average I/O speed     : 816.0 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency
 Speedtest.net    834.05 Mbps       843.20 Mbps         2.68 ms
 Shanghai   CT    172.99 Mbps       756.76 Mbps         201.63 ms
 Shanghai   CU    447.39 Mbps       414.53 Mbps         166.72 ms
 Guangzhou  CT    215.82 Mbps       362.74 Mbps         209.99 ms
 Hongkong   CN    368.16 Mbps       747.60 Mbps         213.00 ms
 Tokyo      JP    182.20 Mbps       387.50 Mbps         250.80 ms
----------------------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;YABS&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2023-04-23                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Thu Jun 29 03:21:05 AM CEST 2023

Basic System Information:
---------------------------------
Uptime     : 0 days, 0 hours, 0 minutes
Processor  : QEMU Virtual CPU version 2.5+
CPU cores  : 2 @ 1996.249 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 7.8 GiB
Swap       : 0.0 KiB
Disk       : 157.3 GiB
Distro     : Debian GNU/Linux 12 (bookworm)
Kernel     : 6.1.0-9-amd64
VM Type    : KVM
IPv4/IPv6  : ✔ Online / ✔ Online

IPv6 Network Information:
---------------------------------
ISP        : netcup GmbH
ASN        : AS197540 netcup GmbH
Host       : NETCUP-GMBH
Location   : Karlsruhe, Baden-Wurttemberg (BW)
Country    : Germany

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 63.24 MB/s   (15.8k) | 946.01 MB/s  (14.7k)
Write      | 63.37 MB/s   (15.8k) | 950.99 MB/s  (14.8k)
Total      | 126.62 MB/s  (31.6k) | 1.89 GB/s    (29.6k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 2.79 GB/s     (5.4k) | 2.87 GB/s     (2.8k)
Write      | 2.94 GB/s     (5.7k) | 3.06 GB/s     (2.9k)
Total      | 5.73 GB/s    (11.2k) | 5.93 GB/s     (5.7k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 985 Mbits/sec   | 675 Mbits/sec   | 17.8 ms
Scaleway        | Paris, FR (10G)           | 944 Mbits/sec   | 725 Mbits/sec   | 23.3 ms
NovoServe       | North Holland, NL (40G)   | 926 Mbits/sec   | 949 Mbits/sec   | 10.6 ms
Uztelecom       | Tashkent, UZ (10G)        | 922 Mbits/sec   | 877 Mbits/sec   | 82.0 ms
Clouvider       | NYC, NY, US (10G)         | 799 Mbits/sec   | 449 Mbits/sec   | 93.6 ms
Clouvider       | Dallas, TX, US (10G)      | 670 Mbits/sec   | 277 Mbits/sec   | 127 ms
Clouvider       | Los Angeles, CA, US (10G) | 555 Mbits/sec   | 261 Mbits/sec   | 150 ms

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
-----           | -----                     | ----            | ----            | ----
Clouvider       | London, UK (10G)          | 985 Mbits/sec   | 653 Mbits/sec   | 17.8 ms
Scaleway        | Paris, FR (10G)           | 948 Mbits/sec   | 717 Mbits/sec   | 23.9 ms
NovoServe       | North Holland, NL (40G)   | busy            | 937 Mbits/sec   | 10.5 ms
Uztelecom       | Tashkent, UZ (10G)        | 819 Mbits/sec   | 824 Mbits/sec   | 81.9 ms
Clouvider       | NYC, NY, US (10G)         | 793 Mbits/sec   | 146 Mbits/sec   | 93.6 ms
Clouvider       | Dallas, TX, US (10G)      | 648 Mbits/sec   | 80.8 Mbits/sec  | 127 ms
Clouvider       | Los Angeles, CA, US (10G) | 601 Mbits/sec   | 87.8 Mbits/sec  | 150 ms

Geekbench 6 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 662
Multi Core      | 1059
Full Test       | https://browser.geekbench.com/v6/cpu/1755204

YABS completed in 19 min 55 sec
&lt;/code&gt;&lt;/pre&gt;
&lt;hr /&gt;
&lt;pre&gt;&lt;code&gt;# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2021-12-03                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Mon 06 Dec 2021 12:11:44 PM CET

Basic System Information:
---------------------------------
Processor  : QEMU Virtual CPU version 2.5+
CPU cores  : 2 @ 1996.249 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ❌ Disabled
RAM        : 7.8 GiB
Swap       : 975.0 MiB
Disk       : 155.5 GiB

fio Disk Speed Tests (Mixed R/W 50/50):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 80.00 MB/s   (20.0k) | 933.77 MB/s  (14.5k)
Write      | 80.21 MB/s   (20.0k) | 938.68 MB/s  (14.6k)
Total      | 160.22 MB/s  (40.0k) | 1.87 GB/s    (29.2k)
           |                      |
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ----
Read       | 1.54 GB/s     (3.0k) | 1.56 GB/s     (1.5k)
Write      | 1.62 GB/s     (3.1k) | 1.67 GB/s     (1.6k)
Total      | 3.16 GB/s     (6.1k) | 3.24 GB/s     (3.1k)

iperf3 Network Speed Tests (IPv4):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 735 Mbits/sec   | 511 Mbits/sec
Online.net      | Paris, FR (10G)           | 806 Mbits/sec   | 449 Mbits/sec
WorldStream     | The Netherlands (10G)     | 747 Mbits/sec   | 741 Mbits/sec
WebHorizon      | Singapore (1G)            | 228 Mbits/sec   | 414 Mbits/sec
Clouvider       | NYC, NY, US (10G)         | 479 Mbits/sec   | 405 Mbits/sec
Velocity Online | Tallahassee, FL, US (10G) | 618 Mbits/sec   | 411 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 557 Mbits/sec   | 613 Mbits/sec
Iveloz Telecom  | Sao Paulo, BR (2G)        | 484 Mbits/sec   | 183 Mbits/sec

iperf3 Network Speed Tests (IPv6):
---------------------------------
Provider        | Location (Link)           | Send Speed      | Recv Speed
                |                           |                 |
Clouvider       | London, UK (10G)          | 739 Mbits/sec   | 768 Mbits/sec
Online.net      | Paris, FR (10G)           | 759 Mbits/sec   | 856 Mbits/sec
WorldStream     | The Netherlands (10G)     | 802 Mbits/sec   | 838 Mbits/sec
WebHorizon      | Singapore (1G)            | 270 Mbits/sec   | busy
Clouvider       | NYC, NY, US (10G)         | 746 Mbits/sec   | 709 Mbits/sec
Clouvider       | Los Angeles, CA, US (10G) | 575 Mbits/sec   | 627 Mbits/sec

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value
                |
Single Core     | 767
Multi Core      | 1053
Full Test       | https://browser.geekbench.com/v5/cpu/11451830
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;流媒体解锁&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/12/131f7e07f3218.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;路由追踪&lt;/h2&gt;
&lt;h3&gt;去程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/12/595ce6a76b647.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/12/b2db1e4007e70.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/12/12/a23790cce0fc2.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;回程&lt;/h3&gt;
&lt;h4&gt;电信&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 221.229.173.1 (221.229.173.1), 30 hops max, 32 byte packets
 1  94.16.104.3  0.35 ms  AS197540  德国, 巴伐利亚州, 纽伦堡, anexia.com
    94.16.104.3  0.44 ms  AS197540  德国, 巴伐利亚州, 纽伦堡, anexia.com
    94.16.104.3  0.45 ms  AS197540  德国, 巴伐利亚州, 纽伦堡, anexia.com
 2  94.16.25.76  0.39 ms  AS47147  德国, 巴伐利亚州, 纽伦堡, anexia.com
    94.16.25.76  4.07 ms  AS47147  德国, 巴伐利亚州, 纽伦堡, anexia.com
    94.16.25.76  0.38 ms  AS47147  德国, 巴伐利亚州, 纽伦堡, anexia.com
 3  ae2-0.bbr02.anx25.fra.de.anexia-it.net (144.208.208.141)  4.03 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
    ae2-0.bbr02.anx25.fra.de.anexia-it.net (144.208.208.141)  3.76 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
    ae2-0.bbr02.anx25.fra.de.anexia-it.net (144.208.208.141)  4.00 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
 4  ae0-0.bbr01.anx25.fra.de.anexia-it.net (144.208.208.143)  3.63 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
    ae0-0.bbr01.anx25.fra.de.anexia-it.net (144.208.208.143)  4.61 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
    ae0-0.bbr01.anx25.fra.de.anexia-it.net (144.208.208.143)  3.61 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
 5  ffm-b5-link.ip.twelve99.net (62.115.14.116)  3.86 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
    ffm-b5-link.ip.twelve99.net (62.115.14.116)  3.64 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
    ffm-b5-link.ip.twelve99.net (62.115.14.116)  3.71 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
 6  118.85.205.81  5.07 ms  AS4134  德国, 黑森州, 法兰克福, chinatelecom.com.cn, 电信
    118.85.205.81  6.27 ms  AS4134  德国, 黑森州, 法兰克福, chinatelecom.com.cn, 电信
    118.85.205.81  5.51 ms  AS4134  德国, 黑森州, 法兰克福, chinatelecom.com.cn, 电信
 7  202.97.63.25  195.71 ms  AS4134  中国, 上海, chinatelecom.com.cn, 电信
    *
    202.97.63.25  195.72 ms  AS4134  中国, 上海, chinatelecom.com.cn, 电信
 8  *
    *
    202.97.39.154  223.01 ms  AS4134  中国, 安徽, 合肥, chinatelecom.com.cn, 电信
 9  *
    *
    *
10  202.97.19.254  224.03 ms  AS4134  中国, 江苏, 无锡, chinatelecom.com.cn, 电信
    202.97.19.254  221.40 ms  AS4134  中国, 江苏, 无锡, chinatelecom.com.cn, 电信
    202.97.19.254  241.51 ms  AS4134  中国, 江苏, 无锡, chinatelecom.com.cn, 电信
11  221.229.192.170  231.67 ms  AS4134  中国, 江苏, 徐州, chinatelecom.com.cn, 电信
    221.229.192.170  231.50 ms  AS4134  中国, 江苏, 徐州, chinatelecom.com.cn, 电信
    221.229.192.170  234.84 ms  AS4134  中国, 江苏, 徐州, chinatelecom.com.cn, 电信
12  *
    *
    *
13  *
    *
    *
14  *
    *
    *
15  221.229.173.1  220.92 ms  AS4134  中国, 江苏, 徐州, chinatelecom.com.cn, 电信
    221.229.173.1  224.31 ms  AS4134  中国, 江苏, 徐州, chinatelecom.com.cn, 电信
    221.229.173.1  220.94 ms  AS4134  中国, 江苏, 徐州, chinatelecom.com.cn, 电信
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;联通&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 112.85.231.129 (112.85.231.129), 30 hops max, 32 byte packets
 1  94.16.104.3  0.26 ms  AS197540  德国, 巴伐利亚州, 纽伦堡, anexia.com
    94.16.104.3  0.25 ms  AS197540  德国, 巴伐利亚州, 纽伦堡, anexia.com
    94.16.104.3  0.25 ms  AS197540  德国, 巴伐利亚州, 纽伦堡, anexia.com
 2  94.16.25.76  10.15 ms  AS47147  德国, 巴伐利亚州, 纽伦堡, anexia.com
    94.16.25.76  0.41 ms  AS47147  德国, 巴伐利亚州, 纽伦堡, anexia.com
    94.16.25.76  0.48 ms  AS47147  德国, 巴伐利亚州, 纽伦堡, anexia.com
 3  ae2-0.bbr02.anx25.fra.de.anexia-it.net (144.208.208.141)  3.90 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
    ae2-0.bbr02.anx25.fra.de.anexia-it.net (144.208.208.141)  3.83 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
    ae2-0.bbr02.anx25.fra.de.anexia-it.net (144.208.208.141)  3.71 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
 4  ae0-0.bbr01.anx25.fra.de.anexia-it.net (144.208.208.143)  3.56 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
    ae0-0.bbr01.anx25.fra.de.anexia-it.net (144.208.208.143)  3.95 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
    ae0-0.bbr01.anx25.fra.de.anexia-it.net (144.208.208.143)  9.01 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
 5  ffm-b5-link.ip.twelve99.net (62.115.14.116)  3.72 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
    ffm-b5-link.ip.twelve99.net (62.115.14.116)  3.82 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
    ffm-b5-link.ip.twelve99.net (62.115.14.116)  3.77 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
 6  ffm-bb2-link.ip.twelve99.net (62.115.114.90)  4.19 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
    ffm-bb2-link.ip.twelve99.net (62.115.114.90)  4.14 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
    ffm-bb2-link.ip.twelve99.net (62.115.114.90)  4.06 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
 7  ffm-b11-link.ip.twelve99.net (62.115.124.119)  4.21 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
    *
    ffm-b11-link.ip.twelve99.net (62.115.124.119)  3.95 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
 8  219.158.41.97  4.11 ms  AS4837  德国, 黑森州, 法兰克福, chinaunicom.com, 联通
    219.158.41.97  4.09 ms  AS4837  德国, 黑森州, 法兰克福, chinaunicom.com, 联通
    219.158.41.97  4.16 ms  AS4837  德国, 黑森州, 法兰克福, chinaunicom.com, 联通
 9  219.158.21.113  165.86 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
    219.158.21.113  163.13 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
    219.158.21.113  160.13 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
10  219.158.103.33  163.83 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
    219.158.103.33  160.63 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
    219.158.103.33  165.81 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
11  219.158.8.117  165.22 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
    219.158.8.117  161.94 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
    219.158.8.117  167.19 ms  AS4837  中国, 广东, 广州, chinaunicom.com, 联通
12  219.158.111.78  185.66 ms  AS4837  中国, 江苏, chinaunicom.com, 联通
    219.158.111.78  185.26 ms  AS4837  中国, 江苏, chinaunicom.com, 联通
    219.158.111.78  186.01 ms  AS4837  中国, 江苏, chinaunicom.com, 联通
13  112.85.230.106  191.63 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
    112.85.230.106  191.73 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
    112.85.230.106  191.52 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
14  122.194.150.50  204.07 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
    122.194.150.50  194.95 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
    122.194.150.50  196.06 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
15  112.85.218.150  192.78 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
    112.85.218.150  192.82 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
    112.85.218.150  201.31 ms  AS4837  中国, 江苏, 徐州, chinaunicom.com, 联通
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;移动&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;traceroute to 120.195.6.129 (120.195.6.129), 30 hops max, 32 byte packets
 1  94.16.104.3  0.48 ms  AS197540  德国, 巴伐利亚州, 纽伦堡, anexia.com
    94.16.104.3  0.19 ms  AS197540  德国, 巴伐利亚州, 纽伦堡, anexia.com
    94.16.104.3  0.19 ms  AS197540  德国, 巴伐利亚州, 纽伦堡, anexia.com
 2  94.16.25.76  0.34 ms  AS47147  德国, 巴伐利亚州, 纽伦堡, anexia.com
    94.16.25.76  0.35 ms  AS47147  德国, 巴伐利亚州, 纽伦堡, anexia.com
    94.16.25.76  10.80 ms  AS47147  德国, 巴伐利亚州, 纽伦堡, anexia.com
 3  ae2-0.bbr02.anx25.fra.de.anexia-it.net (144.208.208.141)  4.25 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
    ae2-0.bbr02.anx25.fra.de.anexia-it.net (144.208.208.141)  6.67 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
    ae2-0.bbr02.anx25.fra.de.anexia-it.net (144.208.208.141)  5.01 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
 4  ae0-0.bbr01.anx25.fra.de.anexia-it.net (144.208.208.143)  3.49 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
    ae0-0.bbr01.anx25.fra.de.anexia-it.net (144.208.208.143)  3.52 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
    ae0-0.bbr01.anx25.fra.de.anexia-it.net (144.208.208.143)  3.49 ms  AS47147  德国, 黑森州, 法兰克福, anexia.com
 5  ffm-b5-link.ip.twelve99.net (62.115.14.116)  3.83 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
    ffm-b5-link.ip.twelve99.net (62.115.14.116)  3.70 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
    ffm-b5-link.ip.twelve99.net (62.115.14.116)  3.89 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
 6  ffm-bb1-link.ip.twelve99.net (62.115.114.88)  19.68 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
    ffm-bb1-link.ip.twelve99.net (62.115.114.88)  19.78 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
    ffm-bb1-link.ip.twelve99.net (62.115.114.88)  19.71 ms  AS1299  德国, 黑森州, 法兰克福, telia.com
 7  *
    *
    *
 8  ldn-bb1-link.ip.twelve99.net (62.115.135.24)  19.05 ms  AS1299  英国, 伦敦, telia.com
    ldn-bb1-link.ip.twelve99.net (62.115.135.24)  19.01 ms  AS1299  英国, 伦敦, telia.com
    ldn-bb1-link.ip.twelve99.net (62.115.135.24)  18.93 ms  AS1299  英国, 伦敦, telia.com
 9  slou-b1-link.ip.twelve99.net (62.115.117.193)  19.84 ms  AS1299  英国, 伯克郡, 斯劳, telia.com
    slou-b1-link.ip.twelve99.net (62.115.117.193)  19.66 ms  AS1299  英国, 伯克郡, 斯劳, telia.com
    slou-b1-link.ip.twelve99.net (62.115.117.193)  19.63 ms  AS1299  英国, 伯克郡, 斯劳, telia.com
10  chinamobile-ic342125-slou-b1.ip.twelve99-cust.net (62.115.171.223)  20.25 ms  AS1299  英国, 伯克郡, 斯劳, telia.com
    chinamobile-ic342125-slou-b1.ip.twelve99-cust.net (62.115.171.223)  20.20 ms  AS1299  英国, 伯克郡, 斯劳, telia.com
    chinamobile-ic342125-slou-b1.ip.twelve99-cust.net (62.115.171.223)  20.15 ms  AS1299  英国, 伯克郡, 斯劳, telia.com
11  223.120.10.225  21.33 ms  AS58453  欧洲地区, chinamobile.com, 移动
    223.120.10.225  21.22 ms  AS58453  欧洲地区, chinamobile.com, 移动
    223.120.10.225  21.28 ms  AS58453  欧洲地区, chinamobile.com, 移动
12  223.120.16.110  246.01 ms  AS58453  中国, chinamobile.com, 移动
    223.120.16.110  245.91 ms  AS58453  中国, chinamobile.com, 移动
    223.120.16.110  260.77 ms  AS58453  中国, chinamobile.com, 移动
13  221.183.89.174  241.01 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.174  241.03 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.174  240.97 ms  AS9808  中国, 上海, chinamobile.com, 移动
14  221.183.89.69  242.40 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.69  242.35 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.69  242.33 ms  AS9808  中国, 上海, chinamobile.com, 移动
15  221.183.89.46  249.69 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.46  249.57 ms  AS9808  中国, 上海, chinamobile.com, 移动
    221.183.89.46  249.56 ms  AS9808  中国, 上海, chinamobile.com, 移动
16  221.183.40.58  246.94 ms  AS9808  中国, 江苏, 南京, chinamobile.com, 移动
    221.183.40.58  247.85 ms  AS9808  中国, 江苏, 南京, chinamobile.com, 移动
    221.183.40.58  246.90 ms  AS9808  中国, 江苏, 南京, chinamobile.com, 移动
17  *
    *
    *
18  122.169.195.120.static.js.chinamobile.com (120.195.169.122)  276.70 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
    122.169.195.120.static.js.chinamobile.com (120.195.169.122)  276.75 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
    122.169.195.120.static.js.chinamobile.com (120.195.169.122)  276.56 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
19  120.195.42.130  222.97 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
    120.195.42.130  222.90 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
    120.195.42.130  222.96 ms  AS56046  中国, 江苏, 徐州, chinamobile.com, 移动
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;机器的性能不错，并且G口不限流量。电信来回均走163线路，并且有丢包现象；联通来回均是4837线路；移动均为cmi线路。比较适合做站或者移动联通用户。&lt;/p&gt;
&lt;p&gt;新用户可以使用5欧元优惠码：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;36nc16394409477
36nc16394409476
36nc16394409475
36nc16394409474
36nc16394409473
36nc16394409472
36nc16394409471
36nc16394409470
36nc16394409391
36nc16394409390
&lt;/code&gt;&lt;/pre&gt;
</content:encoded></item><item><title>CloudFlare官方WARP客户端解锁Netflix</title><link>https://yushum.com/posts/warp-cli%E8%A7%A3%E9%94%81netflix/</link><guid isPermaLink="true">https://yushum.com/posts/warp-cli%E8%A7%A3%E9%94%81netflix/</guid><pubDate>Sat, 11 Dec 2021 20:30:46 GMT</pubDate><content:encoded>&lt;h2&gt;前言&lt;/h2&gt;
&lt;p&gt;现在纯IPv6、nat IPv4 VPS越来越多了，于是有人发现可以用warp解锁Netflix、解决Google送中问题，但是大多数教程和一键脚本都是用&lt;a href=&quot;https://github.com/ViRb3/wgcf&quot;&gt;wgcf&lt;/a&gt;来实现的。其实wgcf有相对不低的延迟，大部分情况下使用这种方案会造成打开网页缓慢的问题。因此我们可以利用warp官方客户端来提供socks5给别的软件分流使用。&lt;/p&gt;
&lt;h2&gt;安装&lt;/h2&gt;
&lt;p&gt;以&lt;code&gt;Debian 11&lt;/code&gt;为例：&lt;/p&gt;
&lt;p&gt;首先，安装存储库的 GPG 密钥：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;apt install sudo gpg
curl https://pkg.cloudflareclient.com/pubkey.gpg | sudo gpg --yes --dearmor --output /usr/share/keyrings/cloudflare-warp-archive-keyring.gpg
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后添加存储库：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;echo &apos;deb [arch=amd64 signed-by=/usr/share/keyrings/cloudflare-warp-archive-keyring.gpg] https://pkg.cloudflareclient.com/ bullseye main&apos; | sudo tee /etc/apt/sources.list.d/cloudflare-client.list
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;更新 APT 缓存：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt update
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;安装&lt;code&gt;Cloudflare WARP&lt;/code&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt install cloudflare-warp
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;使用&lt;/h2&gt;
&lt;p&gt;注册一个warp账号：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;warp-cli register
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;如果想要使用已经有的账号则可以指定&lt;code&gt;license&lt;/code&gt; (1.1.1.1 app右上角-账户-按键），可以通过邀请新用户的方式为账号添加warp+高级流量，也可以通过脚本刷流量，&lt;a href=&quot;https://yushum.com/%E4%B8%BA%E4%BD%A0%E7%9A%84warp%E8%B4%A6%E5%8F%B7%E6%B7%BB%E5%8A%A0warp%E6%B5%81%E9%87%8F/&quot;&gt;点击前往教程&lt;/a&gt;。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;warp-cli set-license &amp;lt;key&amp;gt;  //将&amp;lt;key&amp;gt;替换为你的license
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;修改warp-cli运行模式：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;warp-cli set-mode proxy
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;设置监听端口：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;warp-cli set-proxy-port 10086
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;连接：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;warp-cli connect
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;查看当前warp的IP：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;curl -4 ip.gs -x socks5://127.0.0.1:10086
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后我们就可以将其他软件需要分流的流量转发到10086端口了。&lt;/p&gt;
&lt;p&gt;以&lt;code&gt;Xray/V2Ray&lt;/code&gt;为例：&lt;/p&gt;
&lt;p&gt;在配置文件中的添加&lt;code&gt;outbounds&lt;/code&gt;：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;{
      &quot;protocol&quot;: &quot;socks&quot;,
      &quot;settings&quot;: {
         &quot;servers&quot;: [{
            &quot;address&quot;: &quot;127.0.0.1&quot;,
            &quot;port&quot;: 10086
         }]
      },
      &quot;tag&quot;: &quot;warp&quot;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;在路由&lt;code&gt;routing&lt;/code&gt;中加入：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;{
	&quot;type&quot;: &quot;field&quot;,
	&quot;outboundTag&quot;: &quot;warp&quot;,
	&quot;domain&quot;: [
		&quot;geosite:netflix&quot;
	]
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后重启即可：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;systemctl restart xray.service
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;测试无误之后便可以设置warp-cli长期运行：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;warp-cli enable-always-on
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;结语&lt;/h2&gt;
&lt;p&gt;这种方案相较于目前流行的wireguard方案的优势就是可以只分流需要分流的流量，其他无论什么流量都不会受到影响。&lt;/p&gt;
&lt;p&gt;另外wireguard的方案会造成docker的bridge模式无法使用，这种方案可以完美解决。&lt;/p&gt;
&lt;h2&gt;参考链接&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://blog.cloudflare.com/announcing-warp-for-linux-and-proxy-mode/&quot;&gt;Announcing WARP for Linux and Proxy Mode&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://pkg.cloudflareclient.com/install&quot;&gt;Cloudflare Package Repository&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>Nginx安装教程（Windows）</title><link>https://yushum.com/posts/nginx%E5%AE%89%E8%A3%85%E6%95%99%E7%A8%8Bwindows/</link><guid isPermaLink="true">https://yushum.com/posts/nginx%E5%AE%89%E8%A3%85%E6%95%99%E7%A8%8Bwindows/</guid><pubDate>Sat, 04 Dec 2021 14:30:41 GMT</pubDate><content:encoded>&lt;h2&gt;准备工作&lt;/h2&gt;
&lt;h3&gt;Nginx&lt;/h3&gt;
&lt;p&gt;到&lt;a href=&quot;https://nginx.org/en/download.html&quot;&gt;nginx: download&lt;/a&gt;下载Nginx Windows版，我选择是&lt;a href=&quot;https://nginx.org/download/nginx-1.21.4.zip&quot;&gt;nginx/Windows-1.21.4&lt;/a&gt;，解压后放到&lt;code&gt;C:\Apps\Nginx&lt;/code&gt;目录下。&lt;/p&gt;
&lt;h3&gt;Xray&lt;/h3&gt;
&lt;p&gt;到Github下载&lt;a href=&quot;https://github.com/XTLS/Xray-core&quot;&gt;Xray-core&lt;/a&gt;，我下载的是&lt;a href=&quot;https://github.com/XTLS/Xray-core/releases/download/v1.4.5/Xray-windows-64.zip&quot;&gt;Xray-windows-64.zip&lt;/a&gt;，解压后放到&lt;code&gt;C:\Apps\Xray&lt;/code&gt;目录下。&lt;/p&gt;
&lt;h3&gt;NSSM&lt;/h3&gt;
&lt;p&gt;到&lt;a href=&quot;https://nssm.cc/&quot;&gt;NSSM&lt;/a&gt;下载&lt;a href=&quot;https://nssm.cc/release/nssm-2.24.zip&quot;&gt;nssm 2.24&lt;/a&gt;，解压后放到&lt;code&gt;C:\Apps\NSSM&lt;/code&gt;目录下，并将其加入到系统变量&lt;code&gt;Path&lt;/code&gt;中。&lt;/p&gt;
&lt;h3&gt;SSL&lt;/h3&gt;
&lt;p&gt;申请好证书，放到&lt;code&gt;C:\Users\Administrator\Documents\SSL&lt;/code&gt;目录下。&lt;/p&gt;
&lt;h2&gt;安装&lt;/h2&gt;
&lt;h3&gt;Nginx&lt;/h3&gt;
&lt;p&gt;在命令行中输入&lt;code&gt;nssm install nginx&lt;/code&gt;回车，在界面里按如下设置：&lt;/p&gt;
&lt;p&gt;&lt;code&gt;Application&lt;/code&gt;选项卡下&lt;code&gt;Path&lt;/code&gt;设置为&lt;code&gt;C:\Apps\Nginx\nginx.exe&lt;/code&gt;，&lt;code&gt;Startup directory&lt;/code&gt;设置为&lt;code&gt;C:\Apps\Nginx&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;I/O&lt;/code&gt;选项卡下&lt;code&gt;Input(stdin)&lt;/code&gt;设置为&lt;code&gt;start nginx&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;可选：在&lt;code&gt;Output&lt;/code&gt;和&lt;code&gt;Error&lt;/code&gt;中设置 &lt;code&gt;C:\Apps\Nginx\logs\service.out.log&lt;/code&gt; 和 &lt;code&gt;C:\Apps\Nginx\logs\service.err.log&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;点击&lt;code&gt;install service&lt;/code&gt;，打开&lt;code&gt;服务&lt;/code&gt;，启动&lt;code&gt;nginx&lt;/code&gt;。点击&lt;a href=&quot;http://localhost/&quot;&gt;http://localhost:80&lt;/a&gt;，你就可以看到nginx默认页面了。&lt;/p&gt;
&lt;p&gt;打开&lt;code&gt;高级安全 Windows Defender 防火墙&lt;/code&gt;，在入站规则中添加允许nginx程序的规则。&lt;/p&gt;
&lt;p&gt;编辑&lt;code&gt;C:\Apps\Nginx\conf\nginx.conf&lt;/code&gt;文件，在http中添加网站的配置文件，与Linux下无异，注意SSL文件的位置。&lt;/p&gt;
&lt;h3&gt;Xray&lt;/h3&gt;
&lt;p&gt;安装过程和nginx大同小异，不赘述了。配置文件也与Linux下完全相同，参考官方教程即可。&lt;/p&gt;
</content:encoded></item><item><title>旧笔记本改造记</title><link>https://yushum.com/posts/%E6%97%A7%E7%AC%94%E8%AE%B0%E6%9C%AC%E6%94%B9%E9%80%A0%E8%AE%B0/</link><guid isPermaLink="true">https://yushum.com/posts/%E6%97%A7%E7%AC%94%E8%AE%B0%E6%9C%AC%E6%94%B9%E9%80%A0%E8%AE%B0/</guid><pubDate>Wed, 25 Aug 2021 21:04:02 GMT</pubDate><content:encoded>&lt;h2&gt;引言&lt;/h2&gt;
&lt;p&gt;家里有一台旧笔记本一直放着吃灰，父母有手机和Pad，而且不会用电脑，想着能不能利用起来。尝试直接装Debian做服务器，但是装不上英伟达显卡驱动（就没法挖矿了！）。正好前段时间家里电压不稳，最高可能超过了380V，把从奸商友善购得的R2S软路由烧坏了，所以旧笔记本就派上用场了。&lt;/p&gt;
&lt;h2&gt;OpenWrt&lt;/h2&gt;
&lt;p&gt;首先尝试了直接安装OpenWrt，这里使用了&lt;a href=&quot;https://p3terx.com&quot;&gt;P3TERX&lt;/a&gt;的&lt;a href=&quot;https://github.com/P3TERX/Actions-OpenWrt&quot;&gt;Actions-OpenWrt&lt;/a&gt;的云编译方式，简单方便，不赘述了。&lt;/p&gt;
&lt;p&gt;效果是很不错的，但是CPU负载一直是0，内存也最多使用200M，感觉有点浪费。尝试了添加docker后，编译出的固件UDP一直是不通的，不知是不是我的编译有问题。所以放弃了这种方案。&lt;/p&gt;
&lt;h2&gt;ESXi&lt;/h2&gt;
&lt;p&gt;然后想到了首先安装一个虚拟化平台，这样OpenWrt只需要干好自己的本职工作，docker什么的放在别的虚拟机上。&lt;/p&gt;
&lt;p&gt;其实首先尝试的是PVE，但是现在已经改成ESXi，所以先记录一下ESXi吧。&lt;/p&gt;
&lt;h3&gt;下载镜像&lt;/h3&gt;
&lt;p&gt;ESXi的镜像文件在&lt;a href=&quot;https://customerconnect.vmware.com/en/downloads/details?downloadGroup=ESXI67U3&amp;amp;productId=742&quot;&gt;官网&lt;/a&gt;就可以下载，7.0版没法添加Realtek网卡的驱动，所以选择了次新的6.7版。没有账号的去注册一个账号，注意语言要选英文，选中文的话验证码这一关就很难过。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/25/a6b5405fcf930.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;注意要选择Offline Bundle，因为待会儿要添加网卡驱动&lt;/p&gt;
&lt;p&gt;有U3和U3b两个版本，在网上搜寻了一圈也没找到说明区别的，由于U3的发布日期更晚一些，故选择了U3。&lt;/p&gt;
&lt;p&gt;下载下来之后还不能直接安装，因为旧笔记本自带的网卡是Realtek 8168，我自己又买了一个绿联USB3.0转千兆网卡。ESXi是为服务器专门设计的，而服务器自然不会用到这些网卡，所以需要自己添加驱动。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/25/419560b0a2043.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;这里薅了东子的羊毛🤭&lt;/p&gt;
&lt;p&gt;Realtek 8168的驱动在&lt;a href=&quot;http://vibsdepot.v-front.de/depot/RTL/net55-r8168/net55-r8168-8.045a-napi.x86_64.vib&quot;&gt;这里&lt;/a&gt;下载，他这里有写到：&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Compatible With&lt;/em&gt;: ESXi 5.5, ESXi 6.0, ESXi 6.5, ESXi 6.7&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;而我所购买的USB转网卡型号是AX88179，&lt;a href=&quot;https://download3.vmware.com/software/vmw-tools/USBNND/ESXi670-VMKUSB-NIC-FLING-39203948-offline_bundle-16780994.zip&quot;&gt;VMware官方&lt;/a&gt;就有提供，注意要下载6.7版的。下载下来之后将其中的vib文件解压出来与r8168的放到同一个文件夹&lt;code&gt;vib&lt;/code&gt;里。&lt;/p&gt;
&lt;p&gt;然后下载PowerShell脚本&lt;a href=&quot;https://github.com/VFrontDe/ESXi-Customizer-PS&quot;&gt;ESXi-Customizer-PS&lt;/a&gt;，将之前下载好的文件放到一起，形成如下的目录结构：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;D:.
│  ESXi-Customizer-PS.ps1
│  update-from-esxi6.7-6.7_update03.zip
│  
└─vib
        net55-r8168-8.045a-napi.x86_64.vib
        VMW_bootbank_vmkusb-nic-fling_2.1-6vmw.670.2.48.39203948.vib
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后在PowerShell里输入如下命令（注意要用Windows自带的PowerShell，以管理员方式打开）：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;Install-Module -Name VMware.PowerCLI
Set-ExecutionPolicy Unrestricted
.\ESXi-Customizer-PS.ps1 -izip .\update-from-esxi6.7-6.7_update03.zip -pkgDir .\vib\
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后便会在当前目录下生成一个名为&lt;code&gt;ESXi-6.7.0-20190802001-standard-customized.iso&lt;/code&gt;的镜像文件。&lt;/p&gt;
&lt;h3&gt;安装ESXi&lt;/h3&gt;
&lt;p&gt;安装过程没什么坑。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/25/108f624f81abd.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;这是已经设置好的界面&lt;/p&gt;
&lt;p&gt;建议设置一下&lt;code&gt;Management Network&lt;/code&gt;，这样可以避免后期出现莫名其妙进入不了管理后台的问题。&lt;/p&gt;
&lt;p&gt;按F2，输入安装过程中设置的root账户密码，回车。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/25/5edc7360ff91c.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;打开&lt;code&gt;Configure Management Network&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/25/c0cbd8d39cc1b.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;选择&lt;code&gt;Network Adapters&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/25/204088f4f0646.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;我选择了默认的R卡。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/25/f4f0f9f25119d.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;然后是&lt;code&gt;IPv4 Configuration&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/25/3ed3b68503245.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;最后是&lt;code&gt;DNS Configuration&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/25/dba7cf7e12c21.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;设置好之后&lt;code&gt;Restart Management Network&lt;/code&gt;。&lt;/p&gt;
&lt;h3&gt;安装OpenWrt&lt;/h3&gt;
&lt;p&gt;电脑将网线连到旧笔记本的R卡网口上，设置到同一网段，然后就可以进入&lt;a href=&quot;https://192.168.1.2&quot;&gt;ESXi的管理页面&lt;/a&gt;了。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/25/1c44ebe3a5cb1.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;首先给USB网口添加一个虚拟交换机，勾选如下：&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/25/e4d1849e4d43f.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;然后将端口组中非Management的端口组改为LAN，新增一个WAN口。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/25/dfeaccbcf3929.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;注意不要选成vSwitch0&lt;/p&gt;
&lt;p&gt;然后上传编译好的镜像文件到存储中，这里提供一下我编译好的ESXi的vmdk镜像文件:&lt;strong&gt;&lt;a href=&quot;https://github.com/yushum/LEDE-ESXi/releases&quot;&gt;LEDE-ESXi&lt;/a&gt;&lt;/strong&gt;，我使用的是&lt;code&gt;openwrt-x86-64-generic-ext4-combined-efi.vmdk&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;此vmdk无法被ESXi直接使用，需要到ESXi管理页面开启安全Shell，也是ssh。&lt;/p&gt;
&lt;p&gt;连接到ESXi后输入如下命令，可以在官网找到&lt;a href=&quot;https://kb.vmware.com/s/article/1028042?lang=zh_CN&quot;&gt;转换教程&lt;/a&gt;：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;vmkfstools -i &quot;openwrt-x86-64-generic-ext4-combined-efi.vmdk&quot; &quot;openwrt-x86-64-generic-ext4-combined-efi-esxi6.vmdk&quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后修改一下磁盘大小，否则会出现&lt;em&gt;&lt;strong&gt;请输入大于原始容量的磁盘大小&lt;/strong&gt;&lt;/em&gt;的问题。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;vmkfstools -X 180M openwrt-x86-64-generic-ext4-combined-efi-esxi6.vmdk
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后就可以添加虚拟机了，注意CPU开启&lt;code&gt;硬件虚拟化&lt;/code&gt;、&lt;code&gt;IOMMU&lt;/code&gt;和&lt;code&gt;性能计数器&lt;/code&gt;，删除自动生成的硬盘，添加一个WAN端口组，关闭&lt;code&gt;启用 UEFI 安全引导&lt;/code&gt;。完成后开启OpenWrt的自动启动的同时也要开启&lt;code&gt;主机-管理-系统-自动启动&lt;/code&gt;中的&lt;code&gt;已启用&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;我给OpenWrt分配了512M内存和1核CPU，现在看来绰绰有余。&lt;/p&gt;
&lt;h3&gt;测试&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/26/1cf3298a6bca7.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;可以看到是虚拟网卡是万兆全双工&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/28/fda60b9c7904a.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;改为4核后的cpumark&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/26/81cc1faec39cf.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;speedtest.cn测速&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/26/e6d8de21ce502.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;speedtest.net测速&lt;/p&gt;
&lt;p&gt;ESXi的功率是24W多一点，跑满带宽的话可以跑到35W左右。&lt;/p&gt;
&lt;h2&gt;PVE&lt;/h2&gt;
&lt;h3&gt;安装PVE&lt;/h3&gt;
&lt;p&gt;PVE其实就是Debian，安装过程没什么好讲的，也不需要添加驱动，直接到&lt;a href=&quot;https://www.proxmox.com/en/downloads/category/iso-images-pve&quot;&gt;官网下载&lt;/a&gt;安装即可，我使用的是7.0-1版。&lt;/p&gt;
&lt;h4&gt;修改Debian源&lt;/h4&gt;
&lt;p&gt;Debian 的软件源配置文件是&lt;code&gt;/etc/apt/sources.list&lt;/code&gt;。将系统自带的该文件做个备份，将该文件替换为下面内容，即可使用 TUNA 的软件源镜像。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free

deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free

deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;添加PVE源&lt;/h4&gt;
&lt;p&gt;新建&lt;code&gt;/etc/apt/sources.list.d/pve-no-subscription.list&lt;/code&gt;，内容为：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;deb https://mirrors.tuna.tsinghua.edu.cn/proxmox/debian bullseye pve-no-subscription
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;安装OpenWrt&lt;/h3&gt;
&lt;p&gt;提供一下我使用的OpenWrt镜像：&lt;a href=&quot;https://github.com/yushum/LEDE-PVE&quot;&gt;LEDE-PVE&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;创建好虚拟机后，将qcow2格式的镜像传入pve中：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;qm importdisk 100 openwrt-x86-64-generic-ext4-combined-efi.qcow2 local-lvm
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;测试&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/28/c0f9778965a8c.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;网卡显示的是半双工&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/28/a1c6246e49b6a.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;改为4核后的cpumark&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/28/15b28ceb67382.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;speedtest.cn测速&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2021/08/28/9eec89d12ff60.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;speedtest.net测速&lt;/p&gt;
&lt;p&gt;PVE的功率大约是11W，跑满网速的情况下可以跑到20W。&lt;/p&gt;
</content:encoded></item><item><title>VPS商家避坑指南</title><link>https://yushum.com/posts/%E5%9B%BD%E4%BA%BA%E5%95%86%E5%AE%B6%E9%81%BF%E5%9D%91%E6%8C%87%E5%8D%97/</link><guid isPermaLink="true">https://yushum.com/posts/%E5%9B%BD%E4%BA%BA%E5%95%86%E5%AE%B6%E9%81%BF%E5%9D%91%E6%8C%87%E5%8D%97/</guid><pubDate>Thu, 03 Jun 2021 11:35:16 GMT</pubDate><content:encoded>&lt;h2&gt;不建议购买的商家&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;商家&lt;/td&gt;
&lt;td&gt;官网地址&lt;/td&gt;
&lt;td&gt;备注&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;vmshell&lt;/td&gt;
&lt;td&gt;https://vmshell.com/&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;企鹅小屋&lt;/td&gt;
&lt;td&gt;https://www.qexw.com/&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;炭云&lt;/td&gt;
&lt;td&gt;https://www.coalcloud.net/&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PacificRack&lt;/td&gt;
&lt;td&gt;https://www.pacificrack.com/&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cloudatcost&lt;/td&gt;
&lt;td&gt;https://cloudatcost.com/&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;蓝竹云&lt;/td&gt;
&lt;td&gt;https://idc.ax/&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;T0server&lt;/td&gt;
&lt;td&gt;https://t0server.cc/&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Mineserver&lt;/td&gt;
&lt;td&gt;https://mineserver.cloud/&lt;/td&gt;
&lt;td&gt;Mineserver与T0server为同一人所开设。&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;不建议浏览的测评网站&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;名称&lt;/td&gt;
&lt;td&gt;网址&lt;/td&gt;
&lt;td&gt;备注&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;主机测评&lt;/td&gt;
&lt;td&gt;https://www.zhujiceping.com/&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;不建议相信的AFFMAN&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;ID&lt;/td&gt;
&lt;td&gt;个人主页&lt;/td&gt;
&lt;td&gt;备注&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;冲浪麦浪花郎&lt;/td&gt;
&lt;td&gt;https://hostloc.com/space-uid-50129.html&lt;/td&gt;
&lt;td&gt;毫无良心，不知廉耻。&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;结语&lt;/h2&gt;
&lt;p&gt;不建议购买任何国人oneman商家VPS，欢迎在评论里留言补充。&lt;/p&gt;
</content:encoded></item><item><title>制作Windows 10/Server 2016以上的镜像</title><link>https://yushum.com/posts/%E5%88%B6%E4%BD%9Cwindows-10-server-2016%E4%BB%A5%E4%B8%8A%E7%9A%84%E9%95%9C%E5%83%8F/</link><guid isPermaLink="true">https://yushum.com/posts/%E5%88%B6%E4%BD%9Cwindows-10-server-2016%E4%BB%A5%E4%B8%8A%E7%9A%84%E9%95%9C%E5%83%8F/</guid><pubDate>Sat, 30 May 2020 15:07:29 GMT</pubDate><content:encoded>&lt;p&gt;网上的制作教程鱼龙混杂，大部分都是抄来抄去，可能他们自己都不知道在操作什么，故在此记录最简单的制作方法。&lt;/p&gt;
&lt;h2&gt;准备工作&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Windows镜像（以Windows Server 2019为例）&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-0.1.171-1/virtio-win-0.1.171.iso&quot;&gt;virtio驱动&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.7-zip.org/a/7z1900-x64.exe&quot;&gt;7-Zip&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.chuyu.me/zh-Hans/index.html&quot;&gt;Dism++&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;创建虚拟磁盘&lt;/h2&gt;
&lt;p&gt;右键单击左下角&lt;code&gt;开始&lt;/code&gt;菜单，打开&lt;code&gt;磁盘管理&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;点击上方&lt;code&gt;操作&lt;/code&gt;菜单，开始&lt;code&gt;创建VHD&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-3.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;由经验可知，Windows Server 2019镜像需要15GB的空间，而且大部分服务器都只支持传统的BIOS+mbr的组合，故给出下图中的示例。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-2.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;然后点击确定即可。&lt;/p&gt;
&lt;p&gt;创建完成后，右键单击（我这里是磁盘2），对其进行&lt;code&gt;初始化磁盘&lt;/code&gt;操作。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-4.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-5.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;点击确定即可。&lt;/p&gt;
&lt;p&gt;初始化完成后，新建一个卷用于释放Windows Server 2019，一路下一步，记得删除卷标&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-6.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;释放镜像&lt;/h2&gt;
&lt;p&gt;打开解压好的对应版本Dism++，依次点击左上角&lt;code&gt;文件&lt;/code&gt;-&lt;code&gt;释放镜像&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-7-1024x719.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;目标映像我这里选择了DataCener版，第一个浏览选择你的Windows镜像，第二个选择刚刚新建卷的盘符，勾选添加&lt;code&gt;引导&lt;/code&gt;和&lt;code&gt;格式化&lt;/code&gt;，然后确定。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-8.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;接下来会弹出一个窗口，点击&lt;code&gt;更多&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-9.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;选择刚刚要释放镜像到的盘符，我这里是&lt;code&gt;E:&lt;/code&gt;，然后确定。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-10.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;耐心等待后显示如下，点击&lt;code&gt;确定&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-11.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;添加驱动&lt;/h2&gt;
&lt;p&gt;点击&lt;code&gt;打开会话&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-12-1024x719.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;进行驱动的添加。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-13-1024x719.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;选择解压好的virtio驱动文件夹，点击&lt;code&gt;选择文件夹&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-14.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;出现如下提示表示添加成功。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-15.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;此时就可以卸载镜像。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-16.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;弹出新建卷。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-17.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;压缩虚拟磁盘&lt;/h2&gt;
&lt;p&gt;右键点击&lt;code&gt;2019.vhd&lt;/code&gt;，&lt;code&gt;添加到压缩包&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-18.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;压缩格式选择&lt;code&gt;gzip&lt;/code&gt;，其余选项默认，如下图所示，点击&lt;code&gt;确定&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/05/image-19.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;待文件压缩完成后，得到的&lt;code&gt;2019.gz&lt;/code&gt;文件便是可使用的dd包。&lt;/p&gt;
</content:encoded></item><item><title>bitwarden_rs服务端搭建（使用MySQL数据库）</title><link>https://yushum.com/posts/bitwarden_rs%E6%9C%8D%E5%8A%A1%E7%AB%AF%E6%90%AD%E5%BB%BA%E4%BD%BF%E7%94%A8mysql%E6%95%B0%E6%8D%AE%E5%BA%93/</link><guid isPermaLink="true">https://yushum.com/posts/bitwarden_rs%E6%9C%8D%E5%8A%A1%E7%AB%AF%E6%90%AD%E5%BB%BA%E4%BD%BF%E7%94%A8mysql%E6%95%B0%E6%8D%AE%E5%BA%93/</guid><pubDate>Fri, 24 Apr 2020 00:07:08 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;Bitwarden是一项免费的开源密码管理服务，可将敏感信息（例如网站凭据）存储在加密的保险库中。Bitwarden平台提供各种客户端应用程序，包括Web界面，桌面应用程序，浏览器扩展，移动应用程序和CLI。Bitwarden提供云托管服务，并能够在本地部署解决方案。&lt;/p&gt;
&lt;p&gt;bitwarden_rs是用Rust编写的Bitwarden服务器API实现，与上游Bitwarden客户端兼容，非常适合自托管部署，在这种情况下运行官方资源密集型服务可能不理想。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/unnamed.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;安装&lt;/h2&gt;
&lt;p&gt;bitwarden_rs的作者推荐使用docker方式部署，如何安装docker就不赘述了。&lt;/p&gt;
&lt;p&gt;首先在宿主机的mysql里为bitwarden_rs创建库&lt;code&gt;bitwarden&lt;/code&gt;，用户&lt;code&gt;bitwarden&lt;/code&gt;，密码为&lt;code&gt;password&lt;/code&gt;，主机为docker的ip段&lt;code&gt;172.17.0.%&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;拉取docker镜像后运行&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;docker pull bitwardenrs/server-mysql:latest
docker run -d --name bitwarden --user 65534:65534 -e SIGNUPS_ALLOWED=true --restart=always -e ROCKET_PORT=1024 -v /bw-data/:/data/ -p 127.0.0.1:8080:1024 -e DATABASE_URL=&apos;mysql://bitwarden:password@172.17.0.1:3306/bitwarden&apos; -e ENABLE_DB_WAL=&apos;false&apos; bitwardenrs/server-mysql:latest
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;为了安全起见使用了&lt;code&gt;nobody&lt;/code&gt;用户，由于&lt;code&gt;nobody&lt;/code&gt;用户没有监听1024以下端口的权力所以使用了&lt;code&gt;ROCKET_PORT&lt;/code&gt;。该容器使用了宿主机的8080端口，请视情况修改。&lt;/p&gt;
&lt;h2&gt;Nginx反向代理&lt;/h2&gt;
&lt;p&gt;示例配置如下&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;server {
	listen 80;
	listen [::]:80;
	server_name your.domain.com;
	return 301 https://$host$request_uri;
}
server {
	listen 443 ssl http2;
        listen [::]:443 ssl http2;
	ssl_certificate /path/to/your/domain.crt;
        ssl_certificate_key /path/to/your/domain.key;
        ssl_session_timeout 1d;
        ssl_session_cache shared:MozSSL:10m;
        ssl_session_tickets off;
	ssl_dhparam /path/to/your/dhparam;
	ssl_protocols TLSv1.2 TLSv1.3;
        ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
        ssl_prefer_server_ciphers off;
        add_header Strict-Transport-Security &quot;max-age=63072000&quot; always;
        ssl_stapling on;
        ssl_stapling_verify on;
	resolver 8.8.8.8;

	server_name your.domain.com;
	
	location / {
        proxy_pass http://127.0.0.1:8080;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
	}
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;部署完成后访问你的域名注册用户，然后为了安全起见，关闭注册功能。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;docker stop bitwarden
docker rm bitwarden
docker run -d --name bitwarden --user 65534:65534 -e SIGNUPS_ALLOWED=false --restart=always -e ROCKET_PORT=1024 -v /bw-data/:/data/ -p 127.0.0.1:8080:1024 -e DATABASE_URL=&apos;mysql://bitwarden:password@172.17.0.1:3306/bitwarden&apos; -e ENABLE_DB_WAL=&apos;false&apos; bitwardenrs/server-mysql:latest
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;常见问题&lt;/h2&gt;
&lt;h3&gt;获取docker容器的IP地址&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;docker inspect --format &apos;{{ .NetworkSettings.IPAddress }}&apos;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;或者&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;docker inspect
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;或者&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;docker inspect -f &apos;{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}&apos; container_name_or_id
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;获取宿主机IP&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;ip address show docker0
&lt;/code&gt;&lt;/pre&gt;
</content:encoded></item><item><title>在任意Linux发行版上安装Railgun</title><link>https://yushum.com/posts/%E5%9C%A8%E4%BB%BB%E6%84%8Flinux%E5%8F%91%E8%A1%8C%E7%89%88%E4%B8%8A%E5%AE%89%E8%A3%85railgun/</link><guid isPermaLink="true">https://yushum.com/posts/%E5%9C%A8%E4%BB%BB%E6%84%8Flinux%E5%8F%91%E8%A1%8C%E7%89%88%E4%B8%8A%E5%AE%89%E8%A3%85railgun/</guid><pubDate>Sun, 19 Apr 2020 19:10:50 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;Railgun可确保以最快速度连接源站和Cloudflare网络。&lt;/p&gt;
&lt;p&gt;Railgun利用类似于高质量视频压缩的技术，压缩以前无法访问的Web对象。这会带来额外的性能提升。&lt;/p&gt;
&lt;p&gt;通常Cloudflare客户需要每月支付200美元或更多才能获得该技术。但是作为Cloudflare的合作伙伴，您可以向所有已启用Cloudflare的客户免费提供Railgun。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/2017-12-27_11-55-07-1024x358.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Railgun仅适用于64位系统，本文以Arch Linux为例进行安装。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;安装&lt;/h2&gt;
&lt;p&gt;下载cloudflare官方仓库的ubuntu版railgun包&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;mkdir rg-install
cd rg-install
wget http://pkg.cloudflare.com/dists/stretch/railgun/binary-amd64/Packages.gz
gunzip Packages.gz
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;获取railgun在cloudflare仓库的存储路径&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;cat Packages | grep Filename:
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;会看到如下输出&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;Filename: pool/stretch/railgun/r/railgun-stable/railgun-stable_5.3.3_amd64.deb
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;下载5.3.3版本并提取文件&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;wget http://pkg.cloudflare.com/pool/stretch/railgun/r/railgun-stable/railgun-stable_5.3.3_amd64.deb
ar -x *.deb
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;得到的&lt;code&gt;data.tar.xz&lt;/code&gt;就是我们所需要的&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;tar xvf data.tar.xz
mv etc /usr/local/etc/railgun
mv usr/bin /usr/local/lib/railgun
ln -s /usr/local/lib/railgun/* /usr/local/bin
cd ..
rm -rf rg-install
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;创建railgun相关目录，同时安全起见，使用&lt;code&gt;nobody&lt;/code&gt;用户运行railgun&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;mkdir /var/run/railgun
mkdir /var/log/railgun
chown nobody:nobody /var/run/railgun/
chown nobody:nobody /var/log/railgun/
chmod 0750 /var/log/railgun
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;这里注意Arch Linux的&lt;code&gt;nobody&lt;/code&gt;用户所在的组是&lt;code&gt;nobody&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;如果不确定可以运行&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;id nobody
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;显示出来的结果可能是：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;也可能是：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;uid=65534(nobody) gid=65534(nobody) groups=65534(nobody)
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;相应的，只需要执行：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;chown nobody:nogroup /var/run/railgun/
chown nobody:nogroup /var/log/railgun/
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;或是：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;chown nobody:nobody /var/run/railgun/
chown nobody:nobody /var/log/railgun/
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;安装railgun必需的memcached&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;pacman -S memcached
systemctl enable memcached
systemctl start memcached
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;设置systemd守护进程&lt;/h2&gt;
&lt;p&gt;创建&lt;code&gt;railgun.service&lt;/code&gt;文件&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;touch /etc/systemd/system/railgun.service
vim /etc/systemd/system/railgun.service
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;写入如下的内容&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[Unit]
Description=Cloudflare Railgun
After=network.target

[Service]
Type=simple
User=nobody
ExecStart=/usr/local/bin/rg-listener -config=/usr/local/etc/railgun/railgun/railgun.conf
RuntimeDirectory=railgun
PIDFile=/run/railgun.pid
[Install]
WantedBy=multi-user.target
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;至此，railgun安装完毕&lt;/p&gt;
&lt;h2&gt;启动&lt;/h2&gt;
&lt;p&gt;修改railgun的配置文件&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;vim /usr/local/etc/railgun/railgun/railgun.conf
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;需要修改29行为&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;map.file = /usr/local/etc/railgun/railgun/railgun-nat.conf
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;修改49行为&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;ca.bundle = /usr/local/etc/railgun/ssl/railgun-ca-certs.crt
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后修改22行的&lt;code&gt;activation.token&lt;/code&gt;为从cloudflare partner获取的&lt;code&gt;Token&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;修改23行&lt;code&gt;activation.railgun_host&lt;/code&gt;为该服务器IP地址&lt;/p&gt;
&lt;p&gt;保存生效后启动railgun并设置开机自启动&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;systemctl enable railgun
systemctl start railgun
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;在cloudflare partner后台看到status为active就表示安装成功&lt;/p&gt;
&lt;h2&gt;参考&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://gist.github.com/typcn/52506f29ade87df6f208ca11bf721a4b&quot;&gt;railgun-arch-install.zsh&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.cloudflare.com/media/pdf/cloudflare-whitepaper-railgun-chinese-simplified.pdf&quot;&gt;Railgun： 一切皆可缓存 - Cloudflare&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.cloudflare.com/zh-cn/website-optimization/railgun/&quot;&gt;Railgun - Cloudflare&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.cloudflare.com/zh-cn/website-optimization/railgun/&quot;&gt;Linux安装脚本&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</content:encoded></item><item><title>vlmcsd搭建KMS服务器</title><link>https://yushum.com/posts/vlmcsd%E6%90%AD%E5%BB%BAkms%E6%9C%8D%E5%8A%A1%E5%99%A8/</link><guid isPermaLink="true">https://yushum.com/posts/vlmcsd%E6%90%AD%E5%BB%BAkms%E6%9C%8D%E5%8A%A1%E5%99%A8/</guid><pubDate>Thu, 16 Apr 2020 18:56:40 GMT</pubDate><content:encoded>&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/logo.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;vlmcsd是C语言写的开源KMS模拟器（当前可以在包括Android在内的Linux, FreeBSD, Solaris, Minix, Mac OS, iOS, Windows上运行）。&lt;/p&gt;
&lt;p&gt;这里介绍一下如何在64位Debian系统下搭建并使用systemd守护其进程。&lt;/p&gt;
&lt;h2&gt;下载&lt;/h2&gt;
&lt;p&gt;可以在Github上下载到其最新版本&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/Wind4/vlmcsd/releases/latest&quot;&gt;点击此处前往最新版本下载地址&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;部署&lt;/h2&gt;
&lt;p&gt;以常见的Intel处理器为例，只需要将下载下来的压缩包内&lt;code&gt;/binaries/Linux/intel/static&lt;/code&gt;目录中的&lt;code&gt;vlmcsd-x64-musl-static&lt;/code&gt;文件上传到服务器&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;mkdir /usr/local/lib/vlmcsd
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;这里放到了&lt;code&gt;/usr/local/lib/vlmcsd&lt;/code&gt;目录内，然后给予其权限&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;chmod -R 0755 /usr/local/lib/vlmcsd
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;使用systemd守护进程&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;touch /etc/systemd/system/vlmcsd.service
&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;[Unit]
Description=KMS activation using vlmcsd
After=network.target

[Service]
Type=simple
ExecStart=/usr/local/bin/vlmcsd -D -p /var/run/vlmcsd.pid
Restart=on-abort
KillSignal=SIGTERM
PIDFile=/var/run/vlmcsd.pid
User=nobody

[Install]
WantedBy=multi-user.target
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;启动进程并设置开机启动&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;systemctl enable vlmcsd.service
systemctl start vlmcsd.service
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;至此，部署完毕&lt;/p&gt;
&lt;h2&gt;测试&lt;/h2&gt;
&lt;p&gt;在本地Windows下进行测试，进入\binaries\Windows\intel目录&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;vlmcs-Windows-x64.exe -v -l 3 {服务器IP}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;看到&lt;code&gt;successful&lt;/code&gt;代表测试成功&lt;/p&gt;
</content:encoded></item><item><title>在Debian系统下APT安装最新版NGINX</title><link>https://yushum.com/posts/%E5%9C%A8debian%E7%B3%BB%E7%BB%9F%E4%B8%8Bapt%E5%AE%89%E8%A3%85%E6%9C%80%E6%96%B0%E7%89%88nginx/</link><guid isPermaLink="true">https://yushum.com/posts/%E5%9C%A8debian%E7%B3%BB%E7%BB%9F%E4%B8%8Bapt%E5%AE%89%E8%A3%85%E6%9C%80%E6%96%B0%E7%89%88nginx/</guid><pubDate>Wed, 15 Apr 2020 18:49:07 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;blockquote&gt;
&lt;p&gt;Nginx是一个异步框架的Web服务器，也可以用作反向代理，负载平衡器和HTTP缓存。该软件由Igor Sysoev创建，并于2004年首次公开发布。同名公司成立于2011年，以提供支持。Nginx是一款免费的开源软件，根据类BSD许可证的条款发布。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;本文介绍的是如何在Debian系统中通过添加源的方式，apt安装最新版Nginx.&lt;/p&gt;
&lt;p&gt;安装PHP可以看这篇文章：&lt;a href=&quot;https://yushum.com/euserv%E5%85%8D%E8%B4%B9ipv6-vps/4&quot;&gt;在Debian系统中APT安装PHP 7.1/7.2/7.3/7.4&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;安装&lt;/h2&gt;
&lt;p&gt;安装先决条件：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt install curl gnupg2 ca-certificates lsb-release
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;要为稳定的nginx软件包设置apt仓库，请运行以下命令：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;echo &quot;deb http://nginx.org/packages/debian `lsb_release -cs` nginx&quot; \
    | sudo tee /etc/apt/sources.list.d/nginx.list
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;如果要使用主线nginx软件包，请改为运行以下命令：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;echo &quot;deb http://nginx.org/packages/mainline/debian `lsb_release -cs` nginx&quot; \
    | sudo tee /etc/apt/sources.list.d/nginx.list
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;接下来，导入官方的nginx签名密钥，以便apt可以验证软件包的真实性：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;curl -fsSL https://nginx.org/keys/nginx_signing.key | sudo apt-key add -
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;验证您现在是否具有正确的密钥：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt-key fingerprint ABF5BD827BD9BF62
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;输出应包含完整指纹&lt;code&gt;573B FD6B 3D8F BC64 1079 A6AB ABF5 BD82 7BD9 BF62&lt;/code&gt;如下：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;pub   rsa2048 2011-08-19 [SC] [expires: 2024-06-14]
      573B FD6B 3D8F BC64 1079  A6AB ABF5 BD82 7BD9 BF62
uid   [ unknown] nginx signing key
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;要安装nginx，请运行以下命令：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt update
sudo apt install nginx
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;常见问题&lt;/h2&gt;
&lt;p&gt;使用 NGINX 官方源安装会发现 Systemd 中存在报错&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;● nginx.service - nginx - high performance web server
   Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
   Active: active (running) since Wed 2020-04-15 18:16:30 CST; 22min ago
     Docs: http://nginx.org/en/docs/
  Process: 31377 ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf (code=exited, status=0/SUCCESS)
 Main PID: 31379 (nginx)
    Tasks: 3 (limit: 1122)
   Memory: 8.4M
   CGroup: /system.slice/nginx.service
           ├─31379 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
           ├─31380 nginx: worker process
           └─31381 nginx: worker process

4月 15 18:16:30 debian systemd[1]: nginx.service: Succeeded.
4月 15 18:16:30 debian systemd[1]: Stopped nginx - high performance web server.
4月 15 18:16:30 debian systemd[1]: Starting nginx - high performance web server...
4月 15 18:16:30 debian systemd[1]: nginx.service: Can&apos;t open PID file /run/nginx.pid (yet?) after start: No such file or directory
4月 15 18:16:30 debian systemd[1]: Started nginx - high performance web server.
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;问题原因&lt;/h3&gt;
&lt;p&gt;这是因为 NGX 启动时 PID 文件并未产生，导致文件无法读取&lt;/p&gt;
&lt;h3&gt;解决方法：&lt;/h3&gt;
&lt;p&gt;在&lt;code&gt;/lib/systemd/system/nginx.service&lt;/code&gt;中添加下面语句，以实现在执行可执行文件前等待 0.1s&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;ExecStartPost=/bin/sleep 0.1
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后重载守护单元&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;systemctl daemon-reload
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;重启nginx即可&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;service nginx restart
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;参考链接&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://nginx.org/en/linux_packages.html#Debian&quot;&gt;nginx: Linux packages&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://bugs.launchpad.net/ubuntu/+source/nginx/+bug/1581864&quot;&gt;nginx.service: Failed to read PID from file /run/nginx.pid: Invalid argument&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>在Debian系统中APT安装PHP 7.1/7.2/7.3/7.4</title><link>https://yushum.com/posts/%E5%9C%A8debian%E7%B3%BB%E7%BB%9F%E4%B8%ADapt%E5%AE%89%E8%A3%85%E6%9C%80%E6%96%B0%E7%89%88php/</link><guid isPermaLink="true">https://yushum.com/posts/%E5%9C%A8debian%E7%B3%BB%E7%BB%9F%E4%B8%ADapt%E5%AE%89%E8%A3%85%E6%9C%80%E6%96%B0%E7%89%88php/</guid><pubDate>Fri, 03 Apr 2020 16:13:17 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;blockquote&gt;
&lt;p&gt;PHP是一种流行的通用脚本语言，特别适合于Web开发。&lt;/p&gt;
&lt;p&gt;PHP快速，灵活且实用，为您的博客到世界上最受欢迎的网站提供了强大的支持。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;本文介绍的是如何在Debian系统中通过添加源的方式，apt安装最新版（或者指定版本)PHP和相关组件。&lt;/p&gt;
&lt;p&gt;安装Nginx可以看这篇：&lt;a href=&quot;https://yushum.com/%E5%9C%A8debian%E7%B3%BB%E7%BB%9F%E4%B8%8Bapt%E5%AE%89%E8%A3%85%E6%9C%80%E6%96%B0%E7%89%88nginx/&quot;&gt;在Debian系统下APT安装最新版NGINX&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;添加APT源&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://deb.sury.org/&quot;&gt;Sury&lt;/a&gt;是一个为Debian系统提供PHP 7.4 / 7.3 / 7.2 / 7.1的第三方仓库，在其官网可以看到它的详细说明。&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;默认情况下，Debian 10附带了PHP 7.3。 因此，您可以从Debian存储库或SURY存储库安装PHP 7.3。 如果要从Debian存储库安装PHP 7.3，请跳过本节。 但是，如果要在Debian 10上安装PHP 7.4 / 7.2 / 7.1，则必须设置SURY存储库。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;更新存储库缓存&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt update
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;安装以下软件包&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt install -y curl wget gnupg2 ca-certificates lsb-release apt-transport-https
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;使用以下命令导入密钥&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;wget https://packages.sury.org/php/apt.gpg
 sudo apt-key add apt.gpg
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;将SURY存储库添加到系统&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo sh -c &apos;echo &quot;deb https://packages.sury.org/php/ $(lsb_release -sc) main&quot; &amp;gt; /etc/apt/sources.list.d/php.list&apos;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;更新存储库索引&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt update
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;安装PHP&lt;/h2&gt;
&lt;h3&gt;在Debian 10 / Debian 9上安装PHP 7.4&lt;/h3&gt;
&lt;p&gt;使用以下命令安装PHP 7.4&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt install -y php7.4 php7.4-cli php7.4-common
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;在Debian 10 / Debian 9上安装PHP 7.3&lt;/h3&gt;
&lt;p&gt;使用以下命令安装PHP 7.3&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt install -y php7.3 php7.3-cli php7.3-common
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;在Debian 10 / Debian 9上安装PHP 7.2&lt;/h3&gt;
&lt;p&gt;使用以下命令安装PHP 7.2&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt install -y php7.2 php7.2-cli php7.2-common
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;在Debian 10 / Debian 9上安装PHP 7.1&lt;/h3&gt;
&lt;p&gt;使用以下命令安装PHP 7.1&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt install -y php7.1 php7.1-cli php7.1-common
&lt;/code&gt;&lt;/pre&gt;
&lt;blockquote&gt;
&lt;p&gt;您的系统上可以有多个PHP版本。 每个PHP版本在&lt;code&gt;/etc/php/7.X&lt;/code&gt;目录下都有单独的配置文件。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;设置默认PHP版本&lt;/h2&gt;
&lt;p&gt;如果系统具有多个PHP版本，则可以使用以下命令设置默认的PHP版本。&lt;/p&gt;
&lt;p&gt;将你想要设置为默认PHP版本的版本更改为php7.3&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo update-alternatives --set php /usr/bin/php7.3
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;检查PHP版本&lt;/h2&gt;
&lt;p&gt;安装PHP后，请检查版本&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;php -v
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;输出：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;PHP 7.4.4 (cli) (built: Mar 20 2020 14:24:19) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
    with Zend OPcache v7.4.4, Copyright (c), by Zend Technologies
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Web服务器的PHP支持&lt;/h2&gt;
&lt;p&gt;当浏览器请求PHP页面时，默认情况下，Apache和Nginx都不支持处理PHP文件。 因此我们需要在服务器上安装PHP软件包以支持PHP文件。&lt;/p&gt;
&lt;h3&gt;Apache的PHP支持&lt;/h3&gt;
&lt;p&gt;在Apache Web服务器上安装以下软件包以支持PHP。 该软件包提供了适用于Apache 2 Web服务器的PHP模块。 （注意修改PHP版本为你所需要的）&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt install -y apache2 libapache2-mod-php7.4
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Nginx的PHP支持&lt;/h3&gt;
&lt;p&gt;Nginx没有支持PHP的PHP模块包。 但是，我们可以使用PHP FastCGI Process Manager来处理PHP请求。（注意修改PHP版本为你所需要的）&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt install -y php7.4-fpm
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;安装FastCGI管理器后，在Nginx虚拟主机中添加接口&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;server {

# 其他代码

  location ~* \.php$ {
    fastcgi_pass unix:/run/php/php7.4-fpm.sock;
    include         fastcgi_params;
    fastcgi_param   SCRIPT_FILENAME    $document_root$fastcgi_script_name;
    fastcgi_param   SCRIPT_NAME        $fastcgi_script_name;
  }
}
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;安装PHP扩展&lt;/h2&gt;
&lt;p&gt;PHP扩展为您的代码启用了特定的功能和支持。 例如，安装PHP MySQL扩展将使您的PHP代码与MySQL数据库连接。&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;PHP扩展软件包的名称通常类似于&lt;code&gt;php&amp;lt;version&amp;gt;-&amp;lt;extn_name&amp;gt;&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;要安装MySQL对PHP 7.4的支持，可以安装&lt;code&gt;php7.4-mysql&lt;/code&gt;软件包&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt install -y php7.4-mysql
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;安装所需的扩展程序后，请使用以下命令进行验证&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;php -m | grep -i mysql
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;输出：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;mysqli
 mysqlnd
 pdo_mysql
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;CMS的PHP扩展&lt;/h3&gt;
&lt;h4&gt;WordPress的PHP扩展&lt;/h4&gt;
&lt;p&gt;需要以下扩展，才能在Debian系统上安装和运行WordPress。&lt;/p&gt;
&lt;p&gt;WordPress建议安装PHP 7.3或更高版本&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt install -y php7.4-mysql php7.4-dom php7.4-simplexml php7.4-ssh2 php7.4-xml php7.4-xmlreader php7.4-curl  php7.4-exif  php7.4-ftp php7.4-gd  php7.4-iconv php7.4-imagick php7.4-json  php7.4-mbstring php7.4-posix php7.4-sockets php7.4-tokenizer
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Typecho的PHP扩展&lt;/h4&gt;
&lt;p&gt;需要以下扩展，才能在Debian系统上安装和运行Typecho。&lt;/p&gt;
&lt;p&gt;Typecho建议安装PHP5.1或更高版本&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt install -y php7.4-xml php7.4-curl php7.4-mysql php7.4-mbstring
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Joomla的PHP扩展&lt;/h4&gt;
&lt;p&gt;需要以下扩展，才能在Debian系统上安装和运行Joomla。&lt;/p&gt;
&lt;p&gt;Joomla需要PHP v7.1或更高版本&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt install -y php7.4-mysql php7.4-xml php-pear php7.4-json
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Drupal的PHP扩展&lt;/h4&gt;
&lt;p&gt;以下扩展是在Debian系统上安装和运行Drupal所必需的。&lt;/p&gt;
&lt;p&gt;Drupal需要PHP v7.1或更高版本&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt install -y php7.4-mysql php7.4-dom php7.4-gd php7.4-json php7.4-pdo php7.4-simplexml php7.4-tokenizer php7.4-xml
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;结语&lt;/h2&gt;
&lt;p&gt;有问题请在评论里留言。&lt;/p&gt;
</content:encoded></item><item><title>Euserv免费IPv6 VPS</title><link>https://yushum.com/posts/euserv%E5%85%8D%E8%B4%B9ipv6-vps/</link><guid isPermaLink="true">https://yushum.com/posts/euserv%E5%85%8D%E8%B4%B9ipv6-vps/</guid><pubDate>Sun, 29 Mar 2020 17:43:50 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;Euserv是一家德国主机商，提供专用服务器托管，虚拟专用服务器，云服务，网站托管和域注册服务。 成立时间很久了，免费IPv6 VPS也有提供了一段时间，还是很不错的。&lt;/p&gt;
&lt;p&gt;目前该商家提供免费ipv6主机服务器，配置信息如下：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;CPU：1 Core @ 1 GHz&lt;/li&gt;
&lt;li&gt;内存：1 GB&lt;/li&gt;
&lt;li&gt;硬盘：10 GB HDD&lt;/li&gt;
&lt;li&gt;带宽：1 Gbit&lt;/li&gt;
&lt;li&gt;I   P ：1 IPv6&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;购买&lt;/h2&gt;
&lt;p&gt;购买地址： &lt;a href=&quot;https://www.euserv.com/en/virtual-private-server/root-vserver/v2/vs2-free.php&quot;&gt;https://www.euserv.com/en/virtual-private-server/root-vserver/v2/vs2-free.php&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;全是英文就不多说了，资料全填真实信息不容易翻车，不懂的翻译一下。&lt;/p&gt;
&lt;h2&gt;使用&lt;/h2&gt;
&lt;p&gt;进入到控制面板，装好系统，本人装的是Debian 10，耐心等一段时间（因为免费小鸡超售爆炸严重，可能需要等待超过1小时），然后进入Serverdata查看密码，如下图所示&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/2020-03-12-170949-1024x543.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;拿到IP和密码 然后打开putty 以root用户身份登录&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/Inked-2020-03-12-171514_LI.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;地址不要/128&lt;br /&gt;
本地有IPv6的话就已经可以连了&lt;br /&gt;
没有的话需要添加代理 用有IPv6的小鸡中转一下 （小鸡没有IPv6就到&lt;a href=&quot;https://tunnelbroker.net/&quot;&gt;https://tunnelbroker.net/&lt;/a&gt;申请一个，最好是美国小鸡，否则环球旅行）&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/2020-03-12-171852.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;到此就可以使用了&lt;/p&gt;
&lt;h2&gt;添加IPv4网络支持&lt;/h2&gt;
&lt;p&gt;IPv6 only的VPS无法访问IPv4网络，现在IPv4还是主流，可以用一些免费的DNS64+NAT64服务达到访问IPv4的目的&lt;/p&gt;
&lt;p&gt;比如&lt;a href=&quot;http://www.trex.fi/2011/dns64.html&quot;&gt;http://www.trex.fi/2011/dns64.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;具体方法：&lt;/p&gt;
&lt;p&gt;直接执行&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;echo -e &quot;nameserver 2001:67c:2b0::4\nnameserver 2001:67c:2b0::6&quot; &amp;gt; /etc/resolv.conf
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;就可以了&lt;/p&gt;
&lt;h2&gt;注意&lt;/h2&gt;
&lt;p&gt;有些人可能一意孤行要用google的DNS64，但是注意google的DNS64没有配套的NAT64，需要你自己在内网搭建一个NAT64网关&lt;/p&gt;
</content:encoded></item><item><title>PHP-Friends评测：2020春季特别款廉价VDS</title><link>https://yushum.com/posts/php-friends%E8%AF%84%E6%B5%8B%E5%B9%B6%E4%B8%8D%E5%BB%89%E4%BB%B7%E7%9A%84%E9%AB%98%E6%80%A7%E4%BB%B7%E6%AF%94vds/</link><guid isPermaLink="true">https://yushum.com/posts/php-friends%E8%AF%84%E6%B5%8B%E5%B9%B6%E4%B8%8D%E5%BB%89%E4%BB%B7%E7%9A%84%E9%AB%98%E6%80%A7%E4%BB%B7%E6%AF%94vds/</guid><pubDate>Wed, 25 Mar 2020 11:19:00 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://php-friends.de&quot;&gt;PHP-Friends&lt;/a&gt;是德国老牌商家，服务器托管在First Colo，VPS基于KVM，SSD硬盘，DDR4内存，E5-2630 v3 / v4，不限流量，100-200 GBit/s的DDOS防护，支持自定义ISO。&lt;/p&gt;
&lt;p&gt;需要注意的是他家虽然不限流量，其实是限的，在后台可以看到限制的流量数，超出以后会限速到10Mbps。博主本次购买的是2TB/月。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/image.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;配置信息&lt;/h2&gt;
&lt;h3&gt;系统信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;OS Release:             Debian GNU/Linux &quot;Buster&quot; 10.3 (x86_64)
CPU Model:              Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz 2.20GHz
CPU Cache Size:         16384 KB
CPU Number:             2 vCPU
Virt Type:              KVM
Memory Usage:           104.84 MB / 9.76 GB
Swap Usage:             [ No Swapfile / Swap partition ]
Disk Usage:             1.41 GB / 82.54 GB
Boot Device:            /dev/vda1
Load (1/5/15min):       0.32 0.11 0.03 
CPU Usage:              2.9% used, 0.0% iowait, 8.6% steal
Kernel Version:         4.19.0-8-amd64
Network CC Method:      bbr + fq
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;网络信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;IPV4 - IP Address:      [DE] 2.59.132.*
IPV4 - ASN Info:        AS44066 (First Colo GmbH)
IPV4 - Region:          Germany North Rhine-Westphalia Oberhausen
IPV6 - IP Address:      [DE] 2a0d:5940:7:f6::*
IPV6 - ASN Info:        AS44066 (First Colo GmbH)
IPV6 - Region:          Germany Hesse Frankfurt am Main
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;CPU性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread Test:          675 Scores
2 Threads Test:         1280 Scores
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;内存性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread - Read Test :  14608.07 MB/s
1 Thread - Write Test:  9176.25 MB/s
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;硬盘速度测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Test Name		Write Speed				Read Speed
10MB-4K Block		14.6 MB/s (3561 IOPS, 0.72 s)		18.1 MB/s (4408 IOPS, 0.58 s)
10MB-1M Block		541 MB/s (516 IOPS, 0.02 s)		434 MB/s (414 IOPS, 0.02 s)
100MB-4K Block		20.7 MB/s (5053 IOPS, 5.07 s)		22.1 MB/s (5385 IOPS, 4.75 s)
100MB-1M Block		877 MB/s (836 IOPS, 0.12 s)		1.3 GB/s (1204 IOPS, 0.08 s)
1GB-4K Block		15.3 MB/s (3736 IOPS, 68.52 s)		14.4 MB/s (3505 IOPS, 73.02 s)
1GB-1M Block		418 MB/s (398 IOPS, 2.51 s)		681 MB/s (649 IOPS, 1.54 s)
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;网络测试&lt;/h2&gt;
&lt;h3&gt;Speedtest.net网速测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Node Name			Upload Speed	Download Speed	Ping Latency
Speedtest Default		63.47 MB/s	16.52 MB/s	12.20 ms
China, Jilin CU		        5.81 MB/s	51.57 MB/s	305.82 ms
China, Shandong CU		Fail: Unknown Error
China, Nanjing CU		4.37 MB/s	25.13 MB/s	283.47 ms
China, Shanghai CU		Fail: Unknown Error
China, Lanzhou CU		Fail: Unknown Error
China, Beijing CT		0.94 MB/s	75.54 MB/s	181.88 ms
China, Hangzhou CT		0.21 MB/s	1.78 MB/s	212.51 ms
China, Nanjing CT		2.62 MB/s	81.53 MB/s	253.39 ms
China, Guangzhou CT		Fail: Unknown Error
China, Wuhan CT		        0.20 MB/s	3.48 MB/s	227.89 ms
China, Shenyang CM		Fail: Unknown Error
China, Hangzhou CM		Fail: Unknown Error
China, Nanning CM		Fail: Unknown Error
China, Lanzhou CM		Fail: Unknown Error
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;IPv4路由测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 50 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 50 hops max, 60 byte packets
 1  2.59.132.1  4.02 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  29.66 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  5.09 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  1.00 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  *
 6  219.158.11.189  249.25 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 7  219.158.103.33  252.43 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 8  219.158.24.125  319.28 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 9  219.158.15.33  308.94 ms  AS4837  China Beijing ChinaUnicom
10  *
11  123.126.0.246  315.22 ms  AS4808  China Beijing ChinaUnicom
12  61.148.158.106  303.41 ms  AS4808  China Beijing ChinaUnicom
13  61.135.113.154  330.17 ms  AS4808  China Beijing ChinaUnicom
14  *
15  *
16  *
17  123.125.99.1  322.45 ms  AS4808  China Beijing ChinaUnicom


Traceroute to China, Beijing CT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 180.149.128.1 (180.149.128.1), 50 hops max, 60 byte packets
 1  2.59.132.1  45.61 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  14.92 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  14.75 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  78.152.43.129  1.02 ms  AS5580  Germany Hesse Frankfurt hibernianetworks.com
 5  141.136.110.41  3.94 ms  AS3257  GTT.NET BACKBONE gtt.net
 6  154.14.32.238  3.86 ms  AS3257  Europe Regions interoute.com
 7  202.97.52.69  217.77 ms  AS4134  China ChinaTelecom
 8  202.97.53.69  146.12 ms  AS4134  China Beijing ChinaTelecom
 9  *
10  *
11  180.149.128.1  233.14 ms  AS23724  China Beijing ChinaTelecom


Traceroute to China, Beijing CM (TCP Mode, Max 50 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 50 hops max, 60 byte packets
 1  2.59.132.1  56.85 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  9.35 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.74 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  10.07 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  62.115.116.165  144.64 ms  AS1299  Germany Hesse Frankfurt telia.com
 6  *
 7  *
 8  62.115.125.191  98.72 ms  AS1299  United States Georgia Atlanta telia.com
 9  *
10  223.120.6.17  174.19 ms  AS58453  United States California Los Angeles ChinaMobile
11  62.115.136.47  145.86 ms  AS1299  United States California Los Angeles telia.com
12  *
13  *
14  *
15  221.176.27.253  300.14 ms  AS9808  China Beijing ChinaMobile
16  *
17  *
18  221.176.16.213  303.76 ms  AS9808  China Beijing ChinaMobile
19  211.136.63.66  332.29 ms  AS56048  China Beijing ChinaMobile
20  211.136.95.226  300.45 ms  AS56048  China Beijing ChinaMobile
21  *
22  *
23  211.136.25.153  325.08 ms  AS56048  China Beijing ChinaMobile


Traceroute to China, Shanghai CU (TCP Mode, Max 50 Hop)
============================================================
traceroute to 58.247.0.49 (58.247.0.49), 50 hops max, 60 byte packets
 1  2.59.132.1  16.67 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  27.31 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.47 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  78.152.43.129  11.51 ms  AS5580  Germany Hesse Frankfurt hibernianetworks.com
 5  89.149.186.181  1.82 ms  AS3257  Germany Hesse Frankfurt gtt.net
 6  *
 7  219.158.11.157  216.28 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 8  219.158.3.49  213.81 ms  AS4837  China Beijing ChinaUnicom
 9  *
10  219.158.7.230  257.44 ms  AS4837  China Shanghai ChinaUnicom
11  *
12  139.226.210.53  278.07 ms  AS17621  China Shanghai ChinaUnicom
13  58.247.0.49  315.60 ms  AS17621  China Shanghai ChinaUnicom


Traceroute to China, Shanghai CT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 180.153.28.1 (180.153.28.1), 50 hops max, 60 byte packets
 1  2.59.132.1  11.99 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  10.28 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.66 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  78.152.43.129  0.96 ms  AS5580  Germany Hesse Frankfurt hibernianetworks.com
 5  141.136.107.233  1.18 ms  AS3257  GTT.NET BACKBONE gtt.net
 6  154.14.32.238  4.26 ms  AS3257  Europe Regions interoute.com
 7  202.97.52.193  220.36 ms  AS4134  China Shanghai ChinaTelecom
 8  *
 9  202.97.57.146  197.77 ms  AS4134  China Shanghai ChinaTelecom
10  *
11  *
12  124.74.232.62  316.42 ms  AS4812  China Shanghai ChinaTelecom
13  *
14  *
15  101.227.250.2  212.85 ms  AS4812  China Shanghai ChinaTelecom
16  180.153.28.1  214.55 ms  AS4812  China Shanghai ChinaTelecom


Traceroute to China, Shanghai CM (TCP Mode, Max 50 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 50 hops max, 60 byte packets
 1  2.59.132.1  5.59 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  2.44 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.53 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  0.78 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  62.115.121.6  1.54 ms  AS1299  Germany Hesse Frankfurt telia.com
 6  *
 7  *
 8  223.120.10.121  1.78 ms  AS58453  Germany Hesse Frankfurt ChinaMobile
 9  *
10  *
11  *
12  221.176.22.125  300.78 ms  AS9808  China Guangdong Guangzhou ChinaMobile
13  *
14  *
15  221.183.55.22  202.67 ms  AS9808  China Shanghai ChinaMobile


Traceroute to China, Guangzhou CU (TCP Mode, Max 50 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 50 hops max, 60 byte packets
 1  2.59.132.1  55.16 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  23.25 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.37 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  78.152.43.129  0.51 ms  AS5580  Germany Hesse Frankfurt hibernianetworks.com
 5  89.149.186.181  0.96 ms  AS3257  Germany Hesse Frankfurt gtt.net
 6  *
 7  219.158.98.137  215.73 ms  AS4837  China Beijing ChinaUnicom
 8  219.158.16.65  212.92 ms  AS4837  China Beijing ChinaUnicom
 9  219.158.5.153  276.98 ms  AS4837  China Beijing ChinaUnicom
10  *
11  112.91.0.254  288.40 ms  AS17816  China Guangdong Guangzhou ChinaUnicom
12  120.80.175.78  281.66 ms  AS17622  China Guangdong Guangzhou ChinaUnicom
13  210.21.4.130  283.17 ms  AS17622  China Guangdong Guangzhou ChinaUnicom


Traceroute to China, Guangzhou CT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 50 hops max, 60 byte packets
 1  2.59.132.1  11.69 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  2.07 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.73 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  78.152.43.129  12.00 ms  AS5580  Germany Hesse Frankfurt hibernianetworks.com
 5  141.136.107.233  3.61 ms  AS3257  GTT.NET BACKBONE gtt.net
 6  154.14.32.238  2.38 ms  AS3257  Europe Regions interoute.com
 7  202.97.52.225  217.29 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
 8  202.97.12.42  217.56 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
 9  202.97.94.129  230.94 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
10  113.108.209.1  223.18 ms  AS58466  China Guangdong Guangzhou ChinaTelecom


Traceroute to China, Guangzhou CM (TCP Mode, Max 50 Hop)
============================================================
traceroute to 211.139.129.5 (211.139.129.5), 50 hops max, 60 byte packets
 1  2.59.132.1  11.17 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  5.10 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  4.30 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  0.68 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  62.115.141.238  1.25 ms  AS1299  Germany Hesse Frankfurt telia.com
 6  62.115.114.89  1.10 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.37.159  2.35 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  *
 9  *
10  221.183.55.86  245.05 ms  AS9808  China Guangdong Guangzhou ChinaMobile
11  *
12  *
13  221.183.13.174  260.74 ms  AS9808  China Guangdong Shenzhen ChinaMobile
14  183.235.226.17  259.35 ms  AS56040  China Guangdong Guangzhou ChinaMobile
15  *
16  211.139.129.5  260.49 ms  AS56040  China Guangdong Guangzhou ChinaMobile


Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 50 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 50 hops max, 60 byte packets
 1  2.59.132.1  14.04 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  8.18 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.51 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  78.152.43.129  0.62 ms  AS5580  Germany Hesse Frankfurt hibernianetworks.com
 5  141.136.110.117  1.42 ms  AS3257  GTT.NET BACKBONE gtt.net
 6  46.33.86.254  2.38 ms  AS3257  GTT.NET BACKBONE gtt.net
 7  213.206.129.65  12.00 ms  AS1239  United Kingdom sprint.com
 8  144.232.9.111  88.67 ms  AS1239  United States sprint.com
 9  144.232.15.17  115.27 ms  AS1239  United States sprint.com
10  144.232.22.202  127.34 ms  AS1239  United States sprint.com
11  144.232.10.205  121.96 ms  AS1239  United States sprint.com
12  144.232.15.165  155.88 ms  AS1239  United States sprint.com
13  144.232.15.237  163.82 ms  AS1239  United States sprint.com
14  144.232.22.176  150.14 ms  AS1239  United States California sprint.com
15  144.232.9.176  160.07 ms  AS1239  United States California San Jose sprint.com
16  144.232.22.215  157.26 ms  AS1239  United States California San Jose sprint.com
17  144.223.242.10  302.11 ms  AS1239  United States California San Jose sprint.com
18  218.105.2.129  311.05 ms  AS9929  China Guangdong Guangzhou ChinaUnicom
19  *
20  210.13.112.254  272.15 ms  AS9929  China Shanghai ChinaUnicom
21  210.13.66.237  291.23 ms  AS9929  China Shanghai ChinaUnicom
22  210.13.66.238  280.36 ms  AS9929  China Shanghai ChinaUnicom


Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 50 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 50 hops max, 60 byte packets
 1  2.59.132.1  76.91 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  1.46 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.47 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.193.79  12.71 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  202.40.148.33  16.33 ms  AS4637,AS10026  United Kingdom London reach.com
 6  202.84.140.97  243.84 ms  AS4637  TELSTRA.COM BACKBONE telstra.com
 7  202.84.224.197  244.89 ms  AS4637  Singapore telstra.com
 8  210.57.30.22  172.19 ms  AS4637,AS10026  Singapore telstra.com
 9  59.43.180.125  192.64 ms  *  China Guangdong Guangzhou ChinaTelecom
10  59.43.187.65  197.60 ms  *  China Shanghai ChinaTelecom
11  59.43.130.205  194.18 ms  *  China Shanghai ChinaTelecom
12  61.152.24.190  230.80 ms  AS4812  China Shanghai ChinaTelecom
13  58.32.0.1  198.82 ms  AS4812  China Shanghai ChinaTelecom


Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 50 Hop)
============================================================
traceroute to 14.131.128.1 (14.131.128.1), 50 hops max, 60 byte packets
 1  2.59.132.1  7.75 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  31.54 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  17.77 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  0.83 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  *
 6  219.158.11.209  235.70 ms  AS4837  China Beijing ChinaUnicom
 7  219.158.98.93  238.16 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 8  219.158.19.65  260.61 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 9  219.158.19.225  262.52 ms  AS4837  China Beijing ChinaUnicom
10  61.149.203.46  266.07 ms  AS4808  China Beijing ChinaUnicom
11  202.106.193.42  270.39 ms  AS4808  China Beijing ChinaUnicom
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
31  *
32  *
33  *
34  *
35  *
36  *
37  *
38  *
39  *
40  *
41  *
42  *
43  *
44  *
45  *
46  *
47  *
48  *
49  *
50  *


Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 50 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 50 hops max, 60 byte packets
 1  2.59.132.1  115.15 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  38.88 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.53 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  0.91 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  *
 6  219.158.11.181  232.66 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 7  219.158.103.25  255.07 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 8  219.158.19.65  260.81 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 9  *
10  *
11  202.96.13.110  278.64 ms  AS4808  China Beijing ChinaUnicom
12  61.51.37.206  269.23 ms  AS4808  China Beijing ChinaUnicom
13  218.241.244.18  265.26 ms  AS4808,AS4847  China Beijing DRPENG
14  124.205.97.138  278.95 ms  AS4808  China Beijing DRPENG
15  218.241.253.134  266.74 ms  AS4808,AS4847  China Beijing DRPENG
16  211.167.230.100  297.56 ms  AS4808,AS17964  China Beijing DRPENG


Traceroute to China, Beijing CERNET (TCP Mode, Max 50 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 50 hops max, 60 byte packets
 1  2.59.132.1  106.02 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  44.68 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.34 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.193.79  15.75 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  202.40.148.33  16.40 ms  AS4637,AS10026  United Kingdom London reach.com
 6  202.84.136.14  262.99 ms  AS4637  TELSTRA.COM BACKBONE telstra.com
 7  202.84.157.37  262.19 ms  AS4637  China Hong Kong telstra.com
 8  61.8.59.38  256.89 ms  AS4637,AS10026  China Hong Kong pacnet.com
 9  101.4.114.181  284.58 ms  AS4538  China Beijing CHINAEDU
10  101.4.115.153  277.78 ms  AS4538  China CHINAEDU
11  101.4.114.58  279.63 ms  AS4538  China Beijing CHINAEDU
12  101.4.114.58  281.87 ms  AS4538  China Beijing CHINAEDU
13  219.224.102.234  277.07 ms  AS4538  China Beijing CHINAEDU
14  219.224.102.234  281.01 ms  AS4538  China Beijing CHINAEDU
15  202.112.38.82  278.27 ms  AS4538  China Beijing CHINAEDU
16  202.205.109.205  285.75 ms  AS4538  China Beijing CHINAEDU


Traceroute to China, Beijing CSTNET (TCP Mode, Max 50 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 50 hops max, 60 byte packets
 1  2.59.132.1  10.17 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  4.01 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  7.60 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  149.14.69.193  1.22 ms  AS174  Germany Hesse Frankfurt cogentco.com
 5  154.54.56.189  1.65 ms  AS174  Germany Hesse Frankfurt cogentco.com
 6  154.54.58.234  10.96 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 7  130.117.49.154  21.79 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 8  154.54.1.118  188.56 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 9  *
10  159.226.254.5  222.62 ms  AS7497  China Beijing CSTNET
11  159.226.254.49  222.73 ms  AS7497  China Beijing CSTNET
12  159.226.254.1  223.13 ms  AS7497  China Beijing CSTNET


Traceroute to China, Beijing GCable (TCP Mode, Max 50 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 50 hops max, 60 byte packets
 1  2.59.132.1  9.46 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  17.80 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  1.13 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  21.38 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  *
 6  62.115.114.98  175.97 ms  AS1299  TELIA.COM BACKBONE telia.com
 7  62.115.114.228  147.99 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  62.115.113.20  149.42 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  80.91.246.162  103.36 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.117.48  148.94 ms  AS1299  TELIA.COM BACKBONE telia.com
11  62.115.171.221  168.83 ms  AS1299  Europe Regions telia.com
12  *
13  *
14  *
15  *
16  *
17  *
18  221.183.65.66  358.22 ms  AS9808  China Shanghai ChinaMobile
19  *
20  211.156.129.89  362.56 ms  AS7641  China Beijing chinabtn.com CATV
21  211.156.128.229  349.97 ms  AS7641  China Beijing chinabtn.com CATV
22  *
23  211.156.140.17  381.06 ms  AS7641  China Beijing chinabtn.com CATV


Traceroute to China, Hongkong CU (TCP Mode, Max 50 Hop)
============================================================
traceroute to 203.160.95.218 (203.160.95.218), 50 hops max, 60 byte packets
 1  2.59.132.1  17.58 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  8.61 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.62 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  78.152.43.129  8.84 ms  AS5580  Germany Hesse Frankfurt hibernianetworks.com
 5  89.149.184.38  178.60 ms  AS3257  China Hong Kong gtt.net
 6  69.174.124.134  169.07 ms  AS3257  China Hong Kong gtt.net
 7  119.252.139.14  169.08 ms  AS10099  China Hong Kong ChinaUnicom
 8  202.77.22.89  168.51 ms  AS10099  China Hong Kong ChinaUnicom
 9  203.160.95.218  168.87 ms  AS10099  China Hong Kong ChinaUnicom


Traceroute to China, Hongkong CT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 203.215.232.173 (203.215.232.173), 50 hops max, 60 byte packets
 1  2.59.132.1  18.42 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  2.07 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.38 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  213.198.77.85  1.98 ms  AS2914  Germany Hesse Frankfurt ntt.com
 5  129.250.6.50  1.40 ms  AS2914  NTT.COM BACKBONE ntt.com
 6  129.250.4.99  2.65 ms  AS2914  Germany Hesse Frankfurt ntt.com
 7  129.250.9.154  4.72 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  202.97.94.85  240.08 ms  AS4134  China Shanghai ChinaTelecom
 9  *
10  203.215.232.173  287.98 ms  AS4134  China Hong Kong ChinaTelecom


Traceroute to China, Hongkong CT CN2 (TCP Mode, Max 50 Hop)
============================================================
traceroute to 203.8.25.187 (203.8.25.187), 50 hops max, 60 byte packets
 1  2.59.132.1  18.04 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  11.18 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.53 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  10.73 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  62.115.137.166  17.43 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.123.13  16.49 ms  AS1299  France Ile-de-France Paris telia.com
 7  62.115.134.93  16.34 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  62.115.134.139  17.54 ms  AS1299  United Kingdom London telia.com
 9  80.239.193.226  21.07 ms  AS1299  TELIA.COM BACKBONE telia.com
10  59.43.246.165  138.80 ms  *  China Beijing ChinaTelecom
11  59.43.246.210  195.00 ms  *  China Hong Kong ChinaTelecom
12  59.43.186.122  196.36 ms  *  China Hong Kong ChinaTelecom
13  203.8.25.187  194.96 ms  AS4809  China Hong Kong ChinaTelecom


Traceroute to China, Hongkong CM (TCP Mode, Max 50 Hop)
============================================================
traceroute to 203.142.105.9 (203.142.105.9), 50 hops max, 60 byte packets
 1  2.59.132.1  7.84 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  14.96 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.41 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  0.69 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  62.115.137.168  17.65 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  *
 7  62.115.134.93  16.17 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  62.115.143.27  17.11 ms  AS1299  United Kingdom London telia.com
 9  62.115.12.242  19.37 ms  AS1299  TELIA.COM BACKBONE telia.com
10  223.118.18.162  243.43 ms  AS58453  China Hong Kong ChinaMobile
11  223.119.0.2  248.08 ms  AS58453  China Hong Kong ChinaMobile
12  203.142.100.165  244.64 ms  AS9231  China Hong Kong ChinaMobile
13  203.142.100.22  252.32 ms  AS9231  China Hong Kong ChinaMobile
14  203.142.105.9  248.76 ms  AS9231  China Hong Kong ChinaMobile


Traceroute to China, Hongkong HGC (TCP Mode, Max 50 Hop)
============================================================
traceroute to 218.188.104.30 (218.188.104.30), 50 hops max, 60 byte packets
 1  2.59.132.1  158.76 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  61.27 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.92 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.192.172  0.70 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  80.81.192.64  16.94 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 6  85.95.25.221  252.79 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
 7  85.95.25.125  251.25 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
 8  85.95.25.105  250.92 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
 9  85.95.27.242  261.23 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
10  80.77.1.126  202.93 ms  AS15412  China Hong Kong globalcloudxchange.com
11  218.189.5.56  213.08 ms  AS9304  China Hong Kong hgc.com.hk
12  218.188.104.30  200.94 ms  AS9304  China Hong Kong hgc.com.hk


Traceroute to China, Hongkong HKBN (TCP Mode, Max 50 Hop)
============================================================
traceroute to 210.6.23.239 (210.6.23.239), 50 hops max, 60 byte packets
 1  2.59.132.1  19.86 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  151.67 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.49 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.193.79  14.83 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  202.40.148.33  16.25 ms  AS4637,AS10026  United Kingdom London reach.com
 6  202.84.136.14  257.76 ms  AS4637  TELSTRA.COM BACKBONE telstra.com
 7  202.84.157.37  266.05 ms  AS4637  China Hong Kong telstra.com
 8  210.57.80.194  306.14 ms  AS4637,AS10026  China Hong Kong telstra.com
 9  61.244.225.66  303.26 ms  AS9269  China Hong Kong hkbn.net
10  203.186.235.137  350.56 ms  AS9269  China Hong Kong hkbn.net
11  203.80.215.62  302.60 ms  AS9269  China Hong Kong hkbn.net
12  210.6.23.239  306.16 ms  AS9269  China Hong Kong hkbn.net


Traceroute to China, Hongkong PCCW (TCP Mode, Max 50 Hop)
============================================================
traceroute to 202.85.125.60 (202.85.125.60), 50 hops max, 60 byte packets
 1  2.59.132.1  3.69 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  53.45 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  2.70 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  78.152.43.129  0.93 ms  AS5580  Germany Hesse Frankfurt hibernianetworks.com
 5  63.222.0.5  1.35 ms  AS3491  Germany Hesse Frankfurt pccw.com
 6  63.223.17.42  266.12 ms  AS3491  China Hong Kong pccw.com
 7  63.218.61.174  262.14 ms  AS3491  China Hong Kong pccw.com
 8  203.215.254.210  259.57 ms  AS9925  China Hong Kong pbase.net
 9  203.215.254.210  244.50 ms  AS9925  China Hong Kong pbase.net
10  203.215.244.33  261.46 ms  AS9925  China Hong Kong pbase.net
11  203.215.244.33  245.01 ms  AS9925  China Hong Kong pbase.net
12  202.85.125.60  260.38 ms  AS9925  China Hong Kong pccw.com


Traceroute to China, Hongkong TGT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 202.123.76.239 (202.123.76.239), 50 hops max, 60 byte packets
 1  2.59.132.1  94.14 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  2.33 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.41 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  78.152.43.129  0.85 ms  AS5580  Germany Hesse Frankfurt hibernianetworks.com
 5  89.149.184.38  178.58 ms  AS3257  China Hong Kong gtt.net
 6  36.255.56.26  184.91 ms  *  China Hong Kong equinix.com
 7  116.119.36.212  237.47 ms  AS9498  India airtel.com
 8  210.57.80.60  231.90 ms  AS4637,AS10026  China Hong Kong telstra.com
 9  *
10  203.78.72.192  181.40 ms  AS10098  China Hong Kong towngastelecom.com
11  203.78.73.75  184.87 ms  AS10098  China Hong Kong towngastelecom.com
12  *
13  202.123.76.239  187.33 ms  AS10098  China Hong Kong towngastelecom.com


Traceroute to China, Hongkong WTT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 59.152.252.242 (59.152.252.242), 50 hops max, 60 byte packets
 1  2.59.132.1  21.95 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  2.73 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  2.48 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.195.39  167.42 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  115.160.187.54  178.89 ms  AS9381  China Hong Kong hkbn.net
 6  10.104.131.158  178.38 ms  *  LAN Address
 7  59.152.252.196  178.19 ms  AS9381  China Hong Kong hkbn.net
 8  59.152.252.242  178.98 ms  AS9381  China Hong Kong hkbn.net


Traceroute to Singapore, China CT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 203.215.233.1 (203.215.233.1), 50 hops max, 60 byte packets
 1  2.59.132.1  23.26 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  198.02 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.48 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  213.198.77.85  1.31 ms  AS2914  Germany Hesse Frankfurt ntt.com
 5  *
 6  129.250.2.61  1.14 ms  AS2914  Germany Hesse Frankfurt ntt.com
 7  129.250.9.154  3.58 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  202.97.17.81  177.60 ms  AS4134  Singapore ChinaTelecom
 9  203.215.233.1  190.33 ms  AS4134  Singapore ChinaTelecom


Traceroute to Singapore, China CT CN2 (TCP Mode, Max 50 Hop)
============================================================
traceroute to 183.91.61.1 (183.91.61.1), 50 hops max, 60 byte packets
 1  2.59.132.1  41.46 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  21.07 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.86 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.193.79  12.84 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  202.40.148.33  12.93 ms  AS4637,AS10026  United Kingdom London reach.com
 6  202.84.140.97  244.50 ms  AS4637  TELSTRA.COM BACKBONE telstra.com
 7  202.84.224.197  266.71 ms  AS4637  Singapore telstra.com
 8  210.57.30.22  173.13 ms  AS4637,AS10026  Singapore telstra.com
 9  183.91.61.1  173.49 ms  AS4809  Singapore ChinaTelecom


Traceroute to Singapore, Singtel (TCP Mode, Max 50 Hop)
============================================================
traceroute to 118.201.1.11 (118.201.1.11), 50 hops max, 60 byte packets
 1  2.59.132.1  8.51 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  9.25 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.38 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  0.80 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  62.115.141.234  152.68 ms  AS1299  Germany Hesse Frankfurt telia.com
 6  62.115.123.13  146.45 ms  AS1299  France Ile-de-France Paris telia.com
 7  62.115.112.242  146.93 ms  AS1299  United States Virginia Ashburn telia.com
 8  62.115.121.220  146.51 ms  AS1299  United States California Los Angeles telia.com
 9  80.91.246.75  116.41 ms  AS1299  United States Texas Dallas telia.com
10  203.208.171.117  150.16 ms  AS7473  United States California Los Angeles singtel.com
11  203.208.153.121  317.54 ms  AS7473  Singapore singtel.com
12  203.208.158.17  317.45 ms  AS7473  Singapore singtel.com
13  203.208.158.185  327.17 ms  AS7473  Singapore singtel.com
14  203.208.192.106  340.17 ms  AS7473  Singapore singtel.com
15  165.21.49.126  331.28 ms  AS3758  Singapore singtel.com
16  165.21.12.84  337.86 ms  AS3758  Singapore singtel.com
17  118.201.1.11  327.40 ms  AS3758  Singapore singtel.com


Traceroute to Singapore, StarHub (TCP Mode, Max 50 Hop)
============================================================
traceroute to 203.116.46.33 (203.116.46.33), 50 hops max, 60 byte packets
 1  2.59.132.1  153.11 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  137.85 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  2.83 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.192.172  0.64 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  184.105.65.29  7.26 ms  AS6939  Switzerland Canton of Zurich Zurich he.net
 6  72.52.92.130  6.51 ms  AS6939  Switzerland Canton of Zurich Zurich he.net
 7  184.104.193.134  9.85 ms  AS6939  Switzerland Canton of Geneva Geneva he.net
 8  184.104.193.125  16.14 ms  AS6939  France Provence-Alpes-Cote d&apos;Azur Marseille he.net
 9  184.105.65.13  153.59 ms  AS6939  Singapore he.net
10  27.50.36.182  154.98 ms  AS6939  Singapore he.net
11  203.117.164.205  154.73 ms  AS4657  Singapore starhub.com
12  61.8.243.1  152.65 ms  AS4657  Singapore starhub.com
13  *
14  203.116.46.33  153.81 ms  AS4657  Singapore starhub.com


Traceroute to Singapore, M1 (TCP Mode, Max 50 Hop)
============================================================
traceroute to 118.189.184.1 (118.189.184.1), 50 hops max, 60 byte packets
 1  2.59.132.1  20.88 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  11.81 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.73 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.193.79  13.09 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  202.40.148.33  13.83 ms  AS4637,AS10026  United Kingdom London reach.com
 6  202.84.140.97  259.64 ms  AS4637  TELSTRA.COM BACKBONE telstra.com
 7  202.84.224.197  245.68 ms  AS4637  Singapore telstra.com
 8  61.14.145.194  166.11 ms  AS4637,AS10026  Singapore telstra.com
 9  202.65.246.137  161.29 ms  AS4773  Singapore m1.com.sg
10  202.65.246.186  164.31 ms  AS4773  Singapore m1.com.sg
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
31  *
32  *
33  *
34  *
35  *
36  *
37  *
38  *
39  *
40  *
41  *
42  *
43  *
44  *
45  *
46  *
47  *
48  *
49  *
50  *


Traceroute to Singapore, AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.228.0.251 (13.228.0.251), 50 hops max, 60 byte packets
 1  2.59.132.1  5.41 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  11.27 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.44 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  213.198.77.85  1.03 ms  AS2914  Germany Hesse Frankfurt ntt.com
 5  *
 6  129.250.6.54  102.64 ms  AS2914  NTT.COM BACKBONE ntt.com
 7  *
 8  129.250.6.177  142.69 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.4.143  236.18 ms  AS2914  Japan Tokyo ntt.com
10  116.51.17.130  162.54 ms  AS2914  Singapore ntt.com
11  *
12  129.250.3.74  221.63 ms  AS2914  Singapore ntt.com
13  52.93.10.25  164.51 ms  *  Singapore amazon.com
14  129.250.2.122  221.71 ms  AS2914  Singapore ntt.com
15  116.51.17.46  233.65 ms  AS2914  Singapore ntt.com
16  52.93.8.27  163.31 ms  *  Singapore amazon.com
17  *
18  52.93.10.13  223.72 ms  *  Singapore amazon.com
19  52.93.11.43  230.53 ms  *  Singapore amazon.com
20  52.93.11.18  236.46 ms  *  Singapore amazon.com
21  *
22  203.83.223.194  226.01 ms  AS16509  Singapore amazon.com
23  *
24  13.228.0.251  164.02 ms  AS16509  Singapore amazon.com


Traceroute to Japan, NTT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 61.213.155.84 (61.213.155.84), 50 hops max, 60 byte packets
 1  2.59.132.1  4.63 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  3.33 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  7.86 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  213.198.77.85  1.24 ms  AS2914  Germany Hesse Frankfurt ntt.com
 5  129.250.6.50  1.36 ms  AS2914  NTT.COM BACKBONE ntt.com
 6  129.250.6.1  0.93 ms  AS2914  NTT.COM BACKBONE ntt.com
 7  *
 8  129.250.6.16  90.55 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  *
10  129.250.4.143  230.48 ms  AS2914  Japan Tokyo ntt.com
11  129.250.5.22  253.45 ms  AS2914  Japan Tokyo ntt.com
12  129.250.3.28  249.15 ms  AS2914  Japan Tokyo ntt.com
13  61.213.179.34  256.84 ms  AS2914  Japan Tokyo ntt.com
14  *
15  *
16  61.213.155.84  263.42 ms  AS2914  Japan Tokyo ntt.com


Traceroute to Japan, IIJ (TCP Mode, Max 50 Hop)
============================================================
traceroute to 202.232.15.70 (202.232.15.70), 50 hops max, 60 byte packets
 1  2.59.132.1  53.37 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  11.99 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.40 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  1.12 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  62.115.137.168  17.81 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  *
 7  62.115.114.228  17.69 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  62.115.143.27  17.53 ms  AS1299  United Kingdom London telia.com
 9  202.232.1.61  14.17 ms  AS2497  United Kingdom London iij.ad.jp
10  58.138.98.137  202.37 ms  AS2497  Japan Tokyo iij.ad.jp
11  58.138.102.210  203.28 ms  AS2497  Japan Tokyo iij.ad.jp
12  210.130.142.114  211.71 ms  AS2497  Japan Tokyo iij.ad.jp
13  202.232.15.70  203.88 ms  AS2497  Japan iij.ad.jp


Traceroute to Japan, SoftBank (TCP Mode, Max 50 Hop)
============================================================
traceroute to 210.175.32.26 (210.175.32.26), 50 hops max, 60 byte packets
 1  2.59.132.1  5.19 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  7.83 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.37 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  1.07 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  62.115.137.164  157.45 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.123.13  159.80 ms  AS1299  France Ile-de-France Paris telia.com
 7  62.115.134.93  158.81 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  *
 9  213.155.130.129  158.82 ms  AS1299  United States California San Jose telia.com
10  213.248.88.78  263.90 ms  AS1299  United States California San Jose telia.com
11  *
12  143.90.232.241  265.40 ms  AS4725  Japan Tokyo odn.ne.jp
13  143.90.47.33  269.96 ms  AS4725  Japan odn.ne.jp
14  143.90.164.254  249.59 ms  AS4725  Japan Kanagawa odn.ne.jp
15  143.90.54.30  252.35 ms  AS4725  Japan odn.ne.jp
16  210.175.32.123  254.96 ms  AS4725  Japan odn.ne.jp
17  210.175.32.26  259.84 ms  AS4725  Japan odn.ne.jp


Traceroute to Japan, KDDI (TCP Mode, Max 50 Hop)
============================================================
traceroute to 106.162.242.108 (106.162.242.108), 50 hops max, 60 byte packets
 1  2.59.132.1  18.17 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  4.96 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  1.05 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  0.70 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  62.115.116.163  153.89 ms  AS1299  Germany Hesse Frankfurt telia.com
 6  62.115.123.13  146.83 ms  AS1299  France Ile-de-France Paris telia.com
 7  62.115.122.159  89.48 ms  AS1299  United States Virginia Ashburn telia.com
 8  62.115.137.37  145.74 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.180.210  141.19 ms  AS1299  Europe Regions telia.com
10  203.181.106.169  144.97 ms  AS2516  United States California Los Angeles kddi.com
11  106.187.12.13  254.92 ms  AS2516  Japan Tokyo kddi.com
12  118.152.213.54  253.15 ms  AS2516  Japan kddi.com
13  182.248.164.90  245.54 ms  AS2516  Japan kddi.com
14  59.128.99.97  249.38 ms  AS2516  Japan kddi.com
15  106.162.242.108  251.94 ms  AS2516  Japan kddi.com


Traceroute to Japan, China CT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 203.215.236.3 (203.215.236.3), 50 hops max, 60 byte packets
 1  2.59.132.1  13.74 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  27.60 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.43 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  213.198.77.85  1.32 ms  AS2914  Germany Hesse Frankfurt ntt.com
 5  129.250.6.33  0.93 ms  AS2914  NTT.COM BACKBONE ntt.com
 6  129.250.2.61  0.63 ms  AS2914  Germany Hesse Frankfurt ntt.com
 7  129.250.9.154  4.47 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  202.97.52.93  208.34 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
 9  202.97.24.26  248.88 ms  AS4134  Japan Tokyo ChinaTelecom
10  203.215.236.3  255.81 ms  AS4134  Japan Tokyo ChinaTelecom


Traceroute to Japan, China CT CN2 (TCP Mode, Max 50 Hop)
============================================================
traceroute to 202.55.27.4 (202.55.27.4), 50 hops max, 60 byte packets
 1  2.59.132.1  18.79 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  71.43 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  1.80 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.193.79  23.97 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  202.40.148.33  14.79 ms  AS4637,AS10026  United Kingdom London reach.com
 6  202.84.140.97  245.00 ms  AS4637  TELSTRA.COM BACKBONE telstra.com
 7  202.84.224.197  245.46 ms  AS4637  Singapore telstra.com
 8  210.57.30.22  177.14 ms  AS4637,AS10026  Singapore telstra.com
 9  59.43.247.238  217.97 ms  *  China ChinaTelecom
10  202.55.27.4  211.69 ms  AS4809  Japan Tokyo ChinaTelecom


Traceroute to Japan, Amazon AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.112.63.251 (13.112.63.251), 50 hops max, 60 byte packets
 1  2.59.132.1  8.22 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  145.01 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.58 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  213.198.77.85  0.98 ms  AS2914  Germany Hesse Frankfurt ntt.com
 5  129.250.6.50  1.22 ms  AS2914  NTT.COM BACKBONE ntt.com
 6  129.250.6.1  1.02 ms  AS2914  NTT.COM BACKBONE ntt.com
 7  129.250.6.54  90.26 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  *
 9  129.250.6.177  145.31 ms  AS2914  NTT.COM BACKBONE ntt.com
10  129.250.4.143  233.13 ms  AS2914  Japan Tokyo ntt.com
11  129.250.5.22  256.90 ms  AS2914  Japan Tokyo ntt.com
12  129.250.6.133  235.92 ms  AS2914  Japan Tokyo ntt.com
13  61.213.161.46  245.06 ms  AS2914  Japan Tokyo ntt.com
14  *
15  *
16  *
17  150.222.90.65  249.09 ms  *  Japan Tokyo amazon.com
18  *
19  *
20  *
21  52.95.31.71  257.71 ms  AS16509  Japan Tokyo amazon.com
22  52.95.31.213  249.99 ms  AS16509  Japan Tokyo amazon.com
23  52.95.31.184  255.48 ms  AS16509  Japan Tokyo amazon.com
24  52.95.31.88  255.40 ms  AS16509  Japan Tokyo amazon.com
25  52.93.250.26  248.48 ms  *  Japan Tokyo amazon.com
26  *
27  *
28  *
29  *
30  *
31  *
32  13.112.63.251  237.93 ms  AS16509  Japan Tokyo amazon.com


Traceroute to South Korea, KT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 210.114.41.101 (210.114.41.101), 50 hops max, 60 byte packets
 1  2.59.132.1  5.27 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  147.07 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  2.11 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.192.172  0.50 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  184.105.80.37  12.45 ms  AS6939  United Kingdom London he.net
 6  72.52.92.166  79.28 ms  AS6939  United States New York New York City he.net
 7  184.104.193.173  94.50 ms  AS6939  United States Illinois Chicago he.net
 8  184.105.223.178  103.44 ms  AS6939  United States Minnesota Minneapolis he.net
 9  184.104.194.21  138.00 ms  AS6939  United States Washington Seattle he.net
10  72.52.108.226  151.45 ms  AS6939  United States Washington Seattle he.net
11  112.174.87.121  262.25 ms  AS4766  KT.COM BACKBONE kt.com
12  112.174.83.5  280.53 ms  AS4766  Republic of Korea Seoul kt.com
13  *
14  112.174.61.98  274.84 ms  AS4766  Republic of Korea Seoul kt.com
15  112.188.247.210  269.10 ms  AS4766  Republic of Korea Seoul kt.com
16  220.90.203.6  272.22 ms  AS4766  Republic of Korea Seoul kt.com
17  211.37.137.22  347.43 ms  AS4766  Republic of Korea Seoul kt.com
18  210.114.41.101  292.11 ms  AS4766  Republic of Korea Seoul kt.com


Traceroute to South Korea, SK (TCP Mode, Max 50 Hop)
============================================================
traceroute to 175.122.253.62 (175.122.253.62), 50 hops max, 60 byte packets
 1  2.59.132.1  20.21 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  7.37 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.53 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.195.146  201.95 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  58.229.14.96  260.32 ms  AS9318  Republic of Korea Seoul skbroadband.com
 6  1.255.76.108  276.15 ms  AS9318  Republic of Korea Seoul skbroadband.com
 7  10.222.19.175  265.10 ms  *  LAN Address
 8  10.222.41.190  235.51 ms  *  LAN Address
 9  10.222.21.85  235.63 ms  *  LAN Address
10  175.122.253.62  236.72 ms  AS9318  Republic of Korea skbroadband.com


Traceroute to South Korea, LG (TCP Mode, Max 50 Hop)
============================================================
traceroute to 211.174.62.44 (211.174.62.44), 50 hops max, 60 byte packets
 1  2.59.132.1  2.41 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  86.04 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.42 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  213.198.77.85  9.07 ms  AS2914  Germany Hesse Frankfurt ntt.com
 5  129.250.6.50  1.76 ms  AS2914  NTT.COM BACKBONE ntt.com
 6  129.250.4.96  86.02 ms  AS2914  United States Virginia Ashburn ntt.com
 7  129.250.3.189  155.11 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.49  150.10 ms  AS2914  United States California Los Angeles ntt.com
 9  129.250.2.214  149.52 ms  AS2914  United States California Los Angeles ntt.com
10  168.143.229.202  152.85 ms  AS2914  United States ntt.com
11  211.118.180.149  151.01 ms  AS3786  United States California Los Angeles uplus.co.kr
12  1.213.104.237  291.98 ms  AS3786  Republic of Korea Seoul uplus.co.kr
13  1.208.173.114  282.70 ms  AS3786  Republic of Korea Seoul uplus.co.kr
14  1.208.172.46  303.62 ms  AS3786  Republic of Korea Seoul uplus.co.kr
15  1.213.150.77  285.46 ms  AS3786  Republic of Korea Seoul uplus.co.kr
16  61.111.0.154  284.79 ms  AS3786  Republic of Korea Seoul uplus.co.kr
17  *
18  211.174.62.44  296.58 ms  AS3786  Republic of Korea Seoul uplus.co.kr


Traceroute to South Korea, China CT CN2 (TCP Mode, Max 50 Hop)
============================================================
traceroute to 218.185.246.3 (218.185.246.3), 50 hops max, 60 byte packets
 1  2.59.132.1  14.58 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  59.78 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.53 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.193.79  14.69 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  202.40.148.33  12.92 ms  AS4637,AS10026  United Kingdom London reach.com
 6  202.84.140.97  244.47 ms  AS4637  TELSTRA.COM BACKBONE telstra.com
 7  202.84.224.197  245.05 ms  AS4637  Singapore telstra.com
 8  210.57.30.22  178.39 ms  AS4637,AS10026  Singapore telstra.com
 9  59.43.249.194  192.37 ms  *  China Shanghai ChinaTelecom
10  59.43.184.25  213.27 ms  *  Republic of Korea Seoul ChinaTelecom
11  218.185.246.3  213.48 ms  AS4809  Republic of Korea Seoul ChinaTelecom


Traceroute to South Korea, Amazon AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.124.63.251 (13.124.63.251), 50 hops max, 60 byte packets
 1  2.59.132.1  123.62 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  15.21 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  1.60 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  213.198.77.85  1.03 ms  AS2914  Germany Hesse Frankfurt ntt.com
 5  129.250.6.50  1.41 ms  AS2914  NTT.COM BACKBONE ntt.com
 6  *
 7  *
 8  129.250.6.16  88.72 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  *
10  129.250.4.143  225.81 ms  AS2914  Japan Tokyo ntt.com
11  129.250.5.22  256.46 ms  AS2914  Japan Tokyo ntt.com
12  129.250.6.129  245.78 ms  AS2914  Japan Tokyo ntt.com
13  61.213.161.50  239.71 ms  AS2914  Japan Tokyo ntt.com
14  *
15  *
16  *
17  150.222.90.39  242.85 ms  *  Japan Tokyo amazon.com
18  *
19  *
20  *
21  54.239.45.184  277.15 ms  *  Republic of Korea Seoul amazon.com
22  54.239.122.238  268.04 ms  AS16509  Republic of Korea Seoul amazon.com
23  52.93.248.214  270.02 ms  *  Republic of Korea Seoul amazon.com
24  54.239.122.22  273.91 ms  AS16509  Republic of Korea Seoul amazon.com
25  54.239.123.141  269.52 ms  AS16509  Republic of Korea Seoul amazon.com
26  54.239.122.22  276.01 ms  AS16509  Republic of Korea Seoul amazon.com
27  *
28  *
29  *
30  *
31  *
32  13.124.63.251  275.86 ms  AS16509  Republic of Korea Seoul amazon.com


Traceroute to China, Taiwan Chief (TCP Mode, Max 50 Hop)
============================================================
traceroute to 202.133.242.116 (202.133.242.116), 50 hops max, 60 byte packets
 1  2.59.132.1  152.85 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  19.89 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  1.28 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.196.59  232.31 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  220.128.6.38  232.85 ms  AS3462  China Taiwan New Taipei City cht.com.tw
 6  220.128.7.46  241.00 ms  AS3462  China Taiwan New Taipei City cht.com.tw
 7  220.128.27.82  241.34 ms  AS3462  China Taiwan Taipei City cht.com.tw
 8  220.128.2.237  241.75 ms  AS3462  China Taiwan Taipei City cht.com.tw
 9  203.75.228.153  249.54 ms  AS3462  China Taiwan Taipei City cht.com.tw
10  *
11  113.21.95.72  242.15 ms  AS17408  China Taiwan Taipei City chief.com.tw
12  *
13  202.133.242.114  242.26 ms  AS17408  China Taiwan Taipei City chief.com.tw
14  202.133.242.116  243.10 ms  AS17408  China Taiwan Taipei City chief.com.tw


Traceroute to China, Taiwan APTG (TCP Mode, Max 50 Hop)
============================================================
traceroute to 210.200.69.90 (210.200.69.90), 50 hops max, 60 byte packets
 1  2.59.132.1  203.96 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  57.48 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.36 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.193.79  13.95 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  202.40.148.33  13.55 ms  AS4637,AS10026  United Kingdom London reach.com
 6  202.84.136.14  257.50 ms  AS4637  TELSTRA.COM BACKBONE telstra.com
 7  202.84.138.114  279.42 ms  AS4637  China Hong Kong telstra.com
 8  202.84.137.253  264.12 ms  AS4637  China Taiwan Taipei City telstra.com
 9  210.176.44.14  269.70 ms  AS4637,AS10026  China Taiwan Taipei City telstra.com
10  203.79.253.161  269.52 ms  AS17709  China Taiwan Taipei City aptg.com.tw
11  211.76.100.53  276.18 ms  AS17709  China Taiwan Taipei City aptg.com.tw
12  210.200.80.254  271.15 ms  AS131142  China Taiwan Taipei City aptg.com.tw
13  *
14  210.200.69.90  272.07 ms  AS131142  China Taiwan Taipei City aptg.com.tw


Traceroute to China, Taiwan CHT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 203.75.129.162 (203.75.129.162), 50 hops max, 60 byte packets
 1  2.59.132.1  70.91 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  20.91 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  3.40 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.196.59  240.74 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  220.128.6.34  240.68 ms  AS3462  China Taiwan New Taipei City cht.com.tw
 6  220.128.7.42  250.09 ms  AS3462  China Taiwan New Taipei City cht.com.tw
 7  220.128.26.106  249.74 ms  AS3462  China Taiwan Taipei City cht.com.tw
 8  220.128.4.17  250.25 ms  AS3462  China Taiwan Taipei City cht.com.tw
 9  211.22.229.45  251.71 ms  AS3462  China Taiwan Taipei City cht.com.tw
10  1.1.1.2  250.20 ms  AS13335  CLOUDFLARE.COM apnic.net
11  *
12  203.75.129.162  249.79 ms  AS3462  China Taiwan Taipei City cht.com.tw


Traceroute to China, Taiwan TFN (TCP Mode, Max 50 Hop)
============================================================
traceroute to 219.87.66.3 (219.87.66.3), 50 hops max, 60 byte packets
 1  2.59.132.1  110.06 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  50.22 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.37 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  213.198.77.85  1.00 ms  AS2914  Germany Hesse Frankfurt ntt.com
 5  *
 6  129.250.2.200  0.78 ms  AS2914  NTT.COM BACKBONE ntt.com
 7  129.250.4.17  159.12 ms  AS2914  Germany Hesse Frankfurt ntt.com
 8  129.250.7.67  197.56 ms  AS2914  China Hong Kong ntt.com
 9  129.250.2.18  272.65 ms  AS2914  China Taiwan Taipei City ntt.com
10  129.250.2.107  268.61 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.7.41  263.60 ms  AS2914  NTT.COM BACKBONE ntt.com
12  61.58.33.222  265.33 ms  AS2914  China Taiwan Taipei City ntt.com
13  60.199.14.242  274.09 ms  AS9924  China Taiwan Taipei City twmbroadband.com
14  60.199.16.70  259.42 ms  AS9924  China Taiwan Taipei City twmbroadband.com
15  219.87.66.3  258.51 ms  AS9924  China Taiwan Taipei City twmbroadband.com


Traceroute to China,Taiwan FET (TCP Mode, Max 50 Hop)
============================================================
traceroute to 211.73.144.38 (211.73.144.38), 50 hops max, 60 byte packets
 1  2.59.132.1  37.00 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  46.16 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.35 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.192.172  0.71 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  72.52.92.13  9.88 ms  AS6939  France Ile-de-France Paris he.net
 6  216.66.89.214  20.50 ms  AS6939  France Ile-de-France Paris he.net
 7  62.216.129.173  273.60 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
 8  85.95.25.157  289.57 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
 9  85.95.26.14  274.60 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
10  85.95.25.254  253.53 ms  AS15412  Japan Tokyo globalcloudxchange.com
11  85.95.27.102  276.93 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
12  80.81.69.46  285.63 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
13  192.72.155.209  303.66 ms  AS4780  China Taiwan Taipei City fetnet.net
14  139.175.58.166  285.90 ms  AS4780  China Taiwan Taipei City fetnet.net
15  *
16  *
17  *
18  211.73.144.38  291.62 ms  AS9674  China Taiwan fetnet.net


Traceroute to China, Taiwan KBT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 61.63.0.102 (61.63.0.102), 50 hops max, 60 byte packets
 1  2.59.132.1  85.99 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  22.34 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  7.75 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  213.198.77.85  1.00 ms  AS2914  Germany Hesse Frankfurt ntt.com
 5  *
 6  129.250.2.200  1.30 ms  AS2914  NTT.COM BACKBONE ntt.com
 7  129.250.4.17  159.53 ms  AS2914  Germany Hesse Frankfurt ntt.com
 8  129.250.7.67  193.49 ms  AS2914  China Hong Kong ntt.com
 9  129.250.2.18  260.85 ms  AS2914  China Taiwan Taipei City ntt.com
10  129.250.2.107  270.49 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.7.41  263.97 ms  AS2914  NTT.COM BACKBONE ntt.com
12  61.58.33.206  261.42 ms  AS2914  China Taiwan Taipei City ntt.com
13  203.187.3.25  263.27 ms  AS9416  China Taiwan Taipei City kbtelecom.net
14  203.187.9.226  255.99 ms  AS9416  China Taiwan Taipei City kbtelecom.net
15  58.86.1.174  258.62 ms  AS18042  China Taiwan Taipei City kbtelecom.net
16  58.86.0.94  256.70 ms  AS18042  China Taiwan Taipei City kbtelecom.net
17  58.86.0.26  254.54 ms  AS18042  China Taiwan Taipei City kbtelecom.net
18  61.63.0.102  257.54 ms  AS18042  China Taiwan Taipei City kbtelecom.net


Traceroute to China, Taiwan TAIFO (TCP Mode, Max 50 Hop)
============================================================
traceroute to 103.31.196.203 (103.31.196.203), 50 hops max, 60 byte packets
 1  2.59.132.1  253.73 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  5.45 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.55 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.192.172  0.58 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  72.52.92.13  9.85 ms  AS6939  France Ile-de-France Paris he.net
 6  216.66.89.214  20.52 ms  AS6939  France Ile-de-France Paris he.net
 7  62.216.129.173  287.44 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
 8  85.95.25.157  290.77 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
 9  85.95.26.14  283.30 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
10  85.95.27.142  252.32 ms  AS15412  Japan Tokyo globalcloudxchange.com
11  85.95.27.102  281.52 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
12  80.77.2.198  284.17 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
13  *
14  113.21.95.123  276.04 ms  AS17408  China Taiwan Taipei City chief.com.tw
15  *
16  103.31.197.122  290.79 ms  AS131584  China Taiwan Taipei City taifo.com.tw
17  *
18  103.31.197.70  286.21 ms  AS131584  China Taiwan Taipei City taifo.com.tw
19  103.31.196.203  289.09 ms  AS131584  China Taiwan Taipei City taifo.com.tw


Traceroute to United States, Los Angeles China CT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 50 hops max, 60 byte packets
 1  2.59.132.1  17.16 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  7.91 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.73 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  213.198.77.85  0.98 ms  AS2914  Germany Hesse Frankfurt ntt.com
 5  129.250.6.33  1.49 ms  AS2914  NTT.COM BACKBONE ntt.com
 6  129.250.2.61  0.75 ms  AS2914  Germany Hesse Frankfurt ntt.com
 7  129.250.9.154  3.43 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  218.30.33.17  87.32 ms  AS4134  United States ctamericas.com


Traceroute to United States, Los Angeles China CT CN2 (TCP Mode, Max 50 Hop)
============================================================
traceroute to 66.102.252.100 (66.102.252.100), 50 hops max, 60 byte packets
 1  2.59.132.1  9.46 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  7.72 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.51 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  1.57 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  *
 6  *
 7  *
 8  62.115.121.220  145.55 ms  AS1299  United States California Los Angeles telia.com
 9  213.248.79.253  154.26 ms  AS1299  TELIA.COM BACKBONE telia.com
10  66.102.252.100  152.79 ms  AS4809  United States ctamericas.com


Traceroute to United States, Los Angeles PCCW (TCP Mode, Max 50 Hop)
============================================================
traceroute to 63.218.42.81 (63.218.42.81), 50 hops max, 60 byte packets
 1  2.59.132.1  4.94 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  5.54 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  2.36 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  78.152.43.129  1.53 ms  AS5580  Germany Hesse Frankfurt hibernianetworks.com
 5  213.254.230.250  149.81 ms  AS3257  United States California Los Angeles gtt.net
 6  63.218.42.81  148.76 ms  AS3491  United States California Los Angeles pccw.com


Traceroute to United States, Los Angeles HE (TCP Mode, Max 50 Hop)
============================================================
traceroute to 66.220.18.42 (66.220.18.42), 50 hops max, 60 byte packets
 1  2.59.132.1  8.21 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  14.37 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  1.52 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.192.172  7.36 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  72.52.92.13  10.25 ms  AS6939  France Ile-de-France Paris he.net
 6  184.105.213.173  85.03 ms  AS6939  United States Virginia Ashburn he.net
 7  184.105.80.202  159.65 ms  AS6939  United States California Los Angeles he.net
 8  66.220.18.42  139.36 ms  AS6939  United States California Los Angeles he.net


Traceroute to United States, Los Angeles GTT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 173.205.77.98 (173.205.77.98), 50 hops max, 60 byte packets
 1  2.59.132.1  12.58 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  6.98 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.55 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  78.152.43.129  0.66 ms  AS5580  Germany Hesse Frankfurt hibernianetworks.com
 5  89.149.187.114  144.84 ms  AS3257  United States California Los Angeles gtt.net
 6  173.205.77.98  144.59 ms  AS3257  United States California Los Angeles gtt.net


Traceroute to United States, San Fransico ATT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 12.169.215.33 (12.169.215.33), 50 hops max, 60 byte packets
 1  2.59.132.1  131.00 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  96.81 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.60 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  149.14.69.193  1.55 ms  AS174  Germany Hesse Frankfurt cogentco.com
 5  154.54.56.189  3.42 ms  AS174  Germany Hesse Frankfurt cogentco.com
 6  154.54.58.238  10.90 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 7  66.28.4.197  81.16 ms  AS174  United States New York New York City cogentco.com
 8  154.54.0.142  82.91 ms  AS174  United States New York New York City cogentco.com
 9  154.54.10.98  86.82 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
10  12.122.131.102  155.84 ms  AS7018  United States New York New York City att.com
11  12.122.2.237  158.80 ms  AS7018  United States Illinois Chicago att.com
12  12.122.2.53  161.18 ms  AS7018  United States Illinois Chicago att.com
13  12.122.1.174  162.27 ms  AS7018  United States California San Francisco att.com
14  12.122.110.13  155.11 ms  AS7018  United States California att.com
15  12.244.156.30  156.88 ms  AS7018  United States California att.com
16  12.169.215.33  160.75 ms  AS7018  United States California att.com


Traceroute to United States, New York TATA (TCP Mode, Max 50 Hop)
============================================================
traceroute to 66.198.181.100 (66.198.181.100), 50 hops max, 60 byte packets
 1  2.59.132.1  19.64 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  1.80 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  1.58 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  78.152.43.129  0.64 ms  AS5580  Germany Hesse Frankfurt hibernianetworks.com
 5  141.136.110.54  0.95 ms  AS3257  GTT.NET BACKBONE gtt.net
 6  195.219.50.137  0.61 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
 7  195.219.50.209  88.54 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
 8  195.219.87.2  89.06 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
 9  195.219.194.149  88.35 ms  AS6453  Netherlands North Holland Amsterdam tatacommunications.com
10  80.231.154.143  91.40 ms  AS6453  France Ile-de-France Paris tatacommunications.com
11  80.231.131.160  89.23 ms  AS6453  United Kingdom London tatacommunications.com
12  80.231.131.158  89.09 ms  AS6453  United States New York New York City tatacommunications.com
13  216.6.90.21  100.90 ms  AS6453  United States New York New York City tatacommunications.com
14  216.6.90.73  90.01 ms  AS6453  United States New York New York City tatacommunications.com
15  209.58.75.198  89.92 ms  AS6453  United States New York New York City tatacommunications.com
16  66.198.181.100  88.68 ms  AS6453  United States New York New York City tatacommunications.com


Traceroute to United States, San Jose China CT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 50 hops max, 60 byte packets
 1  2.59.132.1  21.03 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  3.19 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.35 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  213.198.77.85  1.19 ms  AS2914  Germany Hesse Frankfurt ntt.com
 5  129.250.6.50  1.56 ms  AS2914  NTT.COM BACKBONE ntt.com
 6  129.250.4.99  0.62 ms  AS2914  Germany Hesse Frankfurt ntt.com
 7  129.250.9.154  1.95 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  218.30.33.17  87.36 ms  AS4134  United States ctamericas.com


Traceroute to United States, San Jose NTT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 23.11.26.62 (23.11.26.62), 50 hops max, 60 byte packets
 1  2.59.132.1  9.86 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  1.36 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.57 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  213.198.77.85  1.10 ms  AS2914  Germany Hesse Frankfurt ntt.com
 5  *
 6  *
 7  129.250.3.85  85.99 ms  AS2914  United States Virginia Ashburn ntt.com
 8  129.250.6.237  157.63 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.3.27  149.81 ms  AS2914  United States California San Jose ntt.com
10  129.250.2.48  146.69 ms  AS2914  NTT.COM BACKBONE ntt.com
11  23.11.26.62  145.12 ms  AS2914  United States California San Jose akamai.com


Traceroute to United States, Fremont HE (TCP Mode, Max 50 Hop)
============================================================
traceroute to 72.52.104.74 (72.52.104.74), 50 hops max, 60 byte packets
 1  2.59.132.1  86.33 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  6.36 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.39 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.192.172  0.52 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  184.105.80.37  21.97 ms  AS6939  United Kingdom London he.net
 6  72.52.92.166  80.49 ms  AS6939  United States New York New York City he.net
 7  184.104.192.242  79.54 ms  AS6939  HE.NET BACKBONE he.net
 8  184.105.81.61  150.96 ms  AS6939  United States California Fremont he.net
 9  72.52.104.74  145.33 ms  AS6939  United States California Fremont he.net


Traceroute to United States, Las Vegas Level3 (TCP Mode, Max 50 Hop)
============================================================
traceroute to 205.216.62.38 (205.216.62.38), 50 hops max, 60 byte packets
 1  2.59.132.1  4.12 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  47.87 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  3.46 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  9.22 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  62.115.121.2  96.06 ms  AS1299  Germany Hesse Frankfurt telia.com
 6  62.115.123.13  95.05 ms  AS1299  France Ile-de-France Paris telia.com
 7  *
 8  62.115.143.79  87.48 ms  AS1299  United States Virginia Ashburn telia.com
 9  80.239.192.99  106.73 ms  AS1299  United States Virginia Ashburn telia.com
10  67.14.14.26  107.41 ms  AS209  United States Georgia Atlanta centurylink.com
11  209.67.211.134  130.97 ms  AS3561  United States Texas Dallas centurylink.com
12  216.34.164.106  133.12 ms  AS3561  United States Texas Dallas centurylink.com
13  205.216.7.204  131.98 ms  AS3561  United States Texas Dallas centurylink.com
14  *
15  205.216.62.38  128.63 ms  AS3561  United States Texas Dallas centurylink.com


Traceroute to United States, San Jose ZAYO (TCP Mode, Max 50 Hop)
============================================================
traceroute to 64.125.191.31 (64.125.191.31), 50 hops max, 60 byte packets
 1  2.59.132.1  3.71 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  8.85 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.39 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  78.152.43.129  0.57 ms  AS5580  Germany Hesse Frankfurt hibernianetworks.com
 5  89.149.129.37  0.79 ms  AS3257  Germany Hesse Frankfurt gtt.net
 6  77.67.73.34  24.63 ms  AS3257  Germany Hesse Frankfurt gtt.net
 7  64.125.26.233  1.16 ms  AS6461  Germany Hesse Frankfurt zayo.com
 8  64.125.31.216  153.52 ms  AS6461  ZAYO.COM BACKBONE zayo.com
 9  64.125.29.59  148.54 ms  AS6461  Netherlands North Holland Amsterdam zayo.com
10  64.125.29.80  148.45 ms  AS6461  Netherlands North Holland Amsterdam zayo.com
11  64.125.29.17  153.10 ms  AS6461  United Kingdom Berkshire County Slough zayo.com
12  *
13  *
14  *
15  64.125.29.19  148.44 ms  AS6461  United States Colorado Denver zayo.com
16  64.125.31.219  148.45 ms  AS6461  United States California San Jose zayo.com
17  64.125.27.63  152.33 ms  AS6461  United States California San Jose zayo.com
18  64.125.191.31  151.35 ms  AS6461  United States California San Jose zayo.com


Traceroute to United States, Ashburn Cogentco (TCP Mode, Max 50 Hop)
============================================================
traceroute to 149.127.109.166 (149.127.109.166), 50 hops max, 60 byte packets
 1  2.59.132.1  6.44 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  4.46 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  2.50 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  149.14.69.193  1.31 ms  AS174  Germany Hesse Frankfurt cogentco.com
 5  154.54.37.29  1.43 ms  AS174  Germany Hesse Frankfurt cogentco.com
 6  154.54.58.238  10.77 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 7  154.54.61.113  23.11 ms  AS174  Europe Regions cogentco.com
 8  154.54.85.245  91.39 ms  AS174  United States Virginia Sterling cogentco.com
 9  154.54.30.53  92.57 ms  AS174  United States Virginia Arlington cogentco.com
10  154.54.46.190  94.49 ms  AS174  United States Virginia Herndon cogentco.com
11  38.140.164.58  92.75 ms  AS174  United States Virginia Herndon cogentco.com
12  149.127.109.2  93.50 ms  AS174  United States Virginia Ashburn cogentco.com
13  149.127.109.166  93.90 ms  AS174  United States Virginia Ashburn cogentco.com


Traceroute to German, Telekom (TCP Mode, Max 50 Hop)
============================================================
traceroute to 80.146.191.1 (80.146.191.1), 50 hops max, 60 byte packets
 1  2.59.132.1  28.47 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  1.51 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.48 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  87.190.233.113  0.58 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
 5  91.23.215.109  6.27 ms  AS3320  Germany North Rhine-Westphalia telekom.de
 6  80.146.191.1  17.90 ms  AS3320  Germany North Rhine-Westphalia telekom.de


Traceroute to German, Frankfurt O2 (TCP Mode, Max 50 Hop)
============================================================
traceroute to 82.113.108.25 (82.113.108.25), 50 hops max, 60 byte packets
 1  2.59.132.1  181.20 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  10.73 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.52 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.193.89  2.65 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  62.53.28.170  2.34 ms  AS6805  Germany Hesse Offenbach am Main telefonica.de
 6  62.53.0.198  1.76 ms  AS6805  Germany telefonica.de
 7  62.53.0.127  2.00 ms  AS6805  Germany telefonica.de
 8  62.53.14.105  1.72 ms  AS6805  Germany telefonica.de
 9  62.53.2.63  1.63 ms  AS6805  Germany telefonica.de
10  82.113.108.25  1.67 ms  AS39706  Germany Hesse Frankfurt o2online.de


Traceroute to German, Frankfurt Vodafone (TCP Mode, Max 50 Hop)
============================================================
traceroute to 139.7.146.11 (139.7.146.11), 50 hops max, 60 byte packets
 1  2.59.132.1  29.23 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  21.00 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  1.16 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.192.117  1.27 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  *
 6  145.253.5.57  4.62 ms  AS3209  Germany vodafone.de
 7  92.79.230.2  4.79 ms  AS3209  Germany vodafone.de
 8  139.7.148.84  4.33 ms  AS3209  Germany vodafone.de
 9  *
10  *
11  *
12  *
13  139.7.146.11  10.10 ms  AS3209  Germany vodafone.de


Traceroute to German, Frankfurt China CT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 118.85.205.101 (118.85.205.101), 50 hops max, 60 byte packets
 1  2.59.132.1  34.93 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  3.05 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.36 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  213.198.77.85  1.49 ms  AS2914  Germany Hesse Frankfurt ntt.com
 5  129.250.6.50  1.98 ms  AS2914  NTT.COM BACKBONE ntt.com
 6  129.250.4.99  1.02 ms  AS2914  Germany Hesse Frankfurt ntt.com
 7  118.85.205.101  1.41 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom


Traceroute to German, Frankfurt China CT CN2 (TCP Mode, Max 50 Hop)
============================================================
traceroute to 5.10.138.33 (5.10.138.33), 50 hops max, 60 byte packets
 1  2.59.132.1  109.04 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  54.29 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.45 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  0.82 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  62.115.121.6  18.06 ms  AS1299  Germany Hesse Frankfurt telia.com
 6  62.115.123.13  16.29 ms  AS1299  France Ile-de-France Paris telia.com
 7  62.115.114.228  19.72 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  62.115.134.139  17.71 ms  AS1299  United Kingdom London telia.com
 9  80.239.193.226  16.90 ms  AS1299  TELIA.COM BACKBONE telia.com
10  59.43.180.113  15.22 ms  *  Europe Regions ChinaTelecom
11  5.10.138.33  17.81 ms  AS4809  Germany cteurope.net


Traceroute to German, Frankfurt GTT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 213.200.65.70 (213.200.65.70), 50 hops max, 60 byte packets
 1  2.59.132.1  14.35 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  162.18 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.74 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  78.152.43.129  0.78 ms  AS5580  Germany Hesse Frankfurt hibernianetworks.com
 5  213.200.115.161  17.95 ms  AS3257  Germany Hesse Frankfurt gtt.net
 6  213.200.65.70  2.05 ms  AS3257  GTT.NET BACKBONE gtt.net


Traceroute to German, FrankfurtCogentco (TCP Mode, Max 50 Hop)
============================================================
traceroute to 212.20.150.5 (212.20.150.5), 50 hops max, 60 byte packets
 1  2.59.132.1  21.04 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  8.14 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.71 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  149.14.69.193  0.99 ms  AS174  Germany Hesse Frankfurt cogentco.com
 5  154.54.56.189  1.22 ms  AS174  Germany Hesse Frankfurt cogentco.com
 6  130.117.48.94  1.30 ms  AS174  Germany Hesse Frankfurt cogentco.com
 7  212.20.150.5  1.42 ms  AS174  Germany Hesse Frankfurt cogentco.com


Traceroute to United Kingdom, Vodafone (TCP Mode, Max 50 Hop)
============================================================
traceroute to 194.62.232.211 (194.62.232.211), 50 hops max, 60 byte packets
 1  2.59.132.1  44.26 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  16.60 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  4.17 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  78.152.43.129  0.65 ms  AS5580  Germany Hesse Frankfurt hibernianetworks.com
 5  141.136.110.41  0.92 ms  AS3257  GTT.NET BACKBONE gtt.net
 6  154.14.34.90  0.72 ms  AS3257  Europe Regions interoute.com
 7  195.2.27.214  16.63 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
 8  *
 9  *
10  194.62.232.211  18.29 ms  AS25135  United Kingdom vodafone.com


Traceroute to United Kingdom， BT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 213.121.43.24 (213.121.43.24), 50 hops max, 60 byte packets
 1  2.59.132.1  18.33 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  15.66 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  6.65 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  149.14.69.193  0.90 ms  AS174  Germany Hesse Frankfurt cogentco.com
 5  154.54.56.189  1.21 ms  AS174  Germany Hesse Frankfurt cogentco.com
 6  130.117.15.174  1.64 ms  AS174  Germany Hesse Frankfurt cogentco.com
 7  166.49.195.124  16.45 ms  AS5400  BT.COM BACKBONE bt.com
 8  166.49.128.33  16.41 ms  AS5400  United Kingdom bt.com
 9  194.72.16.137  17.16 ms  AS2856  United Kingdom bt.com
10  195.99.127.62  22.30 ms  AS2856  United Kingdom London bt.com
11  109.159.255.218  24.54 ms  AS2856  United Kingdom bt.com
12  194.72.7.101  24.28 ms  AS2856  United Kingdom London bt.com
13  *
14  *
15  *
16  *
17  213.121.43.24  36.57 ms  AS2856  United Kingdom bt.com


Traceroute to United Kingdom, London TATA (TCP Mode, Max 50 Hop)
============================================================
traceroute to 80.231.131.34 (80.231.131.34), 50 hops max, 60 byte packets
 1  2.59.132.1  113.25 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  111.93 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.33 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  78.152.43.129  0.63 ms  AS5580  Germany Hesse Frankfurt hibernianetworks.com
 5  141.136.110.54  2.96 ms  AS3257  GTT.NET BACKBONE gtt.net
 6  195.219.50.137  1.49 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
 7  195.219.87.194  1.08 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
 8  195.219.87.10  16.62 ms  AS6453  France Ile-de-France Paris tatacommunications.com
 9  195.219.194.149  7.21 ms  AS6453  Netherlands North Holland Amsterdam tatacommunications.com
10  195.219.194.6  7.13 ms  AS6453  Netherlands North Holland Amsterdam tatacommunications.com
11  80.231.131.34  14.74 ms  AS6453  United Kingdom London tatacommunications.com


Traceroute to Russia, China CT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 118.85.205.181 (118.85.205.181), 50 hops max, 60 byte packets
 1  2.59.132.1  8.37 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  8.33 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.33 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  213.198.77.85  0.96 ms  AS2914  Germany Hesse Frankfurt ntt.com
 5  129.250.6.50  1.05 ms  AS2914  NTT.COM BACKBONE ntt.com
 6  129.250.4.99  0.45 ms  AS2914  Germany Hesse Frankfurt ntt.com
 7  129.250.9.154  3.03 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  202.97.52.66  4.17 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 9  202.97.67.233  159.19 ms  *  Russian Federation ChinaTelecom
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
31  *
32  *
33  *
34  *
35  *
36  *
37  *
38  *
39  *
40  *
41  *
42  *
43  *
44  *
45  *
46  *
47  *
48  *
49  *
50  *


Traceroute to Russia, China CT CN2 (TCP Mode, Max 50 Hop)
============================================================
traceroute to 185.75.173.17 (185.75.173.17), 50 hops max, 60 byte packets
 1  2.59.132.1  67.34 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  1.60 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.31 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  0.80 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  62.115.141.238  17.21 ms  AS1299  Germany Hesse Frankfurt telia.com
 6  *
 7  62.115.134.93  16.08 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  62.115.134.139  18.82 ms  AS1299  United Kingdom London telia.com
 9  80.239.193.226  19.40 ms  AS1299  TELIA.COM BACKBONE telia.com
10  59.43.180.113  17.56 ms  *  Europe Regions ChinaTelecom
11  185.75.173.17  52.52 ms  AS4809  Russian Federation Moscow cteurope.net


Traceroute to Russia, Moscow RT (TCP Mode, Max 50 Hop)
============================================================
traceroute to 87.226.162.77 (87.226.162.77), 50 hops max, 60 byte packets
 1  2.59.132.1  101.74 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  17.74 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  13.44 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  149.14.69.193  1.26 ms  AS174  Germany Hesse Frankfurt cogentco.com
 5  *
 6  *
 7  62.67.36.230  1.16 ms  AS3356  Germany Hesse Frankfurt level3.com
 8  213.59.212.223  40.06 ms  AS12389  Russian Federation Moscow rt.ru
 9  87.226.140.2  40.23 ms  AS12389  Russian Federation Moscow rt.ru
10  *
11  87.226.162.77  50.77 ms  AS12389  Russian Federation Moscow rt.ru


Traceroute to Russia, Moscow TTK (TCP Mode, Max 50 Hop)
============================================================
traceroute to 217.150.32.2 (217.150.32.2), 50 hops max, 60 byte packets
 1  2.59.132.1  42.83 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  2.01 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.33 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  62.115.51.73  1.25 ms  AS1299  TELIA.COM BACKBONE telia.com
 5  213.248.69.66  1.18 ms  AS1299  Germany Hesse Frankfurt telia.com
 6  *
 7  62.33.207.217  44.50 ms  AS20485  Russian Federation Moscow ttk.ru
 8  80.237.46.177  44.53 ms  AS20485  Russian Federation Moscow ttk.ru
 9  217.150.32.243  45.23 ms  AS20485  Russian Federation Moscow ttk.ru
10  10.105.0.1  45.81 ms  *  LAN Address
11  217.150.32.2  45.20 ms  AS20485  Russian Federation Moscow ttk.ru


Traceroute to Russia, Moscow MTS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 195.34.32.71 (195.34.32.71), 50 hops max, 60 byte packets
 1  2.59.132.1  163.11 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 2  176.96.136.81  33.37 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 3  176.96.136.1  0.53 ms  AS44066  Germany Hesse Frankfurt php-friends.de
 4  80.81.192.78  1.28 ms  AS61568  Germany Hesse Frankfurt de-cix.net
 5  212.188.2.190  34.58 ms  AS8359  Russian Federation Moscow mts.ru
 6  195.34.53.5  34.50 ms  AS8359  Russian Federation Moscow mts.ru
 7  195.34.53.213  34.87 ms  AS8359  Russian Federation Moscow mts.ru
 8  195.34.32.71  35.74 ms  AS8359  Russian Federation Moscow mts.ru


 -&amp;gt; Traceroute Test (IPV6)

Traceroute to China, Beijing CU IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2408:80f0:4100:2005::3 (2408:80f0:4100:2005::3), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.65 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  1.70 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.57 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  0.45 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2001:470:0:404::2  0.77 ms  AS6939  United States he.net
 6  *
 7  2001:470:0:227::1  11.08 ms  AS6939  United States he.net
 8  2001:470:0:3ea::1  12.65 ms  AS6939  United States he.net
 9  2001:470:0:2cf::2  87.55 ms  AS6939  United States he.net
10  2001:470:0:33a::2  83.49 ms  AS6939  United States he.net
11  2600:80a::13  143.29 ms  AS701  United States verizon.com
12  2600:80a:13f::9e  204.47 ms  AS701  United States verizon.com
13  2408:8000:2:70b::  374.29 ms  AS4837  China ChinaUnicom
14  2408:8000:2:65e::  377.72 ms  AS4837  China ChinaUnicom
15  *
16  2408:8000:2:685::  401.32 ms  AS4837  China ChinaUnicom
17  2408:8000:1100:317::3  423.50 ms  AS4808  China Beijing ChinaUnicom
18  2408:8000:1100:240a::3  422.36 ms  AS4808  China Beijing ChinaUnicom
19  2408:8000:1f10:3d03::3  415.35 ms  AS4808  China Beijing ChinaUnicom
20  2408:80f0:4100:2006::1  417.48 ms  AS4808  China Beijing ChinaUnicom
21  2408:80f0:4100:2006::b  425.92 ms  AS4808  China Beijing ChinaUnicom
22  *
23  2408:80f0:4100:2005::3  425.13 ms  AS4808  China Beijing ChinaUnicom

Traceroute to China, Beijing CT IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2400:da00:2::29 (2400:da00:2::29), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.89 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  42.71 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.41 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  2.16 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2001:470:0:404::2  0.80 ms  AS6939  United States he.net
 6  2001:470:0:4b7::2  8.04 ms  AS6939  United States he.net
 7  *
 8  *
 9  240e:0:a::c9:cc9  245.71 ms  AS4134  China ChinaTelecom
10  *
11  240e::21:61:4b03  292.61 ms  AS4134  China ChinaTelecom
12  240e::61:61:6202  298.50 ms  AS4134  China ChinaTelecom
13  240e:1a:1:8::3  297.88 ms  AS4134,AS23650  China Jiangsu ChinaTelecom
14  240e:1a:130:f100::3  283.56 ms  AS4134,AS23650  China Jiangsu ChinaTelecom
15  *
16  2400:da00::b63d:fd5a  311.65 ms  AS38365  China Beijing baidu.com ChinaTelecom
17  *
18  *
19  *
20  *
21  2400:da00:2::29  342.65 ms  AS38365  China Beijing baidu.com ChinaTelecom

Traceroute to China, Beijing CM IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2409:8089:1020:50ff:1000::fd01 (2409:8089:1020:50ff:1000::fd01), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.52 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  156.41 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  1.27 ms  AS44066  Germany first-colo.net
 4  2001:7f8::e455:0:1  22.80 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2402:4f00:2000:100::13d  61.10 ms  AS58453  China Hong Kong ChinaMobile
 6  *
 7  *
 8  *
 9  *
10  *
11  2409:8080:0:2:103:1b1:0:1  345.34 ms  AS9808  China ChinaMobile
12  *
13  2409:8089:1020:50ff:1000::fd01  347.11 ms  AS9808  China Beijing ChinaMobile

Traceroute to China, Shanghai CU IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2408:8000:9000:20e6::b7 (2408:8000:9000:20e6::b7), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.29 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  30.55 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.34 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  0.56 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2001:470:0:404::2  0.75 ms  AS6939  United States he.net
 6  2001:470:0:4b7::2  8.38 ms  AS6939  United States he.net
 7  2001:470:0:227::1  11.13 ms  AS6939  United States he.net
 8  *
 9  2001:470:0:2cf::2  78.20 ms  AS6939  United States he.net
10  2001:470:0:33a::2  83.33 ms  AS6939  United States he.net
11  2600:80a::13  143.92 ms  AS701  United States verizon.com
12  *
13  2408:8000:2:70e::  368.62 ms  AS4837  China ChinaUnicom
14  *
15  2408:8000:2:7a5::1  383.90 ms  AS4837  China ChinaUnicom
16  2408:8000:2:686::  488.32 ms  AS4837  China ChinaUnicom
17  *
18  2408:8000:9000:20e6::b7  470.85 ms  AS17621  China Shanghai ChinaUnicom

Traceroute to China, Shanghai CT IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 240e:18:10:a01::1 (240e:18:10:a01::1), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.62 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  6.00 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.48 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  0.67 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2a04:f580:8210:100::9  1.43 ms  AS4134  United Kingdom ChinaTelecom
 6  240e:0:a::cc:5ab8  237.90 ms  AS4134  China ChinaTelecom
 7  240e:0:a::c9:4a25  239.42 ms  AS4134  China ChinaTelecom
 8  *
 9  *
10  240e:18:10:1315::89  294.43 ms  AS4134,AS4812  China Shanghai ChinaTelecom
11  *
12  240e:18:10:a01::1  293.74 ms  AS4134,AS4812  China Shanghai ChinaTelecom

Traceroute to China, Shanghai CM IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2409:801e:5c03:2000::207 (2409:801e:5c03:2000::207), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.41 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  4.72 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  1.46 ms  AS44066  Germany first-colo.net
 4  2001:7f8::e455:0:1  26.48 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2402:4f00:2000:100::115  56.94 ms  AS58453  China Hong Kong ChinaMobile
 6  2402:4f00:2000:100::212  273.09 ms  AS58453  China Hong Kong ChinaMobile
 7  2409:8080:0:4:2f1:292::  273.62 ms  AS9808  China ChinaMobile
 8  *
 9  2409:8080:0:1:201:2c1::  323.42 ms  AS9808  China ChinaMobile
10  *
11  2409:801e:f0:1::1c6  321.54 ms  AS9808,AS24400  China Shanghai ChinaMobile
12  2409:801e:f0:1::fd  323.46 ms  AS9808,AS24400  China Shanghai ChinaMobile
13  2409:801e:5c01:2000::31  326.98 ms  AS9808,AS24400  China Shanghai ChinaMobile
14  *
15  2409:801e:5c03:2000::207  323.24 ms  AS9808,AS24400  China Shanghai ChinaMobile

Traceroute to China, Guangzhou CU IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2408:8001:3011:310::3 (2408:8001:3011:310::3), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.67 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  6.10 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.67 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  0.69 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2001:470:0:404::2  3.53 ms  AS6939  United States he.net
 6  *
 7  2001:470:0:227::1  11.17 ms  AS6939  United States he.net
 8  2001:470:0:3ea::1  11.19 ms  AS6939  United States he.net
 9  2001:470:0:2cf::2  78.20 ms  AS6939  United States he.net
10  2001:470:0:33a::2  83.51 ms  AS6939  United States he.net
11  2600:80a::13  143.77 ms  AS701  United States verizon.com
12  *
13  2408:8000:2:720::  365.63 ms  AS4837  China ChinaUnicom
14  *
15  *
16  2408:8000:2:685::  335.74 ms  AS4837  China ChinaUnicom
17  2408:8000:2:383::1  359.20 ms  AS4837  China ChinaUnicom
18  2408:8000:2:5bd::  423.79 ms  AS4837  China ChinaUnicom
19  2408:8001:3011:5c::1  453.92 ms  AS17816,AS17622  China Guangdong Guangzhou ChinaUnicom
20  2408:8001:3011:310::3  451.94 ms  AS17816,AS17622  China Guangdong Guangzhou ChinaUnicom

Traceroute to China, Guangzhou CT IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 240e:ff:e02c:1:21:: (240e:ff:e02c:1:21::), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.54 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  15.57 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.44 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  0.52 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2a04:f580:8210:100::9  3.23 ms  AS4134  United Kingdom ChinaTelecom
 6  240e:0:a::cc:26a0  220.33 ms  AS4134  China ChinaTelecom
 7  240e:0:a::c9:5a35  224.65 ms  AS4134  China ChinaTelecom
 8  *
 9  240e::21:31:3803  228.45 ms  AS4134  China ChinaTelecom
10  *
11  240e:1f:5807:1::3  265.32 ms  AS4134,AS58466  China Guangdong Guangzhou ChinaTelecom
12  *
13  240e:ff:e02c:1:21::  253.11 ms  AS4134,AS58466  China Guangdong Guangzhou ChinaTelecom

Traceroute to China, Guangzhou CM IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2409:8057:5c00:30::6 (2409:8057:5c00:30::6), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.71 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  12.81 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.71 ms  AS44066  Germany first-colo.net
 4  2001:7f8::e455:0:1  21.48 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2402:4f00:2000:100::135  63.19 ms  AS58453  China Hong Kong ChinaMobile
 6  2402:4f00:2000:100::20e  275.15 ms  AS58453  China Hong Kong ChinaMobile
 7  *
 8  2409:8080:0:1:2c1:2f1:4:0  324.44 ms  AS9808  China ChinaMobile
 9  *
10  2409:8080:0:1:202:302:0:1  357.44 ms  AS9808  China ChinaMobile
11  *
12  2409:8055:0:1105::  359.48 ms  AS9808,AS56040  China Guangdong ChinaMobile
13  2409:8055:0:130a::  358.62 ms  AS9808,AS56040  China Guangdong ChinaMobile
14  2409:8055:1:b300::  363.45 ms  AS9808,AS56040  China Guangdong ChinaMobile
15  2409:8055:5c00:0:4c30::1  380.14 ms  AS9808,AS56040  China Guangdong ChinaMobile
16  *
17  *
18  *
19  *
20  *
21  2409:8057:5c00:30::6  370.13 ms  AS9808,AS56040  China Guangdong ChinaMobile

Traceroute to China, Beijing Dr.Peng IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2403:8880:400f::2 (2403:8880:400f::2), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.89 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  9.69 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.39 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  0.52 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2001:470:0:404::2  0.83 ms  AS6939  United States he.net
 6  *
 7  2001:470:0:227::1  10.98 ms  AS6939  United States he.net
 8  2001:470:0:3ea::1  11.11 ms  AS6939  United States he.net
 9  2001:470:0:2cf::2  79.46 ms  AS6939  United States he.net
10  2001:470:0:299::1  83.46 ms  AS6939  United States he.net
11  2001:470:0:324::2  141.43 ms  AS6939  United States he.net
12  2001:470:0:72::2  138.01 ms  AS6939  United States he.net
13  *
14  2001:252:0:302::1  291.85 ms  AS23911  China Beijing CHINAEDU
15  2001:252:0:106::2  293.20 ms  AS23911  China Beijing CHINAEDU
16  2001:252:0:108::1  293.79 ms  AS23911  China Beijing CHINAEDU
17  *
18  2001:252:0:1::1  292.50 ms  AS23911  China Beijing CHINAEDU
19  2001:da8:2:801::2  292.78 ms  AS23910  China CHINAEDU
20  2400:a980:ff:29::2  293.15 ms  AS133111  China CHINAEDU
21  2403:8880:400f::2  292.96 ms  AS17964  China DRPENG

Traceroute to China, Beijing CERNET2 IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2001:da8:a0:1001::1 (2001:da8:a0:1001::1), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.67 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  5.35 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  1.03 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  1.59 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2001:470:0:404::2  2.53 ms  AS6939  United States he.net
 6  *
 7  2001:470:0:227::1  11.26 ms  AS6939  United States he.net
 8  2001:470:0:3ea::1  23.18 ms  AS6939  United States he.net
 9  2001:470:0:2cf::2  79.45 ms  AS6939  United States he.net
10  2001:470:0:299::1  83.28 ms  AS6939  United States he.net
11  2001:470:0:324::2  137.69 ms  AS6939  United States he.net
12  2001:470:0:72::2  138.00 ms  AS6939  United States he.net
13  *
14  2001:252:0:302::1  291.63 ms  AS23911  China Beijing CHINAEDU
15  *
16  2001:252:0:1::1  292.29 ms  AS23911  China Beijing CHINAEDU
17  2001:da8:a0:1001::1  291.95 ms  AS23910  China CHINAEDU

Traceroute to China, Beijing CSTNET IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2400:dd00:0:37::213 (2400:dd00:0:37::213), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.66 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  4.58 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.34 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  0.50 ms  *  Germany Hesse Frankfurt de-cix.net
 5  *
 6  *
 7  2400:8800:1f0e:62::1  253.59 ms  AS3491  China Hong Kong pccw.com
 8  2400:8800:1f0e:62::2  259.51 ms  AS3491  China Hong Kong pccw.com
 9  2400:dd00:0:40::195  295.67 ms  AS7497  China CSTNET
10  2400:dd00:0:33::200  292.04 ms  AS7497  China CSTNET
11  2400:dd00:0:37::213  286.77 ms  AS7497  China CSTNET

Traceroute to China, Hongkong HKIX IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2001:7fa:0:1::ca28:a1a9 (2001:7fa:0:1::ca28:a1a9), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  4.21 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  42.12 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  4.62 ms  AS44066  Germany first-colo.net
 4  2a02:d28:5580:5:1012::1  8.02 ms  AS3257  Netherlands gtt.net
 5  *
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *
31  *
32  *
33  *
34  *
35  *
36  *
37  *
38  *
39  *
40  *
41  *
42  *
43  *
44  *
45  *
46  *
47  *
48  *
49  *
50  *

Traceroute to China, Hongkong HE IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2001:470:0:490::2 (2001:470:0:490::2), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  3.18 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  9.43 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.98 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  0.59 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2001:470:0:3fd::1  6.15 ms  AS6939  United States he.net
 6  2001:470:0:3fc::2  21.60 ms  AS6939  United States he.net
 7  2001:470:0:4ac::2  9.77 ms  AS6939  United States he.net
 8  2001:470:0:1c2::1  16.31 ms  AS6939  United States he.net
 9  2001:470:0:3f5::1  155.32 ms  AS6939  United States he.net
10  2001:470:0:2ea::1  185.18 ms  AS6939  United States he.net
11  2001:470:0:490::2  188.31 ms  AS6939  United States he.net

Traceroute to United States, San Jose HE IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2001:470:1:ff::1 (2001:470:1:ff::1), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.30 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  19.85 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  5.70 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  0.70 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2001:470:0:404::2  2.27 ms  AS6939  United States he.net
 6  *
 7  2001:470:0:227::1  11.03 ms  AS6939  United States he.net
 8  2001:470:0:3ea::1  11.09 ms  AS6939  United States he.net
 9  2001:470:0:2cf::2  93.79 ms  AS6939  United States he.net
10  2001:470:0:296::2  139.14 ms  AS6939  United States he.net
11  2001:470:1:ff::1  141.23 ms  AS6939  United States he.net

Traceroute to United States, Chicago NTT IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2001:418:0:5000::1026 (2001:418:0:5000::1026), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.70 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  3.85 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.36 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  0.49 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2001:7f8::b62:0:1  1.49 ms  *  Germany Hesse Frankfurt de-cix.net
 6  *
 7  2001:418:0:2000::d9  85.06 ms  AS2914  United States ntt.com
 8  2001:418:0:2000::75  102.41 ms  AS2914  United States ntt.com
 9  2001:418:0:2000::291  100.86 ms  AS2914  United States ntt.com
10  2001:418:0:2000::235  103.56 ms  AS2914  United States ntt.com
11  2001:418:0:5000::1026  113.00 ms  AS2914  United States ntt.com

Traceroute to United States, Los Angeles Telia IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2001:2000:3080:1e96::2 (2001:2000:3080:1e96::2), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.33 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  3.94 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.44 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  0.51 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2001:470:0:168::2  0.71 ms  AS6939  United States he.net
 6  2001:2000:3019:6c::1  146.43 ms  AS1299  Europe Regions telia.com
 7  *
 8  2001:2000:3019:71::1  146.71 ms  AS1299  Europe Regions telia.com
 9  *
10  2001:2000:3080:1e96::2  142.41 ms  AS1299  Europe Regions telia.com

Traceroute to United States, Los Angeles GTT IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2001:668:0:3:ffff:0:d8dd:9d5a (2001:668:0:3:ffff:0:d8dd:9d5a), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  8.41 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  37.91 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.39 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  4.79 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2001:7f8::cb9:0:3  0.95 ms  *  Germany Hesse Frankfurt de-cix.net
 6  2001:668:0:2:ffff:0:5995:bb72  162.67 ms  AS3257  GTT.NET BACKBONE gtt.net
 7  2001:668:0:3:ffff:0:d8dd:9d5a  145.02 ms  AS3257  GTT.NET BACKBONE gtt.net

Traceroute to United States, Kansas City Sprint IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2600:0:1:1239:144:228:241:71 (2600:0:1:1239:144:228:241:71), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.50 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  115.52 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.40 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  1.66 ms  *  Germany Hesse Frankfurt de-cix.net
 5  *
 6  *
 7  2001:470:0:410::2  26.66 ms  AS6939  United States he.net
 8  2001:470:0:440::1  78.88 ms  AS6939  United States he.net
 9  2001:504:17:115::38  85.82 ms  *  United States New York New York City digitalrealty.com
10  2600:0:2:1239:144:232:4:85  83.27 ms  AS1239  United States sprint.com
11  2600:0:2:1239:144:232:25:231  84.46 ms  AS1239  United States sprint.com
12  2600:0:2:1239:144:232:14:7  86.63 ms  AS1239  United States sprint.com
13  2600:0:2:1239:144:232:15:19  102.99 ms  AS1239  United States sprint.com
14  2600:0:1:1239:144:228:241:71  126.35 ms  AS1239  United States sprint.com

Traceroute to United States, Los Angeles Verizon IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2600:80a:2::15 (2600:80a:2::15), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  3.24 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  3.75 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.69 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  1.25 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2001:470:0:404::2  17.14 ms  AS6939  United States he.net
 6  2001:470:0:4b7::2  11.84 ms  AS6939  United States he.net
 7  2001:470:0:227::1  19.08 ms  AS6939  United States he.net
 8  2001:470:0:3ea::1  24.48 ms  AS6939  United States he.net
 9  2001:470:0:2cf::2  94.70 ms  AS6939  United States he.net
10  2001:470:0:33a::2  88.24 ms  AS6939  United States he.net
11  2600:80a:2::15  143.33 ms  AS701  United States verizon.com

Traceroute to United Status, Ashburn Cogentco IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2001:550:0:1000::9a36:4215 (2001:550:0:1000::9a36:4215), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.62 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  38.64 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  2.29 ms  AS44066  Germany first-colo.net
 4  2001:978:2:42::5f:1  1.40 ms  AS174  Europe Regions cogentco.com
 5  *
 6  2001:550:0:1000::9a36:3aea  15.14 ms  AS174  United States cogentco.com
 7  2001:550:0:1000::421c:4c5  101.87 ms  AS174  United States cogentco.com
 8  *
 9  2001:550:0:1000::9a36:4215  89.08 ms  AS174  United States cogentco.com

Traceroute to United States, San Jose Level3 IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2001:1900:2100::2eb5 (2001:1900:2100::2eb5), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  3.05 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  4.11 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  1.54 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  0.64 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2001:470:0:37e::2  0.98 ms  AS6939  United States he.net
 6  2001:1900:2100::2eb5  158.32 ms  AS3356  LEVEL3.COM BACKBONE level3.com

Traceroute to United States, Seattle Zayo IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2001:438:ffff::407d:d6a (2001:438:ffff::407d:d6a), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.53 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  7.94 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.49 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  1.34 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2001:470:0:404::2  0.66 ms  AS6939  United States he.net
 6  2001:7f8:8:20:0:193d:0:1  1.03 ms  *  Germany Hesse Frankfurt ecix.net
 7  2001:438:ffff::407d:1d40  136.18 ms  AS6461  United States zayo.com
 8  2001:438:ffff::407d:1d36  138.71 ms  AS6461  United States zayo.com
 9  2001:438:ffff::407d:1d3b  137.98 ms  AS6461  United States zayo.com
10  2001:438:ffff::407d:1d50  140.35 ms  AS6461  United States zayo.com
11  2001:438:ffff::407d:1d11  141.90 ms  AS6461  United States zayo.com
12  *
13  2001:438:ffff::407d:1d7e  144.20 ms  AS6461  United States zayo.com
14  *
15  2001:438:ffff::407d:1d1a  136.93 ms  AS6461  United States zayo.com
16  2001:438:ffff::407d:1d01  140.21 ms  AS6461  United States zayo.com
17  2001:438:ffff::407d:d6a  140.75 ms  AS6461  United States zayo.com

Traceroute to France, Paris HE IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2001:470:0:349::1 (2001:470:0:349::1), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  1.43 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  17.37 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  5.89 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  0.61 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2001:470:0:404::2  0.90 ms  AS6939  United States he.net
 6  *
 7  *
 8  2001:470:0:349::1  32.11 ms  AS6939  United States he.net

Traceroute to German, Frankfurt NTT IPV6 (ICMP Mode, Max 50 Hop)
============================================================
traceroute to 2001:728:0:5000::6f6 (2001:728:0:5000::6f6), 50 hops max, 60 byte packets
 1  2a01:7e0:1:417::1  3.56 ms  AS44066  Germany first-colo.net
 2  2a0d:5940::2  15.36 ms  AS44066  Germany
 3  2a01:7e0:ffff:ffff:ffff:0:417:1  0.57 ms  AS44066  Germany first-colo.net
 4  2001:7f8::1b1b:0:1  1.54 ms  *  Germany Hesse Frankfurt de-cix.net
 5  2001:7f8::b62:0:1  1.28 ms  *  Germany Hesse Frankfurt de-cix.net
 6  2001:728:0:2000::189  0.98 ms  AS2914  United Kingdom ntt.com
 7  2001:728:0:2000::32  1.20 ms  AS2914  United Kingdom ntt.com
 8  2001:728:0:5000::6f6  7.91 ms  AS2914  United Kingdom ntt.com
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;整体来讲这款VPS的性价比还可以，但是对于他家虚假宣传的无限流量我是没有好感的。另外他家标注了独享CPU的就是VDS，可以放心跑满。对于欧洲这种遍地廉价鸡的地方，PHP-Friends只能说是中规中矩，没什么亮眼的地方。&lt;/p&gt;
</content:encoded></item><item><title>netcup评测：2020优惠款</title><link>https://yushum.com/posts/netcup%E8%AF%84%E6%B5%8B2020%E4%BC%98%E6%83%A0%E6%AC%BE/</link><guid isPermaLink="true">https://yushum.com/posts/netcup%E8%AF%84%E6%B5%8B2020%E4%BC%98%E6%83%A0%E6%AC%BE/</guid><pubDate>Mon, 24 Feb 2020 20:18:41 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;Netcup，德国主机商，成立于2008年9月，自有机房。目前的业务范围也还十分的广泛，VPS，独服。虚拟主机，域名注册都有涉及。而且德国商家都是价格实惠流量给的很多，配置也很不错。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/image-4-1024x482.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;配置信息&lt;/h2&gt;
&lt;h3&gt;系统信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;OS Release:		Debian GNU/Linux &quot;Buster&quot; 10.3 (x86_64)
 CPU Model:		QEMU Virtual CPU version 2.5+
 CPU Cache Size:	16384 KB
 CPU Number:		2 vCPU
 Virt Type:		KVM
 Memory Usage:		80.67 MB / 3.85 GB
 Swap Usage:		[ No Swapfile / Swap partition ]
 Disk Usage:		1.39 GB / 164.04 GB
 Boot Device:		/dev/sda3
 Load (1/5/15min):	0.20 0.08 0.02
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;网络信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;IPV4 - IP Address:	[DE] 46.38.*.*
 IPV4 - ASN Info:	AS197540 (netcup GmbH)
 IPV4 - Region:		Germany Baden-Württemberg Karlsruhe
 IPV6 - IP Address:	[DE] 2a03:4000:2:ccc::*
 IPV6 - ASN Info:	AS197540 (netcup GmbH)
 IPV6 - Region:		Germany Baden-Württemberg Karlsruhe
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;流媒体解锁&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;HBO Now:				No
 Bahamut Anime:				No
 Abema.TV:				No
 Princess Connect Re:Dive (Beta):	Yes
 Bilibili China Mainland Only:		No
 Bilibili Hongkong/Macau/Taiwan:	No
 Bilibili Taiwan Only:			No
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;CPU性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread Test:			835 Scores
 2 Threads Test:		1401 Scores
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;内存性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread - Read Test :		19292.66 MB/s
 1 Thread - Write Test:		13868.83 MB/s
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;硬盘性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Test Name		Write Speed				Read Speed
 10MB-4K Block		29.1 MB/s (7111 IOPS, 0.36 s)		31.5 MB/s (7684 IOPS, 0.33 s)
 10MB-1M Block		486 MB/s (463 IOPS, 0.02 s)		1.4 GB/s (1333 IOPS, 0.01 s)
 100MB-4K Block		27.3 MB/s (6674 IOPS, 3.84 s)		37.5 MB/s (9148 IOPS, 2.80 s)
 100MB-1M Block		1.3 GB/s (1248 IOPS, 0.08 s)		2.0 GB/s (1866 IOPS, 0.05 s)
 1GB-4K Block		34.8 MB/s (8497 IOPS, 30.13 s)		38.6 MB/s (9429 IOPS, 27.15 s)
 1GB-1M Block		862 MB/s (822 IOPS, 1.22 s)		2.1 GB/s (1991 IOPS, 0.50 s)
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;网速测试&lt;/h2&gt;
&lt;h3&gt;Speedtest.net网速测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Node Name			Upload Speed	Download Speed	Ping Latency
 Speedtest Default		109.39 MB/s	96.17 MB/s	2.74 ms
 China, Jilin CU		2.13 MB/s	31.07 MB/s	338.78 ms
 China, Shandong CU		9.03 MB/s	77.61 MB/s	200.73 ms
 China, Nanjing CU		0.25 MB/s	1.54 MB/s	347.02 ms
 China, Shanghai CU		0.23 MB/s	27.52 MB/s	314.45 ms
 China, Lanzhou CU		0.18 MB/s	11.38 MB/s	309.41 ms
 China, Beijing CT		0.18 MB/s	26.30 MB/s	161.78 ms
 China, Hangzhou CT		0.69 MB/s	7.71 MB/s	231.29 ms
 China, Nanjing CT		Fail: Unknown Error
 China, Guangzhou CT		0.07 MB/s	1.82 MB/s	216.02 ms
 China, Wuhan CT		0.13 MB/s	7.51 MB/s	222.84 ms
 China, Shenyang CM		Fail: Unknown Error
 China, Hangzhou CM		Fail: Unknown Error
 China, Nanning CM		16.76 MB/s	58.58 MB/s	234.38 ms
 China, Lanzhou CM		66.24 MB/s	33.23 MB/s	225.46 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;IPv4路由测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 60 byte packets
 1  37.221.192.3  0.29 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.43 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.92 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.86 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.78 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.88  4.11 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.142.195  3.97 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  219.158.41.77  223.94 ms  AS4837  China Henan Zhengzhou ChinaUnicom
 9  219.158.98.5  233.24 ms  AS4837  China Beijing ChinaUnicom
10  219.158.16.81  252.30 ms  AS4837  China Beijing ChinaUnicom
11  219.158.4.169  244.68 ms  AS4837  China Beijing ChinaUnicom
12  *
13  124.65.63.234  272.53 ms  AS4808  China Beijing ChinaUnicom
14  61.148.158.102  240.45 ms  AS4808  China Beijing ChinaUnicom
15  61.135.113.154  224.24 ms  AS4808  China Beijing ChinaUnicom
16  *
17  *
18  123.125.99.1  251.35 ms  AS4808  China Beijing ChinaUnicom


Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 60 byte packets
 1  37.221.192.3  0.24 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.34 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.18 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.93 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.77 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  118.85.205.81  8.53 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 7  202.97.52.69  201.34 ms  AS4134  China ChinaTelecom
 8  202.97.12.89  159.32 ms  AS4134  China Beijing ChinaTelecom
 9  202.97.48.209  167.53 ms  AS4134  China Beijing ChinaTelecom
10  180.149.128.1  181.02 ms  AS23724  China Beijing ChinaTelecom


Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 60 byte packets
 1  37.221.192.3  0.43 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.39 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.87 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  4.03 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.27 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.90  19.35 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.114.98  21.03 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  62.115.134.93  19.09 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.117.193  19.69 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.171.223  18.03 ms  AS1299  Europe Regions telia.com
11  223.120.10.41  18.83 ms  AS58453  United Kingdom London ChinaMobile
12  *
13  *
14  *
15  *
16  221.176.16.213  197.74 ms  AS9808  China Beijing ChinaMobile
17  *
18  211.136.67.166  199.20 ms  AS56048  China Beijing ChinaMobile
19  211.136.95.226  195.75 ms  AS56048  China Beijing ChinaMobile
20  *
21  *
22  211.136.25.153  200.71 ms  AS56048  China Beijing ChinaMobile


Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.0.49 (58.247.0.49), 30 hops max, 60 byte packets
 1  37.221.192.3  0.51 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.46 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.01 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.96 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.91 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.88  4.39 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.142.195  4.03 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  219.158.33.193  213.76 ms  AS4837  Germany Hesse Frankfurt ChinaUnicom
 9  219.158.11.149  227.22 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
10  219.158.16.77  211.21 ms  AS4837  China Beijing ChinaUnicom
11  219.158.5.145  250.73 ms  AS4837  China Beijing ChinaUnicom
12  219.158.16.90  247.81 ms  AS4837  China Shanghai ChinaUnicom
13  *
14  139.226.214.33  268.74 ms  AS17621  China Shanghai ChinaUnicom
15  58.247.0.49  278.52 ms  AS17621  China Shanghai ChinaUnicom


Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.1 (180.153.28.1), 30 hops max, 60 byte packets
 1  37.221.192.3  0.23 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.46 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.97 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.79 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.74 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  118.85.205.81  5.37 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 7  202.97.95.205  202.25 ms  AS4134  China ChinaTelecom
 8  *
 9  202.97.24.201  210.82 ms  AS4134  China Shanghai ChinaTelecom
10  61.152.24.21  181.05 ms  AS4812  China Shanghai ChinaTelecom
11  *
12  *
13  101.227.255.46  205.78 ms  AS4812  China Shanghai ChinaTelecom
14  *
15  *
16  *
17  101.227.250.3  184.89 ms  AS4812  China Shanghai ChinaTelecom
18  *
19  101.227.250.2  221.74 ms  AS4812  China Shanghai ChinaTelecom
20  *
21  180.153.28.1  201.67 ms  AS4812  China Shanghai ChinaTelecom


Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 60 byte packets
 1  37.221.192.3  0.30 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.61 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.96 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  4.35 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.90 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  221.176.17.178  206.36 ms  AS9808  China Shanghai ChinaMobile
14  221.183.55.22  207.65 ms  AS9808  China Shanghai ChinaMobile


Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 60 byte packets
 1  37.221.192.3  0.32 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.32 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.83 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.83 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.93 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.88  4.18 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.142.195  3.96 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  219.158.33.193  213.74 ms  AS4837  Germany Hesse Frankfurt ChinaUnicom
 9  219.158.98.133  214.46 ms  AS4837  China Beijing ChinaUnicom
10  219.158.16.77  214.36 ms  AS4837  China Beijing ChinaUnicom
11  219.158.4.169  253.61 ms  AS4837  China Beijing ChinaUnicom
12  *
13  120.82.0.158  302.41 ms  AS17816  China Guangdong Guangzhou ChinaUnicom
14  120.80.175.78  282.99 ms  AS17622  China Guangdong Guangzhou ChinaUnicom
15  210.21.4.130  292.84 ms  AS17622  China Guangdong Guangzhou ChinaUnicom


Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 60 byte packets
 1  37.221.192.3  0.26 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.31 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.75 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  4.52 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.63 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  118.85.205.81  6.17 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 7  202.97.58.37  215.22 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
 8  *
 9  202.97.91.21  240.28 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
10  113.96.4.154  243.04 ms  AS58466  China Guangdong Guangzhou ChinaTelecom
11  *
12  113.108.209.1  234.73 ms  AS58466  China Guangdong Guangzhou ChinaTelecom


Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.139.129.5 (211.139.129.5), 30 hops max, 60 byte packets
 1  37.221.192.3  0.27 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.32 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.89 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.86 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.87 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  *
 7  223.120.10.121  4.49 ms  AS58453  Germany Hesse Frankfurt ChinaMobile
 8  *
 9  221.183.55.94  195.62 ms  AS9808  China Guangdong Guangzhou ChinaMobile
10  221.183.25.118  221.69 ms  AS9808  China Guangdong Guangzhou ChinaMobile
11  *
12  *
13  *
14  *
15  *
16  211.139.129.5  206.56 ms  AS56040  China Guangdong Guangzhou ChinaMobile


Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 60 byte packets
 1  37.221.192.3  0.34 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.56 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.95 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.157.130.129  4.15 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
 5  217.239.43.2  30.50 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
 6  217.239.43.2  31.43 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
 7  80.156.162.218  172.14 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
 8  210.78.28.161  179.21 ms  *  China Beijing ChinaUnicom
 9  218.105.2.198  219.43 ms  AS9929  China Shanghai ChinaUnicom
10  210.13.112.254  200.64 ms  AS9929  China Shanghai ChinaUnicom
11  210.13.66.237  212.16 ms  AS9929  China Shanghai ChinaUnicom
12  210.13.66.238  198.83 ms  AS9929  China Shanghai ChinaUnicom


Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 60 byte packets
 1  37.221.192.3  0.84 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.37 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.99 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.91 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.71 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  118.85.205.81  9.43 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 7  59.43.244.53  4.42 ms  AS4809  China ChinaTelecom
 8  59.43.250.6  4.41 ms  AS4809  Germany Hesse Frankfurt ChinaTelecom
 9  59.43.250.37  157.92 ms  AS4809  China Shanghai ChinaTelecom
10  59.43.187.69  158.72 ms  AS4809  China Shanghai ChinaTelecom
11  59.43.130.205  165.00 ms  AS4809  China Shanghai ChinaTelecom
12  101.95.88.206  190.32 ms  AS4812  China Shanghai ChinaTelecom
13  *
14  58.32.0.1  159.79 ms  AS4812  China Shanghai ChinaTelecom


Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 14.131.128.1 (14.131.128.1), 30 hops max, 60 byte packets
 1  37.221.192.3  0.51 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.42 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.81 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.79 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.10 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  *
 7  62.115.142.205  3.99 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  219.158.33.193  214.05 ms  AS4837  Germany Hesse Frankfurt ChinaUnicom
 9  219.158.11.153  215.07 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
10  219.158.16.65  219.94 ms  AS4837  China Beijing ChinaUnicom
11  219.158.5.149  393.23 ms  AS4837  China Beijing ChinaUnicom
12  123.126.0.254  299.11 ms  AS4808  China Beijing ChinaUnicom
13  202.106.193.38  273.85 ms  AS4808  China Beijing ChinaUnicom
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 60 byte packets
 1  37.221.192.3  0.77 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.71 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.16 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.78 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.86 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  *
 7  62.115.142.205  4.11 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  219.158.33.193  227.48 ms  AS4837  Germany Hesse Frankfurt ChinaUnicom
 9  219.158.11.149  266.56 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
10  219.158.3.137  265.34 ms  AS4837  China Beijing ChinaUnicom
11  219.158.5.149  292.25 ms  AS4837  China Beijing ChinaUnicom
12  61.149.203.118  282.50 ms  AS4808  China Beijing ChinaUnicom
13  *
14  61.148.156.190  319.55 ms  AS4808  China Beijing ChinaUnicom
15  124.65.47.202  328.08 ms  AS4808  China Beijing ChinaUnicom
16  202.99.1.134  282.47 ms  AS4808,AS17964  China Beijing DRPENG
17  218.241.255.86  323.07 ms  AS4808,AS4847  China Beijing DRPENG
18  218.241.253.130  267.44 ms  AS4808,AS4847  China Beijing DRPENG
19  211.167.230.100  323.89 ms  AS4808,AS17964  China Beijing DRPENG


Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 60 byte packets
 1  37.221.192.3  0.28 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.38 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.20 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.148  4.07 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  213.198.83.165  4.44 ms  AS2914  Germany Hesse Frankfurt ntt.com
 6  *
 7  129.250.6.42  4.50 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.8.234  4.37 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  195.219.50.21  148.24 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
10  5.23.30.16  152.03 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
11  195.219.194.149  149.55 ms  AS6453  Netherlands North Holland Amsterdam tatacommunications.com
12  195.219.194.6  158.91 ms  AS6453  Netherlands North Holland Amsterdam tatacommunications.com
13  80.231.131.160  158.28 ms  AS6453  United Kingdom London tatacommunications.com
14  63.243.128.37  153.57 ms  AS6453  United States New York New York City tatacommunications.com
15  63.243.128.29  153.58 ms  AS6453  United States California San Jose tatacommunications.com
16  63.243.128.141  158.71 ms  AS6453  United States New York New York City tatacommunications.com
17  63.243.128.31  153.67 ms  AS6453  United States California San Jose tatacommunications.com
18  66.110.59.8  151.91 ms  AS6453  United States California Los Angeles tatacommunications.com
19  66.110.59.182  282.22 ms  AS6453  United States California Los Angeles tatacommunications.com
20  101.4.117.213  295.17 ms  AS4538  China Beijing CHINAEDU
21  101.4.117.97  281.04 ms  AS4538  China Beijing CHINAEDU
22  101.4.117.213  291.41 ms  AS4538  China Beijing CHINAEDU
23  *
24  202.112.38.82  283.37 ms  AS4538  China Beijing CHINAEDU
25  202.205.109.205  284.84 ms  AS4538  China Beijing CHINAEDU


Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 60 byte packets
 1  37.221.192.3  0.31 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.50 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.89 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.78 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.07 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  130.117.14.197  4.06 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 7  130.117.0.1  3.92 ms  AS174  Germany Hesse Frankfurt cogentco.com
 8  154.54.58.234  13.78 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 9  130.117.49.154  21.39 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
10  154.54.1.118  239.40 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
11  *
12  159.226.254.5  225.41 ms  AS7497  China Beijing CSTNET
13  159.226.254.49  223.37 ms  AS7497  China Beijing CSTNET
14  159.226.254.1  224.74 ms  AS7497  China Beijing CSTNET


Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 60 byte packets
 1  37.221.192.3  0.24 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.55 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  12.50 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  4.17 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.94 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.88  18.52 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.123.13  18.41 ms  AS1299  France Ile-de-France Paris telia.com
 8  62.115.114.228  18.47 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.117.123  20.58 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.171.223  17.95 ms  AS1299  Europe Regions telia.com
11  223.120.10.85  18.05 ms  AS58453  United Kingdom London ChinaMobile
12  *
13  *
14  221.183.25.193  242.90 ms  AS9808  China Shanghai ChinaMobile
15  *
16  221.176.17.34  260.25 ms  AS9808  China Shanghai ChinaMobile
17  *
18  211.156.132.25  213.75 ms  AS7641  China Beijing chinabtn.com CATV
19  211.156.129.89  231.63 ms  AS7641  China Beijing chinabtn.com CATV
20  211.156.128.229  231.89 ms  AS7641  China Beijing chinabtn.com CATV
21  *
22  *
23  211.156.140.17  239.99 ms  AS7641  China Beijing chinabtn.com CATV


Traceroute to China, Hongkong CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.160.95.218 (203.160.95.218), 30 hops max, 60 byte packets
 1  37.221.192.3  0.35 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  10.48 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.04 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.81.194.117  4.35 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 5  217.150.59.246  164.73 ms  AS20485  Russian Federation ttk.ru
 6  217.150.59.245  165.82 ms  AS20485  Russian Federation ttk.ru
 7  43.252.86.65  168.42 ms  AS10099  China Hong Kong ChinaUnicom
 8  119.252.139.14  167.54 ms  AS10099  China Hong Kong ChinaUnicom
 9  202.77.22.89  165.23 ms  AS10099  China Hong Kong ChinaUnicom
10  203.160.95.218  166.93 ms  AS10099  China Hong Kong ChinaUnicom


Traceroute to China, Hongkong CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.232.173 (203.215.232.173), 30 hops max, 60 byte packets
 1  37.221.192.3  0.25 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.61 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.70 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.77 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.17 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.88  4.44 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.141.241  5.47 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  202.97.58.149  4.66 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 9  202.97.99.157  159.27 ms  AS4134  China ChinaTelecom
10  203.215.232.173  255.58 ms  AS4134  China Hong Kong ChinaTelecom


Traceroute to China, Hongkong CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.8.25.187 (203.8.25.187), 30 hops max, 60 byte packets
 1  37.221.192.3  0.23 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.43 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.96 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  6.52 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.67 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.88  4.02 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.114.98  13.45 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  62.115.134.93  18.88 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.134.139  19.93 ms  AS1299  United Kingdom London telia.com
10  80.239.193.226  19.10 ms  AS1299  TELIA.COM BACKBONE telia.com
11  59.43.246.249  204.67 ms  AS4809  China Guangdong Guangzhou ChinaTelecom
12  59.43.248.2  207.20 ms  AS4809  China Hong Kong ChinaTelecom
13  59.43.248.146  224.03 ms  AS4809  China Hong Kong ChinaTelecom
14  203.8.25.187  224.92 ms  AS4809  China Hong Kong ChinaTelecom


Traceroute to China, Hongkong CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.142.105.9 (203.142.105.9), 30 hops max, 60 byte packets
 1  37.221.192.3  0.55 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.65 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.97 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.81.193.51  14.27 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 5  *
 6  223.118.3.74  201.94 ms  AS58453  China Hong Kong ChinaMobile
 7  223.119.0.2  202.40 ms  AS58453  China Hong Kong ChinaMobile
 8  203.142.100.165  202.62 ms  AS9231  China Hong Kong ChinaMobile
 9  203.142.100.22  202.95 ms  AS9231  China Hong Kong ChinaMobile
10  203.142.105.9  203.29 ms  AS9231  China Hong Kong ChinaMobile


Traceroute to China, Hongkong HGC (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.188.104.30 (218.188.104.30), 30 hops max, 60 byte packets
 1  37.221.192.3  0.59 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.55 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  16.08 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  11.06 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  144.208.208.210  10.84 ms  AS47147  Europe Regions anexia.com
 6  144.208.208.157  10.71 ms  AS47147  Netherlands North Holland Amsterdam anexia.com
 7  80.249.210.31  28.97 ms  AS1200,AS9009,AS28634  Netherlands North Holland Amsterdam ams-ix.net
 8  218.189.8.94  34.89 ms  AS9304  HGC.COM.HK BACKBONE hgc.com.hk
 9  218.189.8.97  190.49 ms  AS9304  China Hong Kong hgc.com.hk
10  218.189.5.24  190.60 ms  AS9304  China Hong Kong hgc.com.hk
11  218.188.104.30  190.00 ms  AS9304  China Hong Kong hgc.com.hk


Traceroute to China, Hongkong HKBN (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.6.23.239 (210.6.23.239), 30 hops max, 60 byte packets
 1  37.221.192.3  0.42 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.43 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.54 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.81.193.79  17.11 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 5  202.40.148.33  17.44 ms  AS4637,AS10026  United Kingdom London reach.com
 6  202.84.136.14  230.62 ms  AS4637  TELSTRA.COM BACKBONE telstra.com
 7  202.84.157.37  237.06 ms  AS4637  China Hong Kong telstra.com
 8  210.57.80.194  205.67 ms  AS4637,AS10026  China Hong Kong telstra.com
 9  61.244.225.66  207.04 ms  AS9269  China Hong Kong hkbn.net
10  203.186.235.137  212.25 ms  AS9269  China Hong Kong hkbn.net
11  203.80.215.62  206.24 ms  AS9269  China Hong Kong hkbn.net
12  210.6.23.239  203.24 ms  AS9269  China Hong Kong hkbn.net


Traceroute to China, Hongkong PCCW (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.85.125.60 (202.85.125.60), 30 hops max, 60 byte packets
 1  37.221.192.3  0.30 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.35 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.82 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.74 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.21 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.116.17  3.51 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  213.248.68.71  4.00 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  63.223.17.94  247.92 ms  AS3491  China Hong Kong pccw.com
 9  63.223.17.94  244.48 ms  AS3491  China Hong Kong pccw.com
10  63.218.61.174  245.28 ms  AS3491  China Hong Kong pccw.com
11  203.215.255.197  246.76 ms  AS9925  China Hong Kong pbase.net
12  202.153.99.204  246.85 ms  AS9925  China Hong Kong pbase.net
13  202.85.125.60  256.81 ms  AS9925  China Hong Kong pccw.com


Traceroute to China, Hongkong TGT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.123.76.239 (202.123.76.239), 30 hops max, 60 byte packets
 1  37.221.192.3  0.54 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.55 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.00 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.148  4.09 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  213.198.83.165  4.31 ms  AS2914  Germany Hesse Frankfurt ntt.com
 6  *
 7  129.250.7.8  159.83 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.7.67  189.69 ms  AS2914  China Hong Kong ntt.com
 9  129.250.6.98  188.82 ms  AS2914  China Hong Kong ntt.com
10  129.250.5.30  189.74 ms  AS2914  NTT.COM BACKBONE ntt.com
11  203.131.254.14  187.06 ms  AS2914  China Hong Kong ntt.com
12  203.78.72.102  188.28 ms  AS10098  China Hong Kong towngastelecom.com
13  203.78.73.99  190.77 ms  AS10098  China Hong Kong towngastelecom.com
14  *
15  202.123.76.239  189.80 ms  AS10098  China Hong Kong towngastelecom.com


Traceroute to China, Hongkong WTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 59.152.252.242 (59.152.252.242), 30 hops max, 60 byte packets
 1  37.221.192.3  0.22 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.39 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.00 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.81.195.39  185.94 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 5  115.160.187.54  186.43 ms  AS9381  China Hong Kong hkbn.net
 6  10.104.131.158  186.18 ms  *  LAN Address
 7  59.152.252.196  186.24 ms  AS9381  China Hong Kong hkbn.net
 8  59.152.252.242  186.75 ms  AS9381  China Hong Kong hkbn.net


Traceroute to Singapore, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.233.1 (203.215.233.1), 30 hops max, 60 byte packets
 1  37.221.192.3  0.26 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.40 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.81 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.95 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.86 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.88  4.07 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.121.3  4.19 ms  AS1299  Germany Hesse Frankfurt telia.com
 8  202.97.58.149  5.32 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 9  203.215.233.1  162.62 ms  AS4134  Singapore ChinaTelecom


Traceroute to Singapore, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 183.91.61.1 (183.91.61.1), 30 hops max, 60 byte packets
 1  37.221.192.3  0.28 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.46 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.72 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.84 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.94 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.90  4.64 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.114.98  13.39 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  62.115.114.228  18.43 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.134.135  18.86 ms  AS1299  United Kingdom London telia.com
10  80.239.193.226  19.97 ms  AS1299  TELIA.COM BACKBONE telia.com
11  59.43.247.182  19.25 ms  AS4809  United Kingdom London ChinaTelecom
12  59.43.250.101  182.31 ms  AS4809  China ChinaTelecom
13  183.91.61.1  182.63 ms  AS4809  Singapore ChinaTelecom


Traceroute to Singapore, Singtel (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.201.1.11 (118.201.1.11), 30 hops max, 60 byte packets
 1  37.221.192.3  0.25 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.39 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.99 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.81.194.26  14.39 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 5  64.125.26.233  10.22 ms  AS6461  Germany Hesse Frankfurt zayo.com
 6  64.125.31.216  15.43 ms  AS6461  ZAYO.COM BACKBONE zayo.com
 7  64.125.29.59  15.50 ms  AS6461  Netherlands North Holland Amsterdam zayo.com
 8  64.125.29.80  15.41 ms  AS6461  Netherlands North Holland Amsterdam zayo.com
 9  64.125.29.17  15.29 ms  AS6461  United Kingdom Berkshire County Slough zayo.com
10  64.125.29.129  15.41 ms  AS6461  United Kingdom Berkshire County Slough zayo.com
11  64.125.27.241  16.04 ms  AS6461  ZAYO.COM BACKBONE zayo.com
12  64.125.26.74  40.73 ms  AS6461  ZAYO.COM BACKBONE zayo.com
13  213.161.72.106  15.35 ms  AS6461  United Kingdom London zayo.com
14  203.208.166.249  263.71 ms  AS7473  Singapore singtel.com
15  203.208.153.117  256.27 ms  AS7473  Singapore singtel.com
16  203.208.182.253  248.78 ms  AS7473  Singapore singtel.com
17  203.208.158.186  256.00 ms  AS7473  Singapore singtel.com
18  203.208.174.34  248.00 ms  AS7473  Singapore singtel.com
19  203.125.232.130  257.35 ms  AS3758  Singapore singtel.com
20  165.21.49.126  248.05 ms  AS3758  Singapore singtel.com
21  *
22  118.201.1.11  262.07 ms  AS3758  Singapore singtel.com


Traceroute to Singapore, StarHub (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.116.46.33 (203.116.46.33), 30 hops max, 60 byte packets
 1  37.221.192.3  0.45 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.44 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.15 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.93 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.72 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  *
 7  62.115.133.181  18.93 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  62.115.133.184  19.16 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.116.12  19.25 ms  AS1299  TELIA.COM BACKBONE telia.com
10  80.239.132.22  178.61 ms  AS1299  Singapore telia.com
11  80.239.132.22  184.77 ms  AS1299  Singapore telia.com
12  62.115.114.41  245.64 ms  AS1299  TELIA.COM BACKBONE telia.com
13  203.116.46.33  179.93 ms  AS4657  Singapore starhub.com


Traceroute to Singapore, M1 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.123.8.123 (203.123.8.123), 30 hops max, 60 byte packets
 1  37.221.192.3  0.73 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  6.39 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.80 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.81.193.79  17.48 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 5  202.84.178.5  17.00 ms  AS4637  United Kingdom London telstra.com
 6  202.40.148.225  20.16 ms  AS4637,AS10026  TELSTRA.COM BACKBONE reach.com
 7  202.84.140.170  168.50 ms  AS4637  TELSTRA.COM BACKBONE telstra.com
 8  210.176.138.174  183.18 ms  AS4637,AS10026  Singapore telstra.com
 9  210.176.138.174  233.33 ms  AS4637,AS10026  Singapore telstra.com
10  203.116.245.154  183.62 ms  AS4657  Singapore starhub.com
11  203.116.245.154  229.70 ms  AS4657  Singapore starhub.com
12  203.211.158.122  184.85 ms  AS17547  Singapore m1.com.sg
13  203.123.8.123  184.19 ms  AS17547  Singapore m1.com.sg


Traceroute to Singapore, AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.228.0.251 (13.228.0.251), 50 hops max, 60 byte packets
 1  37.221.192.3  0.44 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.58 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.10 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.148  4.19 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  213.198.83.165  4.55 ms  AS2914  Germany Hesse Frankfurt ntt.com
 6  *
 7  129.250.7.8  153.84 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.3.82  153.92 ms  AS2914  Singapore ntt.com
 9  129.250.2.92  153.66 ms  AS2914  Singapore ntt.com
10  116.51.17.46  154.63 ms  AS2914  Singapore ntt.com
11  *
12  *
13  52.93.10.1  155.80 ms  *  Singapore amazon.com
14  52.93.11.61  155.04 ms  *  Singapore amazon.com
15  52.93.11.38  155.40 ms  *  Singapore amazon.com
16  52.93.8.137  155.16 ms  *  Singapore amazon.com
17  203.83.223.190  154.83 ms  AS16509,AS38895  Singapore amazon.com
18  *
19  *
20  *
21  *
22  *
23  *
24  13.228.0.251  154.84 ms  AS16509  Singapore amazon.com


Traceroute to Japan, NTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 61.213.155.84 (61.213.155.84), 30 hops max, 60 byte packets
 1  37.221.192.3  0.38 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.46 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.12 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.148  4.07 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  213.198.83.165  4.54 ms  AS2914  Germany Hesse Frankfurt ntt.com
 6  *
 7  129.250.4.96  90.59 ms  AS2914  United States Virginia Ashburn ntt.com
 8  129.250.3.189  155.18 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.3.192  260.21 ms  AS2914  Japan Tokyo ntt.com
10  129.250.3.28  270.57 ms  AS2914  Japan Tokyo ntt.com
11  61.213.179.34  263.43 ms  AS2914  Japan Tokyo ntt.com
12  *
13  61.213.155.84  276.07 ms  AS2914  Japan Tokyo ntt.com


Traceroute to Japan, IIJ (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.232.15.70 (202.232.15.70), 30 hops max, 60 byte packets
 1  37.221.192.3  0.33 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.56 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.80 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.79 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.31 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.88  19.18 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.114.98  20.38 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  62.115.134.93  19.13 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.114.235  18.11 ms  AS1299  United Kingdom London telia.com
10  202.232.1.61  19.78 ms  AS2497  United Kingdom London iij.ad.jp
11  58.138.98.137  205.78 ms  AS2497  Japan Tokyo iij.ad.jp
12  58.138.101.14  208.55 ms  AS2497  Japan Tokyo iij.ad.jp
13  210.130.142.114  212.85 ms  AS2497  Japan Tokyo iij.ad.jp
14  202.232.15.70  207.86 ms  AS2497  Japan iij.ad.jp


Traceroute to Japan, SoftBank (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.175.32.26 (210.175.32.26), 30 hops max, 60 byte packets
 1  37.221.192.3  0.29 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.63 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.96 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.88 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.79 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  *
 7  62.115.114.98  164.61 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  62.115.114.228  164.39 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  *
10  213.155.130.129  155.99 ms  AS1299  TELIA.COM BACKBONE telia.com
11  213.248.88.78  264.62 ms  AS1299  United States California San Jose telia.com
12  *
13  143.90.232.241  262.27 ms  AS4725  Japan Tokyo odn.ne.jp
14  143.90.47.33  257.67 ms  AS4725  Japan odn.ne.jp
15  143.90.26.230  269.64 ms  AS4725  Japan odn.ne.jp
16  143.90.54.30  265.45 ms  AS4725  Japan odn.ne.jp
17  210.175.32.123  271.91 ms  AS4725  Japan odn.ne.jp
18  210.175.32.26  253.52 ms  AS4725  Japan odn.ne.jp


Traceroute to Japan, KDDI (TCP Mode, Max 30 Hop)
============================================================
traceroute to 106.162.242.108 (106.162.242.108), 30 hops max, 60 byte packets
 1  37.221.192.3  0.28 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.62 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.03 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  4.08 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.72 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.90  149.64 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.123.13  149.45 ms  AS1299  France Ile-de-France Paris telia.com
 8  *
 9  62.115.137.39  149.62 ms  AS1299  TELIA.COM BACKBONE telia.com
10  *
11  203.181.106.169  155.22 ms  AS2516  United States California Los Angeles kddi.com
12  106.187.12.41  258.55 ms  AS2516  Japan Tokyo kddi.com
13  27.90.191.214  251.88 ms  AS2516  Japan kddi.com
14  59.128.99.90  263.61 ms  AS2516  Japan kddi.com
15  111.87.220.242  252.84 ms  AS2516  Japan kddi.com
16  106.162.242.108  257.63 ms  AS2516  Japan kddi.com


Traceroute to Japan, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.236.3 (203.215.236.3), 30 hops max, 60 byte packets
 1  37.221.192.3  0.27 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.56 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.11 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  4.11 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.32 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.90  4.33 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.121.3  3.81 ms  AS1299  Germany Hesse Frankfurt telia.com
 8  202.97.58.149  5.82 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 9  202.97.89.109  202.96 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
10  202.97.24.34  256.74 ms  AS4134  Japan Tokyo ChinaTelecom
11  203.215.236.3  258.56 ms  AS4134  Japan Tokyo ChinaTelecom


Traceroute to Japan, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.55.27.4 (202.55.27.4), 30 hops max, 60 byte packets
 1  37.221.192.3  0.29 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.38 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.79 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  4.03 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.32 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.90  4.03 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.122.138  15.96 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  62.115.134.93  30.98 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.134.135  21.07 ms  AS1299  United Kingdom London telia.com
10  80.239.193.226  19.45 ms  AS1299  TELIA.COM BACKBONE telia.com
11  59.43.246.205  194.84 ms  AS4809  China Shanghai ChinaTelecom
12  59.43.186.186  231.36 ms  AS4809  Japan Tokyo ChinaTelecom
13  202.55.27.4  230.97 ms  AS4809  Japan Tokyo ChinaTelecom


Traceroute to Japan, Amazon AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.112.63.251 (13.112.63.251), 50 hops max, 60 byte packets
 1  37.221.192.3  0.22 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.61 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.08 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.148  4.26 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  213.198.83.165  4.42 ms  AS2914  Germany Hesse Frankfurt ntt.com
 6  *
 7  *
 8  129.250.3.189  169.14 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.3.192  272.92 ms  AS2914  Japan Tokyo ntt.com
10  129.250.6.133  261.87 ms  AS2914  Japan Tokyo ntt.com
11  61.213.161.46  264.95 ms  AS2914  Japan Tokyo ntt.com
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  52.95.31.69  266.41 ms  AS16509  Japan Tokyo amazon.com
20  52.95.31.167  271.58 ms  AS16509  Japan Tokyo amazon.com
21  52.95.31.208  270.35 ms  AS16509  Japan Tokyo amazon.com
22  52.95.31.98  266.96 ms  AS16509  Japan Tokyo amazon.com
23  52.93.250.36  265.78 ms  *  Japan Tokyo amazon.com
24  *
25  *
26  *
27  *
28  *
29  *
30  13.112.63.251  269.54 ms  AS16509  Japan Tokyo amazon.com


Traceroute to South Korea, KT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.114.41.101 (210.114.41.101), 30 hops max, 60 byte packets
 1  37.221.192.3  0.26 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.41 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.07 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.157.130.129  4.14 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
 5  62.154.5.242  153.28 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
 6  62.154.5.242  153.29 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
 7  62.159.61.206  151.87 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
 8  112.174.80.121  287.43 ms  AS4766  KT.COM BACKBONE kt.com
 9  112.174.83.101  285.63 ms  AS4766  Republic of Korea Seoul kt.com
10  *
11  112.174.60.98  293.37 ms  AS4766  Republic of Korea Seoul kt.com
12  112.188.247.210  282.56 ms  AS4766  Republic of Korea Seoul kt.com
13  220.90.203.2  273.95 ms  AS4766  Republic of Korea Seoul kt.com
14  211.37.137.22  282.67 ms  AS4766  Republic of Korea Seoul kt.com
15  210.114.41.101  298.38 ms  AS4766  Republic of Korea Seoul kt.com


Traceroute to South Korea, SK (TCP Mode, Max 30 Hop)
============================================================
traceroute to 175.122.253.62 (175.122.253.62), 30 hops max, 60 byte packets
 1  37.221.192.3  0.46 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.34 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.12 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.81.194.12  185.93 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 5  10.222.3.7  191.63 ms  *  LAN Address
 6  58.229.14.96  256.51 ms  AS9318  Republic of Korea Seoul skbroadband.com
 7  1.255.76.108  244.15 ms  AS9318  Republic of Korea Seoul skbroadband.com
 8  10.222.19.135  228.85 ms  *  LAN Address
 9  10.222.41.70  251.10 ms  *  LAN Address
10  10.222.21.87  245.38 ms  *  LAN Address
11  175.122.253.62  244.76 ms  AS9318  Republic of Korea skbroadband.com


Traceroute to South Korea, LG (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.174.62.44 (211.174.62.44), 30 hops max, 60 byte packets
 1  37.221.192.3  0.50 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.36 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.17 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.148  8.22 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  213.198.83.165  4.45 ms  AS2914  Germany Hesse Frankfurt ntt.com
 6  *
 7  129.250.4.96  89.31 ms  AS2914  United States Virginia Ashburn ntt.com
 8  129.250.3.189  152.84 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.6.49  153.63 ms  AS2914  United States California Los Angeles ntt.com
10  129.250.2.214  153.23 ms  AS2914  United States California Los Angeles ntt.com
11  168.143.229.202  145.73 ms  AS2914  United States ntt.com
12  211.118.180.169  149.99 ms  AS3786  United States California Los Angeles uplus.co.kr
13  1.208.104.45  288.17 ms  AS3786  Republic of Korea Seoul uplus.co.kr
14  *
15  1.208.145.238  290.15 ms  AS3786  Republic of Korea Seoul uplus.co.kr
16  1.208.146.29  298.22 ms  AS3786  Republic of Korea Seoul uplus.co.kr
17  1.213.146.134  276.45 ms  AS3786  Republic of Korea Seoul uplus.co.kr
18  114.108.170.54  291.66 ms  AS3786  Republic of Korea Seoul uplus.co.kr
19  211.174.62.44  299.37 ms  AS3786  Republic of Korea Seoul uplus.co.kr


Traceroute to South Korea, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.185.246.3 (218.185.246.3), 30 hops max, 60 byte packets
 1  37.221.192.3  0.24 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.54 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.71 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.75 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.21 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.90  4.09 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.123.13  11.86 ms  AS1299  France Ile-de-France Paris telia.com
 8  62.115.114.228  22.98 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.134.135  18.89 ms  AS1299  United Kingdom London telia.com
10  80.239.193.226  20.12 ms  AS1299  TELIA.COM BACKBONE telia.com
11  59.43.187.185  177.88 ms  AS4809  China Shanghai ChinaTelecom
12  59.43.184.25  198.30 ms  AS4809  Republic of Korea Seoul ChinaTelecom
13  218.185.246.3  197.47 ms  AS4809  Republic of Korea Seoul ChinaTelecom


Traceroute to South Korea, Amazon AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.124.63.251 (13.124.63.251), 50 hops max, 60 byte packets
 1  37.221.192.3  0.38 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  3.06 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.04 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.148  4.00 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  213.198.83.165  4.46 ms  AS2914  Germany Hesse Frankfurt ntt.com
 6  *
 7  129.250.4.96  89.45 ms  AS2914  United States Virginia Ashburn ntt.com
 8  129.250.3.189  156.66 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.3.192  264.80 ms  AS2914  Japan Tokyo ntt.com
10  129.250.6.129  273.20 ms  AS2914  Japan Tokyo ntt.com
11  61.213.161.50  267.10 ms  AS2914  Japan Tokyo ntt.com
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  52.93.248.194  285.47 ms  *  Republic of Korea Seoul amazon.com
20  54.239.123.4  301.23 ms  AS16509  Republic of Korea Seoul amazon.com
21  52.93.248.216  291.28 ms  *  Republic of Korea Seoul amazon.com
22  54.239.122.22  300.94 ms  AS16509  Republic of Korea Seoul amazon.com
23  54.239.123.75  286.24 ms  AS16509  Republic of Korea Seoul amazon.com
24  *
25  *
26  *
27  *
28  13.124.63.251  282.94 ms  AS16509  Republic of Korea Seoul amazon.com


Traceroute to China, Taiwan Chief (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.133.242.116 (202.133.242.116), 30 hops max, 60 byte packets
 1  37.221.192.3  0.31 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.53 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  10.94 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  10.90 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  144.208.208.210  10.81 ms  AS47147  Europe Regions anexia.com
 6  144.208.208.157  10.67 ms  AS47147  Netherlands North Holland Amsterdam anexia.com
 7  80.249.211.208  220.44 ms  AS1200,AS9009,AS28634  Netherlands North Holland Amsterdam ams-ix.net
 8  *
 9  *
10  113.21.95.72  252.36 ms  AS17408  China Taiwan Taipei City chief.com.tw
11  *
12  202.133.242.114  259.19 ms  AS17408  China Taiwan Taipei City chief.com.tw
13  202.133.242.116  249.97 ms  AS17408  China Taiwan Taipei City chief.com.tw


Traceroute to China, Taiwan APTG (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.200.69.90 (210.200.69.90), 30 hops max, 60 byte packets
 1  37.221.192.3  0.23 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.39 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.85 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.81.193.79  15.35 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 5  202.40.148.33  16.72 ms  AS4637,AS10026  United Kingdom London reach.com
 6  202.84.136.14  233.60 ms  AS4637  TELSTRA.COM BACKBONE telstra.com
 7  202.84.138.114  254.46 ms  AS4637  China Hong Kong telstra.com
 8  202.84.137.253  252.55 ms  AS4637  China Taiwan Taipei City telstra.com
 9  210.176.44.78  231.40 ms  AS4637,AS10026  China Taiwan Taipei City telstra.com
10  211.76.96.75  252.43 ms  AS17709  China Taiwan Taipei City aptg.com.tw
11  211.76.100.53  226.96 ms  AS17709  China Taiwan Taipei City aptg.com.tw
12  210.200.80.254  227.91 ms  AS131142  China Taiwan Taipei City aptg.com.tw
13  10.31.251.1  239.63 ms  *  LAN Address
14  210.200.69.90  227.37 ms  AS131142  China Taiwan Taipei City aptg.com.tw


Traceroute to China, Taiwan CHT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.75.129.162 (203.75.129.162), 30 hops max, 60 byte packets
 1  37.221.192.3  0.30 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.38 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.82 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.81.196.59  246.80 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 5  220.128.6.34  246.82 ms  AS3462  China Taiwan New Taipei City cht.com.tw
 6  220.128.7.42  239.55 ms  AS3462  China Taiwan New Taipei City cht.com.tw
 7  220.128.26.78  239.92 ms  AS3462  China Taiwan Taipei City cht.com.tw
 8  220.128.2.5  244.17 ms  AS3462  China Taiwan Taipei City cht.com.tw
 9  211.22.229.45  240.12 ms  AS3462  China Taiwan Taipei City cht.com.tw
10  1.1.1.2  244.95 ms  AS12445  CLOUDFLARE.COM apnic.net
11  *
12  203.75.129.162  239.75 ms  AS3462  China Taiwan Taipei City cht.com.tw


Traceroute to China, Taiwan TFN (TCP Mode, Max 30 Hop)
============================================================
traceroute to 219.87.66.3 (219.87.66.3), 30 hops max, 60 byte packets
 1  37.221.192.3  0.21 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.60 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.05 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.148  3.95 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  213.198.83.165  4.45 ms  AS2914  Germany Hesse Frankfurt ntt.com
 6  *
 7  *
 8  129.250.6.6  4.30 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.7.63  160.91 ms  AS2914  Singapore ntt.com
10  129.250.7.67  196.12 ms  AS2914  China Hong Kong ntt.com
11  129.250.2.18  266.90 ms  AS2914  China Taiwan Taipei City ntt.com
12  129.250.2.107  260.54 ms  AS2914  NTT.COM BACKBONE ntt.com
13  129.250.7.41  269.10 ms  AS2914  NTT.COM BACKBONE ntt.com
14  61.58.33.222  264.79 ms  AS2914  China Taiwan Taipei City ntt.com
15  60.199.16.202  259.20 ms  AS9924  China Taiwan Taipei City twmbroadband.com
16  60.199.16.62  259.82 ms  AS9924  China Taiwan Taipei City twmbroadband.com
17  219.87.66.3  268.22 ms  AS9924  China Taiwan Taipei City twmbroadband.com


Traceroute to China,Taiwan FET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.73.144.38 (211.73.144.38), 30 hops max, 60 byte packets
 1  37.221.192.3  0.23 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.41 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.94 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.148  4.27 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  213.198.83.165  4.58 ms  AS2914  Germany Hesse Frankfurt ntt.com
 6  *
 7  *
 8  129.250.6.6  4.37 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.7.63  160.92 ms  AS2914  Singapore ntt.com
10  129.250.7.67  198.75 ms  AS2914  China Hong Kong ntt.com
11  129.250.2.18  267.50 ms  AS2914  China Taiwan Taipei City ntt.com
12  199.245.16.34  273.85 ms  AS2914  China Taiwan Taipei City ntt.com
13  192.72.155.141  268.44 ms  AS4780  China Taiwan Taipei City fetnet.net
14  192.72.155.86  260.46 ms  AS4780  China Taiwan Taipei City fetnet.net
15  *
16  *
17  *
18  211.73.144.38  260.84 ms  AS9674  China Taiwan fetnet.net


Traceroute to China, Taiwan KBT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 61.63.0.102 (61.63.0.102), 30 hops max, 60 byte packets
 1  37.221.192.3  0.37 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.67 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  6.80 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.148  21.14 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  213.198.83.165  4.39 ms  AS2914  Germany Hesse Frankfurt ntt.com
 6  *
 7  *
 8  129.250.6.6  4.33 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.7.63  160.83 ms  AS2914  Singapore ntt.com
10  129.250.7.67  199.44 ms  AS2914  China Hong Kong ntt.com
11  129.250.2.18  265.80 ms  AS2914  China Taiwan Taipei City ntt.com
12  129.250.2.107  257.94 ms  AS2914  NTT.COM BACKBONE ntt.com
13  129.250.7.41  269.53 ms  AS2914  NTT.COM BACKBONE ntt.com
14  61.58.33.206  279.00 ms  AS2914  China Taiwan Taipei City ntt.com
15  203.187.3.25  255.05 ms  AS9416  China Taiwan Taipei City kbtelecom.net
16  203.187.9.226  254.31 ms  AS9416  China Taiwan Taipei City kbtelecom.net
17  58.86.1.174  261.01 ms  AS18042  China Taiwan Taipei City kbtelecom.net
18  58.86.0.94  259.98 ms  AS18042  China Taiwan Taipei City kbtelecom.net
19  58.86.0.26  258.77 ms  AS18042  China Taiwan Taipei City kbtelecom.net
20  61.63.0.102  261.43 ms  AS18042  China Taiwan Taipei City kbtelecom.net


Traceroute to China, Taiwan TAIFO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 103.31.196.203 (103.31.196.203), 30 hops max, 60 byte packets
 1  37.221.192.3  0.23 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.58 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.00 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  6.04 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.44 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.88  154.48 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.123.13  154.13 ms  AS1299  France Ile-de-France Paris telia.com
 8  *
 9  62.115.121.220  210.37 ms  AS1299  United States California Los Angeles telia.com
10  213.248.78.146  149.23 ms  AS1299  United States California Los Angeles telia.com
11  85.95.26.82  252.94 ms  AS15412  Japan Tokyo globalcloudxchange.com
12  85.95.27.102  268.08 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
13  80.77.2.198  287.90 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
14  *
15  113.21.95.123  295.35 ms  AS17408  China Taiwan Taipei City chief.com.tw
16  *
17  103.31.197.122  288.16 ms  AS131584  China Taiwan Taipei City taifo.com.tw
18  *
19  103.31.197.70  292.92 ms  AS131584  China Taiwan Taipei City taifo.com.tw
20  103.31.196.203  286.77 ms  AS131584  China Taiwan Taipei City taifo.com.tw


Traceroute to United States, Los Angeles China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  37.221.192.3  0.34 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.39 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.72 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.88 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.22 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.90  3.89 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.116.158  3.76 ms  AS1299  Germany Hesse Frankfurt telia.com
 8  202.97.58.149  6.80 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 9  218.30.33.17  96.06 ms  AS4134  United States ctamericas.com


Traceroute to United States, Los Angeles China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.102.252.100 (66.102.252.100), 30 hops max, 60 byte packets
 1  37.221.192.3  0.18 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.41 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.98 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  4.03 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.82 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.90  147.29 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.123.13  154.03 ms  AS1299  France Ile-de-France Paris telia.com
 8  62.115.122.159  90.45 ms  AS1299  United States Virginia Ashburn telia.com
 9  62.115.121.220  154.13 ms  AS1299  United States California Los Angeles telia.com
10  213.248.79.253  150.42 ms  AS1299  TELIA.COM BACKBONE telia.com
11  66.102.252.100  152.21 ms  AS4809  United States ctamericas.com


Traceroute to United States, Los Angeles PCCW (TCP Mode, Max 30 Hop)
============================================================
traceroute to 63.218.42.81 (63.218.42.81), 30 hops max, 60 byte packets
 1  37.221.192.3  0.38 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  1.27 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.96 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  4.09 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.13 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.116.17  3.54 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  213.248.68.71  4.01 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  63.218.42.81  152.59 ms  AS3491  United States California Los Angeles pccw.com


Traceroute to United States, Los Angeles HE (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.220.18.42 (66.220.18.42), 30 hops max, 60 byte packets
 1  37.221.192.3  0.41 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.38 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.00 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.81.192.172  3.75 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 5  72.52.92.13  12.85 ms  AS6939  France Ile-de-France Paris he.net
 6  184.105.213.173  90.49 ms  AS6939  United States Virginia Ashburn he.net
 7  184.105.80.202  145.07 ms  AS6939  United States California Los Angeles he.net
 8  66.220.18.42  143.67 ms  AS6939  United States California Los Angeles he.net


Traceroute to United States, Los Angeles GTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 173.205.77.98 (173.205.77.98), 30 hops max, 60 byte packets
 1  37.221.192.3  0.21 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.60 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.79 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.77 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.32 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.90  4.16 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.121.7  3.86 ms  AS1299  Germany Hesse Frankfurt telia.com
 8  62.115.172.123  4.60 ms  AS1299  Germany Hesse Frankfurt telia.com
 9  89.149.181.102  152.96 ms  AS3257  United States California Los Angeles gtt.net
10  173.205.77.98  153.07 ms  AS3257  United States California Los Angeles gtt.net


Traceroute to United States, San Fransico ATT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 12.169.215.33 (12.169.215.33), 30 hops max, 60 byte packets
 1  37.221.192.3  39.70 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.56 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.98 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.72 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.03 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.88  94.89 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.114.98  95.26 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  *
 9  213.155.136.39  99.77 ms  AS1299  United States Virginia Ashburn telia.com
10  *
11  12.122.135.102  169.64 ms  AS7018  United States Washington, D.C. att.com
12  12.122.135.250  167.46 ms  AS7018  United States Washington, D.C. att.com
13  12.122.28.205  165.33 ms  AS7018  United States Illinois Chicago att.com
14  12.122.1.174  174.27 ms  AS7018  United States California San Francisco att.com
15  12.122.110.13  164.49 ms  AS7018  United States California att.com
16  12.244.156.30  163.20 ms  AS7018  United States California att.com
17  12.169.215.33  162.16 ms  AS7018  United States California att.com


Traceroute to United States, New York TATA (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.198.181.100 (66.198.181.100), 30 hops max, 60 byte packets
 1  37.221.192.3  0.26 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.30 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.69 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.76 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.69 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.90  4.23 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.137.167  14.89 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  213.248.82.41  3.99 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  195.219.87.10  94.65 ms  AS6453  France Ile-de-France Paris tatacommunications.com
10  195.219.194.149  93.19 ms  AS6453  Netherlands North Holland Amsterdam tatacommunications.com
11  195.219.194.6  93.92 ms  AS6453  Netherlands North Holland Amsterdam tatacommunications.com
12  80.231.131.160  90.63 ms  AS6453  United Kingdom London tatacommunications.com
13  80.231.131.158  90.77 ms  AS6453  United States New York New York City tatacommunications.com
14  216.6.90.21  97.00 ms  AS6453  United States New York New York City tatacommunications.com
15  216.6.90.73  94.05 ms  AS6453  United States New York New York City tatacommunications.com
16  209.58.75.198  90.34 ms  AS6453  United States New York New York City tatacommunications.com
17  66.198.181.100  94.30 ms  AS6453  United States New York New York City tatacommunications.com


Traceroute to United States, San Jose China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  37.221.192.3  0.27 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.59 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.88 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.88 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.96 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.88  4.06 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.141.237  16.78 ms  AS1299  Germany Hesse Frankfurt telia.com
 8  202.97.58.149  5.53 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 9  218.30.33.17  91.37 ms  AS4134  United States ctamericas.com


Traceroute to United States, San Jose NTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 23.11.26.62 (23.11.26.62), 30 hops max, 60 byte packets
 1  37.221.192.3  0.22 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.60 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.16 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.148  4.09 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  213.198.83.165  4.50 ms  AS2914  Germany Hesse Frankfurt ntt.com
 6  *
 7  129.250.4.96  89.26 ms  AS2914  United States Virginia Ashburn ntt.com
 8  129.250.3.85  89.43 ms  AS2914  United States Virginia Ashburn ntt.com
 9  129.250.6.237  162.30 ms  AS2914  NTT.COM BACKBONE ntt.com
10  129.250.3.27  153.26 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.2.48  159.90 ms  AS2914  NTT.COM BACKBONE ntt.com
12  23.11.26.62  151.96 ms  AS2914  United States California San Jose akamai.com


Traceroute to United States, Fremont HE (TCP Mode, Max 30 Hop)
============================================================
traceroute to 72.52.104.74 (72.52.104.74), 30 hops max, 60 byte packets
 1  37.221.192.3  0.42 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.40 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.01 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.81.192.172  3.71 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 5  184.105.80.37  27.44 ms  AS6939  United Kingdom London he.net
 6  72.52.92.166  105.67 ms  AS6939  United States New York New York City he.net
 7  184.104.192.242  85.10 ms  AS6939  HE.NET BACKBONE he.net
 8  184.105.81.61  152.45 ms  AS6939  United States California Fremont he.net
 9  72.52.104.74  148.18 ms  AS6939  United States California Fremont he.net


Traceroute to United States, Las Vegas Level3 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 205.216.62.38 (205.216.62.38), 30 hops max, 60 byte packets
 1  37.221.192.3  0.23 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.43 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.07 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  4.50 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.56 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.88  94.99 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.123.13  95.06 ms  AS1299  France Ile-de-France Paris telia.com
 8  62.115.114.228  98.12 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.143.79  90.50 ms  AS1299  United States Virginia Ashburn telia.com
10  80.239.192.99  107.15 ms  AS1299  United States Virginia Ashburn telia.com
11  67.14.14.26  106.94 ms  AS209  United States Georgia Atlanta centurylink.com
12  216.34.172.50  134.15 ms  AS3561  United States Texas Dallas centurylink.com
13  216.34.164.106  130.93 ms  AS3561  United States Texas Dallas centurylink.com
14  205.216.7.204  131.47 ms  AS3561  United States Texas Dallas centurylink.com
15  *
16  205.216.62.38  135.56 ms  AS3561  United States Texas Dallas centurylink.com


Traceroute to United States, San Jose ZAYO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 64.125.191.31 (64.125.191.31), 30 hops max, 60 byte packets
 1  37.221.192.3  0.44 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.64 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.97 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.81.194.26  10.20 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 5  64.125.26.233  10.34 ms  AS6461  Germany Hesse Frankfurt zayo.com
 6  64.125.31.216  146.00 ms  AS6461  ZAYO.COM BACKBONE zayo.com
 7  64.125.29.59  145.71 ms  AS6461  Netherlands North Holland Amsterdam zayo.com
 8  64.125.29.80  145.72 ms  AS6461  Netherlands North Holland Amsterdam zayo.com
 9  64.125.29.17  145.72 ms  AS6461  United Kingdom Berkshire County Slough zayo.com
10  *
11  64.125.29.126  145.68 ms  AS6461  United States New York New York City zayo.com
12  64.125.29.209  147.11 ms  AS6461  United States Illinois Chicago zayo.com
13  64.125.29.19  146.26 ms  AS6461  United States Colorado Denver zayo.com
14  64.125.31.219  145.89 ms  AS6461  United States California San Jose zayo.com
15  64.125.27.63  145.72 ms  AS6461  United States California San Jose zayo.com
16  64.125.191.31  146.14 ms  AS6461  United States California San Jose zayo.com


Traceroute to United States, Ashburn Cogentco (TCP Mode, Max 30 Hop)
============================================================
traceroute to 149.127.109.166 (149.127.109.166), 30 hops max, 60 byte packets
 1  37.221.192.3  0.25 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.44 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.91 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  4.06 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.87 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  130.117.14.197  3.97 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 7  130.117.0.1  4.07 ms  AS174  Germany Hesse Frankfurt cogentco.com
 8  154.54.58.238  13.69 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 9  154.54.61.117  32.36 ms  AS174  Europe Regions cogentco.com
10  154.54.85.245  98.71 ms  AS174  United States Virginia Sterling cogentco.com
11  154.54.30.65  99.59 ms  AS174  United States Virginia Arlington cogentco.com
12  154.54.46.194  100.41 ms  AS174  United States Virginia Herndon cogentco.com
13  38.140.164.58  95.78 ms  AS174  United States Virginia Herndon cogentco.com
14  149.127.109.2  95.42 ms  AS174  United States Virginia Ashburn cogentco.com
15  149.127.109.166  96.30 ms  AS174  United States Virginia Ashburn cogentco.com


Traceroute to German, Telekom (TCP Mode, Max 30 Hop)
============================================================
traceroute to 80.146.191.1 (80.146.191.1), 30 hops max, 60 byte packets
 1  37.221.192.3  9.48 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.61 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.79 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.157.130.129  3.92 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
 5  91.23.215.109  8.90 ms  AS3320  Germany North Rhine-Westphalia telekom.de
 6  80.146.191.1  13.66 ms  AS3320  Germany North Rhine-Westphalia telekom.de


Traceroute to German, Frankfurt O2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 82.113.108.25 (82.113.108.25), 30 hops max, 60 byte packets
 1  37.221.192.3  2.03 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.30 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.98 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.81.193.89  4.34 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 5  62.53.28.178  5.05 ms  AS6805  Germany Hesse Offenbach am Main telefonica.de
 6  62.53.0.198  4.36 ms  AS6805  Germany telefonica.de
 7  62.53.0.127  4.50 ms  AS6805  Germany telefonica.de
 8  62.53.14.103  4.25 ms  AS6805  Germany Hesse Frankfurt telefonica.de
 9  62.53.2.63  4.36 ms  AS6805  Germany telefonica.de
10  82.113.108.25  4.20 ms  AS39706  Germany Hesse Frankfurt o2online.de


Traceroute to German, Frankfurt Vodafone (TCP Mode, Max 50 Hop)
============================================================
traceroute to 139.7.146.11 (139.7.146.11), 50 hops max, 60 byte packets
 1  37.221.192.3  0.83 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  34.52 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.68 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.81.192.117  4.32 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 5  *
 6  145.253.5.57  7.73 ms  AS3209  Germany vodafone.de
 7  92.79.230.2  7.68 ms  AS3209  Germany vodafone.de
 8  139.7.148.84  7.41 ms  AS3209  Germany vodafone.de
 9  10.210.0.50  7.71 ms  *  LAN Address
10  10.210.3.113  7.56 ms  *  LAN Address
11  10.210.140.141  7.64 ms  *  LAN Address
12  10.210.148.36  13.61 ms  *  LAN Address
13  139.7.146.11  49.38 ms  AS3209  Germany vodafone.de


Traceroute to German, Frankfurt China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.85.205.101 (118.85.205.101), 30 hops max, 60 byte packets
 1  37.221.192.3  0.24 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.40 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.01 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.76 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.17 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.90  4.98 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.116.162  5.09 ms  AS1299  Germany Hesse Frankfurt telia.com
 8  202.97.58.149  4.51 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 9  118.85.205.101  3.95 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom


Traceroute to German, Frankfurt China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 5.10.138.33 (5.10.138.33), 30 hops max, 60 byte packets
 1  37.221.192.3  0.31 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.35 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.69 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  4.11 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.80 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.88  4.04 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.123.13  11.72 ms  AS1299  France Ile-de-France Paris telia.com
 8  62.115.134.93  19.08 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.134.139  19.73 ms  AS1299  United Kingdom London telia.com
10  80.239.193.226  19.95 ms  AS1299  TELIA.COM BACKBONE telia.com
11  59.43.180.113  18.87 ms  AS4809  Europe Regions ChinaTelecom
12  5.10.138.33  18.65 ms  AS4809  Germany cteurope.net


Traceroute to German, Frankfurt GTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 213.200.65.70 (213.200.65.70), 30 hops max, 60 byte packets
 1  37.221.192.3  0.51 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.50 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.94 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.72 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.33 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.90  4.16 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.137.169  3.72 ms  AS1299  Germany Hesse Frankfurt telia.com
 8  62.115.172.123  3.94 ms  AS1299  Germany Hesse Frankfurt telia.com
 9  213.200.115.169  3.86 ms  AS3257  Germany Hesse Frankfurt gtt.net
10  213.200.65.70  4.11 ms  AS3257  GTT.NET BACKBONE gtt.net


Traceroute to German, FrankfurtCogentco (TCP Mode, Max 30 Hop)
============================================================
traceroute to 212.20.150.5 (212.20.150.5), 30 hops max, 60 byte packets
 1  37.221.192.3  0.42 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.59 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.93 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.84 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.63 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  130.117.14.197  4.13 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 7  130.117.1.118  3.98 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 8  130.117.48.94  4.02 ms  AS174  Germany Hesse Frankfurt cogentco.com
 9  212.20.150.5  3.83 ms  AS174  Germany Hesse Frankfurt cogentco.com


Traceroute to United Kingdom, Vodafone (TCP Mode, Max 30 Hop)
============================================================
traceroute to 194.62.232.211 (194.62.232.211), 30 hops max, 60 byte packets
 1  37.221.192.3  0.35 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.40 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  4.02 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.93 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.77 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.155.35  3.61 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  195.2.10.181  16.56 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
 8  *
 9  *
10  194.62.232.211  18.88 ms  AS25135  United Kingdom vodafone.com


Traceroute to United Kingdom， BT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 213.121.43.24 (213.121.43.24), 30 hops max, 60 byte packets
 1  37.221.192.3  0.23 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.51 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  7.18 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.82 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.14 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.88  19.12 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  *
 8  62.115.114.228  18.59 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.114.235  17.89 ms  AS1299  United Kingdom London telia.com
10  213.248.97.49  17.74 ms  AS1299  United Kingdom London telia.com
11  166.49.128.33  17.48 ms  AS5400  United Kingdom bt.com
12  109.159.252.85  19.02 ms  AS2856  United Kingdom bt.com
13  109.159.249.32  20.31 ms  AS2856  United Kingdom bt.com
14  194.72.7.69  20.02 ms  AS2856  United Kingdom London bt.com
15  *
16  *
17  *
18  *
19  213.121.43.24  25.44 ms  AS2856  United Kingdom bt.com


Traceroute to United Kingdom, London TATA (TCP Mode, Max 30 Hop)
============================================================
traceroute to 80.231.131.34 (80.231.131.34), 30 hops max, 60 byte packets
 1  37.221.192.3  7.98 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.39 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  21.98 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.87 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  4.12 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.90  3.99 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.121.5  17.18 ms  AS1299  Germany Hesse Frankfurt telia.com
 8  213.248.82.41  6.92 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  195.219.156.132  3.81 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
10  195.219.194.149  10.58 ms  AS6453  Netherlands North Holland Amsterdam tatacommunications.com
11  195.219.194.6  10.45 ms  AS6453  Netherlands North Holland Amsterdam tatacommunications.com
12  80.231.131.160  14.92 ms  AS6453  United Kingdom London tatacommunications.com
13  80.231.131.34  20.19 ms  AS6453  United Kingdom London tatacommunications.com


Traceroute to Russia, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.85.205.181 (118.85.205.181), 30 hops max, 60 byte packets
 1  37.221.192.3  0.34 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.39 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.80 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.84 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.85 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.90  4.16 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.141.239  3.72 ms  AS1299  Germany Hesse Frankfurt telia.com
 8  202.97.58.149  4.80 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 9  202.97.67.233  193.52 ms  *  Russian Federation ChinaTelecom
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Russia, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 185.75.173.17 (185.75.173.17), 30 hops max, 60 byte packets
 1  37.221.192.3  0.67 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.37 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.75 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  3.83 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.61 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.88  3.99 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.123.13  11.95 ms  AS1299  France Ile-de-France Paris telia.com
 8  62.115.114.228  18.17 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.134.139  19.64 ms  AS1299  United Kingdom London telia.com
10  80.239.193.226  19.45 ms  AS1299  TELIA.COM BACKBONE telia.com
11  59.43.180.113  17.94 ms  AS4809  Europe Regions ChinaTelecom
12  185.75.173.17  55.79 ms  AS4809  Russian Federation Moscow cteurope.net


Traceroute to Russia, Moscow RT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 87.226.162.77 (87.226.162.77), 30 hops max, 60 byte packets
 1  37.221.192.3  0.18 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.62 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.77 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  144.208.208.143  4.01 ms  AS47147  Germany Hesse Frankfurt anexia.com
 5  62.115.14.116  3.70 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.114.90  4.71 ms  AS1299  Germany Hesse Frankfurt telia.com
 7  62.115.141.235  3.71 ms  AS1299  Germany Hesse Frankfurt telia.com
 8  62.115.151.97  3.83 ms  AS1299  Germany Hesse Frankfurt telia.com
 9  213.59.211.241  57.72 ms  AS12389  Russian Federation Moscow rt.ru
10  87.226.140.2  43.97 ms  AS12389  Russian Federation Moscow rt.ru
11  *
12  87.226.162.77  47.11 ms  AS12389  Russian Federation Moscow rt.ru


Traceroute to Russia, Moscow TTK (TCP Mode, Max 30 Hop)
============================================================
traceroute to 217.150.32.2 (217.150.32.2), 30 hops max, 60 byte packets
 1  37.221.192.3  0.26 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.56 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.68 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.81.194.117  4.34 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 5  *
 6  62.33.207.217  48.16 ms  AS20485  Russian Federation Moscow ttk.ru
 7  80.237.46.177  48.21 ms  AS20485  Russian Federation Moscow ttk.ru
 8  217.150.32.243  48.74 ms  AS20485  Russian Federation Moscow ttk.ru
 9  10.105.0.1  50.35 ms  *  LAN Address
10  217.150.32.2  49.57 ms  AS20485  Russian Federation Moscow ttk.ru


Traceroute to Russia, Moscow MTS (TCP Mode, Max 30 Hop)
============================================================
traceroute to 195.34.32.71 (195.34.32.71), 30 hops max, 60 byte packets
 1  37.221.192.3  1.86 ms  AS197540  Germany Bavaria Nuremberg netcup.de
 2  144.208.211.30  0.55 ms  AS47147  Germany Bavaria Nuremberg anexia.com
 3  144.208.208.141  3.95 ms  AS47147  Germany Hesse Frankfurt anexia.com
 4  80.81.193.78  3.77 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 5  195.34.59.49  37.63 ms  AS8359  Russian Federation Moscow mts.ru
 6  195.34.53.5  36.48 ms  AS8359  Russian Federation Moscow mts.ru
 7  195.34.53.213  36.36 ms  AS8359  Russian Federation Moscow mts.ru
 8  195.34.32.71  37.47 ms  AS8359  Russian Federation Moscow mts.ru
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;IPv6路由测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2408:80f0:4100:2005::3 (2408:80f0:4100:2005::3), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  24.07 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.40 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.54 ms  http: 404  http: 404
 4  2a00:11c0:47:1:47::143  3.58 ms  http: 404  http: 404
 5  *
 6  2001:2000:3019:6b::1  100.95 ms  http: 404  http: 404
 7  2001:2000:3019:bf::1  101.33 ms  http: 404  http: 404
 8  *
 9  2001:2000:3018:99::1  100.19 ms  http: 404  http: 404
10  2001:2000:3080:bb3::2  93.76 ms  http: 404  http: 404
11  2600:80a::13  149.53 ms  http: 404  http: 404
12  *
13  2408:8000:2:70e::  324.60 ms  http: 404  http: 404
14  *
15  *
16  2408:8000:2:685::  319.91 ms  http: 404  http: 404
17  2408:8000:1100:304::3  318.79 ms  http: 404  http: 404
18  2408:8000:1100:240a::3  328.61 ms  http: 404  http: 404
19  2408:8000:1f10:3d04::3  328.14 ms  http: 404  http: 404
20  2408:80f0:4100:2006::1  320.32 ms  http: 404  http: 404
21  2408:80f0:4100:2006::b  325.54 ms  http: 404  http: 404
22  *
23  2408:80f0:4100:2005::3  326.88 ms  http: 404  http: 404

Traceroute to China, Beijing CT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2400:da00:2::29 (2400:da00:2::29), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.37 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  11.55 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.42 ms  http: 404  http: 404
 4  2a00:11c0:47:1:47::143  3.66 ms  http: 404  http: 404
 5  *
 6  2a04:f580:8210:100::  7.73 ms  http: 404  http: 404
 7  240e:0:a::cc:5ab8  239.43 ms  http: 404  http: 404
 8  240e:0:a::c9:4a21  235.78 ms  http: 404  http: 404
 9  *
10  *
11  *
12  240e:1a:0:f104::3  330.31 ms  http: 404  http: 404
13  240e:1a:130:f100::3  332.54 ms  http: 404  http: 404
14  240e:e9:5800::3  345.21 ms  http: 404  http: 404
15  2400:da00::b63d:fd5a  346.01 ms  http: 404  http: 404
16  2400:da00:41a::b63d:fe45  345.14 ms  http: 404  http: 404
17  *
18  *
19  *
20  2400:da00:2::29  345.88 ms  http: 404  http: 404

Traceroute to China, Beijing CM IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2409:8089:1020:50ff:1000::fd01 (2409:8089:1020:50ff:1000::fd01), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.32 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.34 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.53 ms  http: 404  http: 404
 4  2001:7f8::e455:0:1  246.31 ms  http: 404  http: 404
 5  2402:4f00:2000:100::135  38.21 ms  http: 404  http: 404
 6  2402:4f00:2000:100::20e  255.21 ms  http: 404  http: 404
 7  2409:8080:0:4:2f1:292::  265.72 ms  http: 404  http: 404
 8  2409:8080:0:1:2c1:2f1:3:0  312.42 ms  http: 404  http: 404
 9  2409:8080:0:1:407:2c1::  324.22 ms  http: 404  http: 404
10  2409:8080:0:1:103:203:1:0  340.44 ms  http: 404  http: 404
11  2409:8080:0:2:103:1b1:0:1  340.61 ms  http: 404  http: 404
12  2409:8089:1020:50ff:1000::fd01  343.10 ms  http: 404  http: 404

Traceroute to China, Shanghai CU IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2408:8000:9000:20e6::b7 (2408:8000:9000:20e6::b7), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.25 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.40 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.74 ms  http: 404  http: 404
 4  2a00:11c0:47:1:47::143  3.52 ms  http: 404  http: 404
 5  2001:2000:3018:112::1  3.82 ms  http: 404  http: 404
 6  2001:2000:3019:6c::1  96.06 ms  http: 404  http: 404
 7  2001:2000:3019:c0::1  90.48 ms  http: 404  http: 404
 8  2001:2000:3019:7b::1  98.85 ms  http: 404  http: 404
 9  *
10  2001:2000:3019:71::1  92.42 ms  http: 404  http: 404
11  2001:2000:3018:99::1  98.07 ms  http: 404  http: 404
12  2001:2000:3080:bb3::2  91.51 ms  http: 404  http: 404
13  2600:80a::13  147.78 ms  http: 404  http: 404
14  *
15  2408:8000:2:236::  333.20 ms  http: 404  http: 404
16  2408:8000:2:679::  333.50 ms  http: 404  http: 404
17  *
18  2408:8000:2:686::  416.89 ms  http: 404  http: 404
19  *
20  *
21  *
22  2408:8000:9000:20e6::b7  416.16 ms  http: 404  http: 404

Traceroute to China, Shanghai CT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 240e:18:10:a01::1 (240e:18:10:a01::1), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.47 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.42 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.68 ms  http: 404  http: 404
 4  2a00:11c0:47:1:47::143  3.47 ms  http: 404  http: 404
 5  *
 6  2a04:f580:8210:100::  4.72 ms  http: 404  http: 404
 7  240e:0:a::cc:5970  205.15 ms  http: 404  http: 404
 8  240e:0:a::c9:5b18  187.27 ms  http: 404  http: 404
 9  *
10  *
11  240e:18:10:a01::1  205.51 ms  http: 404  http: 404

Traceroute to China, Shanghai CM IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2409:801e:5c03:2000::207 (2409:801e:5c03:2000::207), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.78 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  19.04 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.52 ms  http: 404  http: 404
 4  2001:7f8::e455:0:1  248.78 ms  http: 404  http: 404
 5  2402:4f00:2000:100::115  13.62 ms  http: 404  http: 404
 6  2402:4f00:2000:100::20e  228.73 ms  http: 404  http: 404
 7  2409:8080:0:4:2f1:292::  240.53 ms  http: 404  http: 404
 8  2409:8080:0:1:2c1:2f1:4:0  295.73 ms  http: 404  http: 404
 9  2409:8080:0:1:201:2c1::  288.46 ms  http: 404  http: 404
10  2409:8080:0:2:201:271:1:1  285.46 ms  http: 404  http: 404
11  2409:801e:f0:1::ff  277.76 ms  http: 404  http: 404
12  2409:801e:5c01:2000::31  290.00 ms  http: 404  http: 404
13  *
14  2409:801e:5c03:2000::207  286.19 ms  http: 404  http: 404

Traceroute to China, Guangzhou CU IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2408:8001:3011:310::3 (2408:8001:3011:310::3), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.28 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.36 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.50 ms  http: 404  http: 404
 4  2a00:11c0:47:1:47::143  3.73 ms  http: 404  http: 404
 5  *
 6  2001:2000:3019:6b::1  100.89 ms  http: 404  http: 404
 7  2001:2000:3019:bf::1  101.31 ms  http: 404  http: 404
 8  *
 9  2001:2000:3018:99::1  100.22 ms  http: 404  http: 404
10  2001:2000:3080:bb3::2  93.50 ms  http: 404  http: 404
11  2600:80a::13  148.04 ms  http: 404  http: 404
12  *
13  2408:8000:2:70b::  330.95 ms  http: 404  http: 404
14  *
15  2408:8000:2:5aa::  320.48 ms  http: 404  http: 404
16  2408:8000:2:685::  311.39 ms  http: 404  http: 404
17  2408:8000:2:382::1  323.44 ms  http: 404  http: 404
18  2408:8000:2:5bc::  360.94 ms  http: 404  http: 404
19  2408:8001:3011:53::1  347.59 ms  http: 404  http: 404
20  2408:8001:3011:310::3  351.17 ms  http: 404  http: 404

Traceroute to China, Guangzhou CT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 240e:ff:e02c:1:21:: (240e:ff:e02c:1:21::), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.35 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.53 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.60 ms  http: 404  http: 404
 4  2a00:11c0:47:1:47::143  3.48 ms  http: 404  http: 404
 5  *
 6  2a04:f580:8210:100::  5.98 ms  http: 404  http: 404
 7  240e:0:a::cc:5670  206.50 ms  http: 404  http: 404
 8  240e:0:a::c9:5b18  186.38 ms  http: 404  http: 404
 9  *
10  240e::21:31:3803  236.94 ms  http: 404  http: 404
11  *
12  *
13  240e:ff:e02c::1  248.63 ms  http: 404  http: 404
14  240e:ff:e02c:1:21::  230.51 ms  http: 404  http: 404

Traceroute to China, Guangzhou CM IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2409:8057:5c00:30::6 (2409:8057:5c00:30::6), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.50 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.42 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.64 ms  http: 404  http: 404
 4  2001:7f8::e455:0:1  246.88 ms  http: 404  http: 404
 5  2402:4f00:2000:100::135  13.50 ms  http: 404  http: 404
 6  2402:4f00:2000:100::212  230.49 ms  http: 404  http: 404
 7  2409:8080:0:4:2f1:292::  239.95 ms  http: 404  http: 404
 8  *
 9  2409:8080:0:1:202:2c1::  288.50 ms  http: 404  http: 404
10  2409:8080:0:1:301:403::  330.16 ms  http: 404  http: 404
11  *
12  2409:8055:0:303::  316.16 ms  http: 404  http: 404
13  2409:8055:0:1312::  321.62 ms  http: 404  http: 404
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  2409:8057:5c00:30::6  334.78 ms  http: 404  http: 404

Traceroute to China, Beijing Dr.Peng IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2403:8880:400f::2 (2403:8880:400f::2), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.27 ms  http: 404  http: 404
 2  2a01:4f8:0:e060::5  0.42 ms  http: 404  http: 404
 3  *
 4  *
 5  *
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *

Traceroute to China, Beijing CERNET2 IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:da8:a0:1001::1 (2001:da8:a0:1001::1), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.33 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.44 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.55 ms  http: 404  http: 404
 4  2a00:11c0:47:1:47::143  3.70 ms  http: 404  http: 404
 5  *
 6  2001:2000:3019:6b::1  4.32 ms  http: 404  http: 404
 7  2001:2000:3018:13::1  4.00 ms  http: 404  http: 404
 8  2001:470:0:168::1  3.77 ms  http: 404  http: 404
 9  2001:470:0:404::2  5.09 ms  http: 404  http: 404
10  *
11  2001:470:0:227::1  21.06 ms  http: 404  http: 404
12  2001:470:0:3ea::1  21.58 ms  http: 404  http: 404
13  2001:470:0:2cf::2  88.16 ms  http: 404  http: 404
14  2001:470:0:299::1  92.29 ms  http: 404  http: 404
15  2001:470:0:324::2  146.40 ms  http: 404  http: 404
16  2001:470:0:72::2  150.21 ms  http: 404  http: 404
17  *
18  2001:252:0:302::1  309.93 ms  http: 404  http: 404
19  2001:252:0:106::2  310.61 ms  http: 404  http: 404
20  2001:252:0:108::1  310.71 ms  http: 404  http: 404
21  *
22  2001:252:0:1::1  322.07 ms  http: 404  http: 404
23  2001:da8:a0:1001::1  310.03 ms  http: 404  http: 404

Traceroute to China, Beijing CSTNET IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2400:dd00:0:37::213 (2400:dd00:0:37::213), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.27 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.55 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.48 ms  http: 404  http: 404
 4  2a00:11c0:47:1:47::143  3.56 ms  http: 404  http: 404
 5  *
 6  *
 7  *
 8  *
 9  *
10  2001:550:0:1000::9a36:176  247.43 ms  http: 404  http: 404
11  2402:4480:2:3::1f:2  190.75 ms  http: 404  http: 404
12  2400:dd00:0:41::195  235.37 ms  http: 404  http: 404
13  2400:dd00:0:33::200  227.65 ms  http: 404  http: 404
14  2400:dd00:0:37::213  224.88 ms  http: 404  http: 404

Traceroute to China, Hongkong HKIX IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:7fa:0:1::ca28:a1a9 (2001:7fa:0:1::ca28:a1a9), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.54 ms  http: 404  http: 404
 2  2a01:4f8:0:e060::5  30.01 ms  http: 404  http: 404
 3  *
 4  *
 5  *
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *

Traceroute to China, Hongkong HE IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:470:0:490::2 (2001:470:0:490::2), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.28 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.35 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.49 ms  http: 404  http: 404
 4  2001:7f8::1b1b:0:1  3.59 ms  http: 404  http: 404
 5  2001:470:0:3fd::1  9.42 ms  http: 404  http: 404
 6  2001:470:0:3fc::2  9.43 ms  http: 404  http: 404
 7  2001:470:0:4ac::2  12.82 ms  http: 404  http: 404
 8  2001:470:0:1c2::1  30.56 ms  http: 404  http: 404
 9  2001:470:0:3f5::1  156.17 ms  http: 404  http: 404
10  2001:470:0:2ea::1  237.29 ms  http: 404  http: 404
11  2001:470:0:490::2  232.59 ms  http: 404  http: 404

Traceroute to United States, San Jose HE IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:470:1:ff::1 (2001:470:1:ff::1), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  47.54 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.42 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.55 ms  http: 404  http: 404
 4  2001:7f8::1b1b:0:1  3.79 ms  http: 404  http: 404
 5  2001:470:0:404::2  4.13 ms  http: 404  http: 404
 6  2001:470:0:489::2  18.96 ms  http: 404  http: 404
 7  2001:470:0:227::1  21.05 ms  http: 404  http: 404
 8  2001:470:0:3ea::1  26.88 ms  http: 404  http: 404
 9  2001:470:0:2cf::2  88.13 ms  http: 404  http: 404
10  2001:470:0:296::2  149.70 ms  http: 404  http: 404
11  2001:470:1:ff::1  148.91 ms  http: 404  http: 404

Traceroute to United States, Chicago NTT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:418:0:5000::1026 (2001:418:0:5000::1026), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.26 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.40 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.49 ms  http: 404  http: 404
 4  2a00:11c0:47:1:47::148  3.93 ms  http: 404  http: 404
 5  2001:728:0:5000::1475  4.56 ms  http: 404  http: 404
 6  *
 7  *
 8  2001:418:0:2000::75  102.26 ms  http: 404  http: 404
 9  2001:418:0:2000::291  104.45 ms  http: 404  http: 404
10  2001:418:0:2000::235  102.82 ms  http: 404  http: 404
11  2001:418:0:5000::1026  114.17 ms  http: 404  http: 404

Traceroute to United States, Los Angeles Telia IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:2000:3080:1e96::2 (2001:2000:3080:1e96::2), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.43 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.40 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.49 ms  http: 404  http: 404
 4  2a00:11c0:47:1:47::143  3.68 ms  http: 404  http: 404
 5  *
 6  2001:2000:3019:6b::1  149.79 ms  http: 404  http: 404
 7  2001:2000:3019:bf::1  149.47 ms  http: 404  http: 404
 8  *
 9  2001:2000:3018:8e::1  149.85 ms  http: 404  http: 404
10  2001:2000:3080:1e96::2  149.92 ms  http: 404  http: 404

Traceroute to United States, Los Angeles GTT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:668:0:3:ffff:0:d8dd:9d5a (2001:668:0:3:ffff:0:d8dd:9d5a), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  47.99 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.51 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.72 ms  http: 404  http: 404
 4  2a00:11c0:47:1:47::143  3.52 ms  http: 404  http: 404
 5  *
 6  2001:2000:3019:6b::1  4.21 ms  http: 404  http: 404
 7  2001:2000:3018:90::1  3.74 ms  http: 404  http: 404
 8  2001:2000:3080:1ac1::2  10.67 ms  http: 404  http: 404
 9  2001:668:0:2:ffff:0:5995:b6a2  157.84 ms  http: 404  http: 404
10  2001:668:0:3:ffff:0:d8dd:9d5a  155.69 ms  http: 404  http: 404

Traceroute to United States, Kansas City Sprint IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2600:0:1:1239:144:228:241:71 (2600:0:1:1239:144:228:241:71), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.38 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.38 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.50 ms  http: 404  http: 404
 4  2a00:11c0:47:1:47::143  4.08 ms  http: 404  http: 404
 5  *
 6  *
 7  *
 8  *
 9  2001:2000:3018:99::1  100.07 ms  http: 404  http: 404
10  2600:0:3:1239:144:232:0:ba  99.67 ms  http: 404  http: 404
11  2600:0:2:1239:144:232:15:118  97.45 ms  http: 404  http: 404
12  2600:0:2:1239:144:232:15:175  97.36 ms  http: 404  http: 404
13  2600:0:2:1239:144:232:15:19  114.20 ms  http: 404  http: 404
14  2600:0:1:1239:144:228:241:71  135.06 ms  http: 404  http: 404

Traceroute to United States, Los Angeles Verizon IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2600:80a:2::15 (2600:80a:2::15), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.48 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.55 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.44 ms  http: 404  http: 404
 4  2a00:11c0:47:1:47::143  3.53 ms  http: 404  http: 404
 5  2001:2000:3018:112::1  4.10 ms  http: 404  http: 404
 6  2001:2000:3019:6c::1  96.42 ms  http: 404  http: 404
 7  2001:2000:3019:c0::1  89.70 ms  http: 404  http: 404
 8  2001:2000:3019:71::1  89.54 ms  http: 404  http: 404
 9  2001:2000:3018:99::1  95.32 ms  http: 404  http: 404
10  2001:2000:3080:bb3::2  88.76 ms  http: 404  http: 404
11  2600:80a:2::15  143.42 ms  http: 404  http: 404

Traceroute to United Status, Ashburn Cogentco IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:550:0:1000::9a36:4215 (2001:550:0:1000::9a36:4215), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.26 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.40 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.59 ms  http: 404  http: 404
 4  2a00:11c0:47:1:47::143  6.42 ms  http: 404  http: 404
 5  2001:2000:3018:112::1  3.77 ms  http: 404  http: 404
 6  *
 7  *
 8  *
 9  *
10  *
11  2001:550:0:1000::9a36:4215  92.91 ms  http: 404  http: 404

Traceroute to United States, San Jose Level3 IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:1900:2100::2eb5 (2001:1900:2100::2eb5), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.48 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  2.86 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.45 ms  http: 404  http: 404
 4  2a00:11c0:47:1:47::143  3.54 ms  http: 404  http: 404
 5  *
 6  2001:2000:3019:6b::1  4.06 ms  http: 404  http: 404
 7  2001:2000:3018:90::1  3.84 ms  http: 404  http: 404
 8  2001:2000:3080:f2c::2  27.83 ms  http: 404  http: 404
 9  2001:1900:2100::2eb5  158.50 ms  http: 404  http: 404

Traceroute to United States, Seattle Zayo IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:438:ffff::407d:d6a (2001:438:ffff::407d:d6a), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.45 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.56 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.57 ms  http: 404  http: 404
 4  2001:7f8::193d:0:1  20.62 ms  http: 404  http: 404
 5  2001:438:ffff::407d:1ae9  4.20 ms  http: 404  http: 404
 6  2001:438:ffff::407d:1fd8  143.38 ms  http: 404  http: 404
 7  2001:438:ffff::407d:1d3b  143.39 ms  http: 404  http: 404
 8  2001:438:ffff::407d:1d50  143.12 ms  http: 404  http: 404
 9  2001:438:ffff::407d:1d11  143.46 ms  http: 404  http: 404
10  2001:438:ffff::407d:1d76  143.65 ms  http: 404  http: 404
11  2001:438:ffff::407d:1d7e  143.22 ms  http: 404  http: 404
12  *
13  2001:438:ffff::407d:1d1a  143.10 ms  http: 404  http: 404
14  2001:438:ffff::407d:1d01  143.71 ms  http: 404  http: 404
15  2001:438:ffff::407d:d6a  141.71 ms  http: 404  http: 404

Traceroute to France, Paris HE IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:470:0:349::1 (2001:470:0:349::1), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.24 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.47 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.60 ms  http: 404  http: 404
 4  2001:7f8::1b1b:0:1  3.67 ms  http: 404  http: 404
 5  *
 6  2001:470:0:349::1  44.00 ms  http: 404  http: 404

Traceroute to German, Frankfurt NTT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:728:0:5000::6f6 (2001:728:0:5000::6f6), 30 hops max, 60 byte packets
 1  2a03:4000:0:2::3  0.49 ms  http: 404  http: 404
 2  2a00:11c0:47:3::20  0.53 ms  http: 404  http: 404
 3  2a00:11c0:47:1:47::141  3.91 ms  http: 404  http: 404
 4  2a00:11c0:47:1:47::148  3.86 ms  http: 404  http: 404
 5  2001:728:0:5000::1475  4.54 ms  http: 404  http: 404
 6  *
 7  2001:728:0:2000::32  4.84 ms  http: 404  http: 404
 8  2001:728:0:5000::6f6  6.29 ms  http: 404  http: 404
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;其他&lt;/h2&gt;
&lt;p&gt;Windows Server 2019下的娱乐大师跑分见下图&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/netcup.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;德国机还是一如既往的高性价比，有项目的可以入手了。&lt;/p&gt;
</content:encoded></item><item><title>HostSolutions评测：1TB KVM款</title><link>https://yushum.com/posts/hostsolutions%E8%AF%84%E6%B5%8B1tb-kvm%E6%AC%BE/</link><guid isPermaLink="true">https://yushum.com/posts/hostsolutions%E8%AF%84%E6%B5%8B1tb-kvm%E6%AC%BE/</guid><pubDate>Thu, 06 Feb 2020 20:12:36 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;hostsolutions，这是个大家都比较熟悉的罗马尼亚商家了，自己的机器、自己的场地创办的机房，有个比较大的优势就是无视版权投诉这块儿。目前，hostsolutions有一款超大硬盘VPS在促销。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/hostsolutions.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;配置信息&lt;/h2&gt;
&lt;h3&gt;系统信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;OS Release:		Debian GNU/Linux &quot;Buster&quot; 10.2 (x86_64)
 CPU Model:		Common KVM processor
 CPU Cache Size:	16384 KB
 CPU Number:		1 vCPU
 Virt Type:		KVM
 Memory Usage:		73.46 MB / 987.18 MB
 Swap Usage:		0 KB / 1022.00 MB
 Disk Usage:		1.02 GB / 1.05 TB
 Boot Device:		/dev/sda1
 Load (1/5/15min):	0.33 0.22 0.10
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;网络信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;IPV4 - IP Address:	[RO] 193.148.68.*
 IPV4 - ASN Info:	AS44220 (Parfumuri Femei.com SRL)
 IPV4 - Region:		null
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;流媒体解锁&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;HBO Now:				No
 Bahamut Anime:				No
 Abema.TV:				No
 Princess Connect Re:Dive (Beta):	Yes
 Bilibili China Mainland Only:		No
 Bilibili Hongkong/Macau/Taiwan:	No
 Bilibili Taiwan Only:			No
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;CPU性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread Test:			377 Scores
 2 Threads Test:		385 Scores
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;内存性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread - Read Test :		7611.43 MB/s
 1 Thread - Write Test:		5941.45 MB/s
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;硬盘速度测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Test Name		Write Speed				Read Speed
 10MB-4K Block		8.9 MB/s (2169 IOPS, 1.18 s)		13.8 MB/s (3374 IOPS, 0.76 s)
 10MB-1M Block		422 MB/s (402 IOPS, 0.02 s)		380 MB/s (362 IOPS, 0.03 s)
 100MB-4K Block		8.7 MB/s (2135 IOPS, 11.99 s)		13.3 MB/s (3248 IOPS, 7.88 s)
 100MB-1M Block		667 MB/s (636 IOPS, 0.16 s)		689 MB/s (657 IOPS, 0.15 s)
 1GB-4K Block		9.2 MB/s (2253 IOPS, 113.58 s)		13.3 MB/s (3254 IOPS, 78.66 s)
 1GB-1M Block		579 MB/s (552 IOPS, 1.81 s)		603 MB/s (575 IOPS, 1.74 s)
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;网速测试&lt;/h2&gt;
&lt;h3&gt;Speedtest.net网速测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Node Name			Upload Speed	Download Speed	Ping Latency
 Speedtest Default		96.55 MB/s	110.72 MB/s	2.63 ms
 China, Jilin CU		11.50 MB/s	35.37 MB/s	335.38 ms
 China, Shandong CU		7.46 MB/s	103.13 MB/s	233.78 ms
 China, Nanjing CU		2.53 MB/s	8.96 MB/s	334.00 ms
 China, Shanghai CU		10.90 MB/s	33.17 MB/s	358.60 ms
 China, Lanzhou CU		4.55 MB/s	36.51 MB/s	361.31 ms
 China, Beijing CT		0.58 MB/s	46.65 MB/s	221.24 ms
 China, Hangzhou CT		0.79 MB/s	11.48 MB/s	244.39 ms
 China, Nanjing CT		1.01 MB/s	53.74 MB/s	292.46 ms
 China, Guangzhou CT		0.09 MB/s	15.28 MB/s	253.86 ms
 China, Wuhan CT		0.10 MB/s	3.40 MB/s	278.27 ms
 China, Shenyang CM		Fail: Unknown Error
 China, Hangzhou CM		Fail: Unknown Error
 China, Nanning CM		1.22 MB/s	64.67 MB/s	342.05 ms
 China, Lanzhou CM		4.85 MB/s	6.96 MB/s	0.10 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;IPv4路由测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 60 byte packets
 1  10.22.1.2  2.15 ms  *  LAN Address
 2  89.137.188.197  0.56 ms  AS6830  Romania upc.ro
 3  84.116.186.113  4.17 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  205.27 ms  AS6830  Romania libertyglobal.com
 5  84.116.135.62  193.63 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  84.116.138.158  428.21 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  84.116.130.122  128.66 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  84.116.133.61  193.42 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 9  84.116.146.33  202.57 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
10  219.158.41.61  287.97 ms  AS4837  United States California San Jose ChinaUnicom
11  219.158.96.37  1181.13 ms  AS4837  China Beijing ChinaUnicom
12  219.158.5.245  288.17 ms  AS4837  China Beijing ChinaUnicom
13  124.65.194.186  310.89 ms  AS4808  China Beijing ChinaUnicom
14  *
15  124.65.194.42  331.91 ms  AS4808  China Beijing ChinaUnicom
16  61.148.158.106  340.85 ms  AS4808  China Beijing ChinaUnicom
17  *
18  *
19  123.125.99.1  341.73 ms  AS4808  China Beijing ChinaUnicom


Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 60 byte packets
 1  10.22.1.2  0.65 ms  *  LAN Address
 2  89.137.188.197  0.64 ms  AS6830  Romania upc.ro
 3  84.116.225.73  3.06 ms  AS6830  Romania libertyglobal.com
 4  84.116.131.53  25.68 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 5  84.116.187.97  27.72 ms  AS6830  Romania libertyglobal.com
 6  118.85.205.101  27.52 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 7  84.116.137.17  27.59 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  118.85.205.101  30.05 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 9  *
10  180.149.128.1  282.99 ms  AS23724  China Beijing ChinaTelecom


Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 60 byte packets
 1  10.22.1.2  0.59 ms  *  LAN Address
 2  89.137.188.197  3.15 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.84 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.82 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.90 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.57 ms  AS6830  Romania libertyglobal.com
 7  62.115.168.8  30.18 ms  AS1299  Europe Regions telia.com
 8  62.115.118.48  60.10 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.137.202  56.78 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.123.13  57.73 ms  AS1299  France Ile-de-France Paris telia.com
11  *
12  62.115.117.193  62.97 ms  AS1299  TELIA.COM BACKBONE telia.com
13  62.115.171.223  49.60 ms  AS1299  Europe Regions telia.com
14  223.120.10.41  49.84 ms  AS58453  United Kingdom London ChinaMobile
15  *
16  *
17  *
18  *
19  221.176.16.213  222.84 ms  AS9808  China Beijing ChinaMobile
20  *
21  211.136.67.166  225.26 ms  AS56048  China Beijing ChinaMobile
22  211.136.95.226  226.95 ms  AS56048  China Beijing ChinaMobile
23  *
24  *
25  211.136.25.153  226.69 ms  AS56048  China Beijing ChinaMobile


Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.0.49 (58.247.0.49), 30 hops max, 60 byte packets
 1  10.22.1.2  0.72 ms  *  LAN Address
 2  89.137.188.197  19.95 ms  AS6830  Romania upc.ro
 3  84.116.225.73  3.11 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  198.62 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  198.22 ms  AS6830  Romania libertyglobal.com
 6  84.116.130.9  33.64 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  *
 8  84.116.146.29  193.55 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 9  219.158.41.61  277.02 ms  AS4837  United States California San Jose ChinaUnicom
10  219.158.100.21  285.64 ms  AS4837  China Beijing ChinaUnicom
11  219.158.3.145  284.88 ms  AS4837  China Beijing ChinaUnicom
12  *
13  219.158.8.242  338.83 ms  AS4837  China Shanghai ChinaUnicom
14  *
15  139.226.210.57  335.26 ms  AS17621  China Shanghai ChinaUnicom
16  112.64.249.125  310.83 ms  AS17621  China Shanghai ChinaUnicom
17  58.247.0.49  315.82 ms  AS17621  China Shanghai ChinaUnicom


Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.1 (180.153.28.1), 30 hops max, 60 byte packets
 1  10.22.1.2  0.58 ms  *  LAN Address
 2  89.137.188.197  22.17 ms  AS6830  Romania upc.ro
 3  84.116.186.113  2.82 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.82  27.74 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.97  28.01 ms  AS6830  Romania libertyglobal.com
 6  118.85.205.101  27.77 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 7  202.97.95.205  261.08 ms  AS4134  China ChinaTelecom
 8  *
 9  202.97.24.237  247.05 ms  AS4134  China Shanghai ChinaTelecom
10  202.101.63.129  258.56 ms  AS4812  China Shanghai ChinaTelecom
11  101.95.207.234  325.00 ms  AS4812  China Shanghai ChinaTelecom
12  202.101.63.129  264.39 ms  AS4812  China Shanghai ChinaTelecom
13  101.95.207.234  250.93 ms  AS4812  China Shanghai ChinaTelecom
14  180.153.28.1  243.12 ms  AS4812  China Shanghai ChinaTelecom


Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 60 byte packets
 1  10.22.1.2  0.54 ms  *  LAN Address
 2  89.137.188.197  0.48 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.75 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  123.34 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  34.73 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.47 ms  AS6830  Romania libertyglobal.com
 7  *
 8  *
 9  62.115.137.202  40.93 ms  AS1299  TELIA.COM BACKBONE telia.com
10  *
11  62.115.37.159  35.94 ms  AS1299  TELIA.COM BACKBONE telia.com
12  223.120.10.153  37.89 ms  AS58453  Germany Hesse Frankfurt ChinaMobile
13  *
14  *
15  *
16  *
17  221.176.15.206  307.40 ms  AS9808  China Shanghai ChinaMobile
18  221.176.22.10  299.51 ms  AS9808  China Shanghai ChinaMobile
19  *
20  221.183.55.22  312.50 ms  AS9808  China Shanghai ChinaMobile


Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 60 byte packets
 1  10.22.1.2  0.72 ms  *  LAN Address
 2  89.137.188.197  18.69 ms  AS6830  Romania upc.ro
 3  84.116.186.113  2.61 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  198.09 ms  AS6830  Romania libertyglobal.com
 5  84.116.135.62  197.81 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  84.116.130.150  36.79 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  84.116.130.122  128.76 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  84.116.140.170  141.49 ms  AS6830  Europe Regions libertyglobal.com
 9  84.116.146.33  203.14 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
10  219.158.98.53  250.11 ms  AS4837  China Beijing ChinaUnicom
11  219.158.98.53  255.55 ms  AS4837  China Beijing ChinaUnicom
12  219.158.3.137  276.50 ms  AS4837  China Beijing ChinaUnicom
13  *
14  219.158.108.242  372.29 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
15  112.91.0.246  356.71 ms  AS17816  China Guangdong Guangzhou ChinaUnicom
16  210.21.4.130  362.11 ms  AS17622  China Guangdong Guangzhou ChinaUnicom


Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 60 byte packets
 1  10.22.1.2  0.64 ms  *  LAN Address
 2  89.137.188.197  19.89 ms  AS6830  Romania upc.ro
 3  84.116.225.73  3.29 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.82  27.87 ms  AS6830  Romania libertyglobal.com
 5  84.116.137.17  25.18 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  118.85.205.101  29.01 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 7  84.116.137.17  52.21 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  202.97.12.30  244.84 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
 9  202.97.52.93  242.65 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
10  202.97.12.30  247.18 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
11  202.97.94.149  257.89 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
12  *
13  113.108.209.1  252.95 ms  AS58466  China Guangdong Guangzhou ChinaTelecom


Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.139.129.5 (211.139.129.5), 30 hops max, 60 byte packets
 1  10.22.1.2  0.66 ms  *  LAN Address
 2  89.137.188.197  0.77 ms  AS6830  Romania upc.ro
 3  84.116.225.73  49.39 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.83 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.91 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  13.04 ms  AS6830  Romania libertyglobal.com
 7  84.116.217.117  12.80 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.166  13.36 ms  AS6830  Romania ziggo.nl
 9  *
10  129.250.7.8  273.10 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.7.67  278.14 ms  AS2914  China Hong Kong ntt.com
12  129.250.6.98  281.52 ms  AS2914  China Hong Kong ntt.com
13  *
14  *
15  *
16  221.183.55.98  298.11 ms  AS9808  China Guangdong Guangzhou ChinaMobile
17  221.176.24.57  285.87 ms  AS9808  China Guangdong Guangzhou ChinaMobile
18  221.176.22.237  292.41 ms  AS9808  China Guangdong Guangzhou ChinaMobile
19  221.183.13.118  323.56 ms  AS9808  China Guangdong Shenzhen ChinaMobile
20  *
21  *
22  *
23  211.139.129.5  306.04 ms  AS56040  China Guangdong Guangzhou ChinaMobile


Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 60 byte packets
 1  10.22.1.2  0.65 ms  *  LAN Address
 2  89.137.188.197  0.74 ms  AS6830  Romania upc.ro
 3  84.116.225.73  3.10 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  40.23 ms  AS6830  Romania libertyglobal.com
 5  84.116.135.62  25.64 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  84.116.133.113  29.01 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  62.157.248.133  25.91 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
 8  217.239.43.234  56.01 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
 9  217.239.43.234  55.91 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
10  80.156.162.218  179.35 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
11  210.78.28.173  178.22 ms  *  China Beijing ChinaUnicom
12  210.78.28.173  191.56 ms  *  China Beijing ChinaUnicom
13  218.105.2.210  284.97 ms  AS9929  China Shanghai ChinaUnicom
14  210.13.75.138  279.61 ms  AS9929  China Shanghai ChinaUnicom
15  210.13.66.238  278.56 ms  AS9929  China Shanghai ChinaUnicom


Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 60 byte packets
 1  10.22.1.2  0.60 ms  *  LAN Address
 2  89.137.188.197  20.79 ms  AS6830  Romania upc.ro
 3  84.116.225.73  13.22 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  13.00 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.82 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  13.11 ms  AS6830  Romania libertyglobal.com
 7  84.116.216.253  12.71 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.166  13.35 ms  AS6830  Romania ziggo.nl
 9  *
10  129.250.7.8  273.13 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.7.67  279.05 ms  AS2914  China Hong Kong ntt.com
12  129.250.6.92  282.80 ms  AS2914  China Hong Kong ntt.com
13  129.250.5.161  288.15 ms  AS2914  China Hong Kong ntt.com
14  203.131.241.70  237.33 ms  AS2914  China Hong Kong ntt.com
15  59.43.249.26  268.66 ms  *  China Shanghai ChinaTelecom
16  59.43.187.81  250.82 ms  *  China Shanghai ChinaTelecom
17  59.43.138.49  260.29 ms  *  China Shanghai ChinaTelecom
18  101.95.88.46  271.45 ms  AS4812  China Shanghai ChinaTelecom
19  *
20  58.32.0.1  263.43 ms  AS4812  China Shanghai ChinaTelecom


Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 14.131.125.1 (14.131.125.1), 30 hops max, 60 byte packets
 1  10.22.1.2  0.48 ms  *  LAN Address
 2  89.137.188.197  0.65 ms  AS6830  Romania upc.ro
 3  84.116.186.113  2.88 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  198.22 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  198.35 ms  AS6830  Romania libertyglobal.com
 6  84.116.138.158  202.70 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  84.116.130.66  129.64 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  84.116.146.29  193.52 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 9  219.158.41.57  278.12 ms  AS4837  United States California San Jose ChinaUnicom
10  219.158.41.61  284.98 ms  AS4837  United States California San Jose ChinaUnicom
11  219.158.98.9  258.46 ms  AS4837  China Beijing ChinaUnicom
12  219.158.3.29  283.21 ms  AS4837  China Beijing ChinaUnicom
13  123.126.0.26  298.41 ms  AS4808  China Beijing ChinaUnicom
14  202.106.193.14  318.83 ms  AS4808  China Beijing ChinaUnicom
15  202.96.13.194  280.65 ms  AS4808  China Beijing ChinaUnicom
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 60 byte packets
 1  10.22.1.2  0.61 ms  *  LAN Address
 2  89.137.188.197  29.63 ms  AS6830  Romania upc.ro
 3  84.116.225.73  3.08 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  198.14 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  198.54 ms  AS6830  Romania libertyglobal.com
 6  84.116.138.158  202.96 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  *
 8  84.116.133.61  193.54 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 9  219.158.41.61  277.84 ms  AS4837  United States California San Jose ChinaUnicom
10  219.158.41.57  281.72 ms  AS4837  United States California San Jose ChinaUnicom
11  219.158.96.41  261.54 ms  AS4837  China Beijing ChinaUnicom
12  219.158.5.161  293.86 ms  AS4837  China Beijing ChinaUnicom
13  *
14  124.65.61.130  310.82 ms  AS4808  China Beijing ChinaUnicom
15  61.148.156.190  276.82 ms  AS4808  China Beijing ChinaUnicom
16  202.106.37.90  316.33 ms  AS4808  China Beijing ChinaUnicom
17  202.99.1.238  299.87 ms  AS17964  China Beijing DRPENG
18  218.241.255.86  324.30 ms  AS4808,AS4847  China Beijing DRPENG
19  124.205.97.166  313.37 ms  AS4808,AS4847  China Beijing DRPENG
20  211.167.230.100  269.67 ms  AS4808,AS17964  China Beijing DRPENG


Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 60 byte packets
 1  10.22.1.2  0.62 ms  *  LAN Address
 2  89.137.188.197  0.63 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.80 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  13.05 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.87 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.94 ms  AS6830  Romania libertyglobal.com
 7  84.116.217.117  12.89 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.150  15.69 ms  AS6830  Romania ziggo.nl
 9  80.231.153.54  204.37 ms  AS6453  France Ile-de-France Paris tatacommunications.com
10  80.231.153.50  204.45 ms  AS6453  France Ile-de-France Paris tatacommunications.com
11  80.231.154.143  212.91 ms  AS6453  France Ile-de-France Paris tatacommunications.com
12  80.231.130.26  212.19 ms  AS6453  United Kingdom London tatacommunications.com
13  216.6.57.6  212.76 ms  AS6453  United States New Jersey Newark tatacommunications.com
14  216.6.57.6  215.24 ms  AS6453  United States New Jersey Newark tatacommunications.com
15  216.6.87.42  207.45 ms  AS6453  United States Virginia Ashburn tatacommunications.com
16  66.110.59.1  203.55 ms  AS6453  United States California Los Angeles tatacommunications.com
17  66.110.59.182  205.19 ms  AS6453  United States California Los Angeles tatacommunications.com
18  101.4.117.213  364.39 ms  AS4538  China Beijing CHINAEDU
19  101.4.117.213  365.65 ms  AS4538  China Beijing CHINAEDU
20  101.4.117.101  367.56 ms  AS4538  China Beijing CHINAEDU
21  101.4.114.197  370.22 ms  AS4538  China Beijing CHINAEDU
22  *
23  202.112.38.82  364.67 ms  AS4538  China Beijing CHINAEDU
24  202.205.109.205  367.11 ms  AS4538  China Beijing CHINAEDU


Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 60 byte packets
 1  10.22.1.2  0.63 ms  *  LAN Address
 2  89.137.188.197  14.90 ms  AS6830  Romania upc.ro
 3  84.116.225.73  2.92 ms  AS6830  Romania libertyglobal.com
 4  84.116.131.53  25.43 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 5  84.116.187.85  40.41 ms  AS6830  Romania libertyglobal.com
 6  84.116.132.178  25.15 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  84.116.130.82  40.07 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  *
 9  *
10  159.226.254.5  351.59 ms  AS7497  China Beijing CSTNET
11  154.54.61.82  46.12 ms  AS174  Italy Lombardy Metropolitan City of Milan cogentco.com
12  159.226.254.49  372.25 ms  AS7497  China Beijing CSTNET
13  154.54.1.118  291.86 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
14  *
15  159.226.254.1  370.01 ms  AS7497  China Beijing CSTNET


Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 60 byte packets
 1  10.22.1.2  0.64 ms  *  LAN Address
 2  89.137.188.197  18.51 ms  AS6830  Romania upc.ro
 3  84.116.186.113  2.82 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  198.34 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  198.42 ms  AS6830  Romania libertyglobal.com
 6  84.116.138.158  202.99 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  84.116.130.122  128.79 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  84.116.140.170  142.81 ms  AS6830  Europe Regions libertyglobal.com
 9  84.116.146.33  202.56 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
10  219.158.117.1  274.82 ms  AS4837  China Beijing ChinaUnicom
11  219.158.117.1  280.28 ms  AS4837  China Beijing ChinaUnicom
12  219.158.3.177  314.69 ms  AS4837  China Beijing ChinaUnicom
13  124.65.194.2  304.47 ms  AS4808  China Beijing ChinaUnicom
14  124.65.194.166  314.49 ms  AS4808  China Beijing ChinaUnicom
15  *
16  *
17  61.148.116.118  428.93 ms  AS4808  China Beijing ChinaUnicom
18  211.156.140.17  412.82 ms  AS7641  China Beijing chinabtn.com CATV


Traceroute to China, Hongkong CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.160.95.218 (203.160.95.218), 30 hops max, 60 byte packets
 1  10.22.1.2  0.58 ms  *  LAN Address
 2  89.137.188.197  18.06 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.83 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.96 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.78 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  13.04 ms  AS6830  Romania libertyglobal.com
 7  84.116.216.253  15.13 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.150  17.20 ms  AS6830  Romania ziggo.nl
 9  80.231.153.54  233.13 ms  AS6453  France Ile-de-France Paris tatacommunications.com
10  80.231.153.50  234.75 ms  AS6453  France Ile-de-France Paris tatacommunications.com
11  80.231.217.5  229.13 ms  AS6453  France Provence-Alpes-Cote d&apos;Azur Marseille tatacommunications.com
12  180.87.38.125  245.60 ms  AS6453  India tatacommunications.com
13  180.87.12.2  229.24 ms  AS6453  Singapore tatacommunications.com
14  180.87.12.226  239.52 ms  AS6453  Singapore tatacommunications.com
15  180.87.12.226  240.07 ms  AS6453  Singapore tatacommunications.com
16  116.0.82.62  230.29 ms  AS6453  China Hong Kong tatacommunications.com
17  116.0.93.168  244.83 ms  AS6453  China Hong Kong tatacommunications.com
18  116.0.82.62  237.29 ms  AS6453  China Hong Kong tatacommunications.com
19  180.87.163.6  304.84 ms  AS6453  China Hong Kong tatacommunications.com
20  202.77.22.89  284.89 ms  AS10099  China Hong Kong ChinaUnicom
21  202.77.22.89  298.31 ms  AS10099  China Hong Kong ChinaUnicom
22  202.77.22.89  289.81 ms  AS10099  China Hong Kong ChinaUnicom
23  203.160.95.218  295.31 ms  AS10099  China Hong Kong ChinaUnicom


Traceroute to China, Hongkong CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.232.173 (203.215.232.173), 30 hops max, 60 byte packets
 1  10.22.1.2  0.65 ms  *  LAN Address
 2  89.137.188.197  24.60 ms  AS6830  Romania upc.ro
 3  84.116.225.73  3.04 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.82  27.82 ms  AS6830  Romania libertyglobal.com
 5  84.116.137.17  25.18 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  84.116.131.53  27.95 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  84.116.137.17  33.55 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  *
 9  203.215.232.173  319.34 ms  AS4134  China Hong Kong ChinaTelecom


Traceroute to China, Hongkong CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.8.25.187 (203.8.25.187), 30 hops max, 60 byte packets
 1  10.22.1.2  0.70 ms  *  LAN Address
 2  89.137.188.197  19.55 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.77 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.83 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.53 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.57 ms  AS6830  Romania libertyglobal.com
 7  62.115.168.8  30.15 ms  AS1299  Europe Regions telia.com
 8  *
 9  62.115.138.22  40.74 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.123.13  49.28 ms  AS1299  France Ile-de-France Paris telia.com
11  *
12  62.115.134.139  63.74 ms  AS1299  United Kingdom London telia.com
13  80.239.193.226  64.86 ms  AS1299  TELIA.COM BACKBONE telia.com
14  59.43.183.73  209.53 ms  *  China Beijing ChinaTelecom
15  59.43.246.226  270.31 ms  *  China Hong Kong ChinaTelecom
16  59.43.187.22  226.97 ms  *  China Hong Kong ChinaTelecom
17  203.8.25.187  244.31 ms  AS4809  China Hong Kong ChinaTelecom


Traceroute to China, Hongkong CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.142.105.9 (203.142.105.9), 30 hops max, 60 byte packets
 1  10.22.1.2  0.71 ms  *  LAN Address
 2  89.137.188.197  16.09 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.71 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.90 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.50 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.46 ms  AS6830  Romania libertyglobal.com
 7  62.115.168.8  30.19 ms  AS1299  Europe Regions telia.com
 8  *
 9  62.115.137.202  56.76 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.123.13  55.82 ms  AS1299  France Ile-de-France Paris telia.com
11  *
12  62.115.143.27  56.22 ms  AS1299  United Kingdom London telia.com
13  62.115.12.242  52.06 ms  AS1299  TELIA.COM BACKBONE telia.com
14  223.118.18.162  305.08 ms  AS58453  China Hong Kong ChinaMobile
15  223.119.0.2  302.21 ms  AS58453  China Hong Kong ChinaMobile
16  203.142.100.165  300.41 ms  AS9231  China Hong Kong ChinaMobile
17  203.142.100.22  303.05 ms  AS9231  China Hong Kong ChinaMobile
18  203.142.105.9  306.11 ms  AS9231  China Hong Kong ChinaMobile


Traceroute to China, Hongkong HGC (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.188.104.30 (218.188.104.30), 30 hops max, 60 byte packets
 1  10.22.1.2  0.67 ms  *  LAN Address
 2  89.137.188.197  23.16 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.79 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.90 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  13.04 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  13.07 ms  AS6830  Romania libertyglobal.com
 7  84.116.217.117  14.40 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.150  15.54 ms  AS6830  Romania ziggo.nl
 9  80.231.153.54  233.22 ms  AS6453  France Ile-de-France Paris tatacommunications.com
10  80.231.153.20  227.52 ms  AS6453  France Ile-de-France Paris tatacommunications.com
11  80.231.154.99  245.87 ms  AS6453  France Ile-de-France Paris tatacommunications.com
12  80.231.217.5  232.85 ms  AS6453  France Provence-Alpes-Cote d&apos;Azur Marseille tatacommunications.com
13  *
14  180.87.38.2  238.64 ms  AS6453  India tatacommunications.com
15  180.87.15.81  236.79 ms  AS6453  China Hong Kong tatacommunications.com
16  120.29.216.42  237.17 ms  AS6453  China Hong Kong tatacommunications.com
17  116.0.93.168  245.18 ms  AS6453  China Hong Kong tatacommunications.com
18  218.188.104.30  237.50 ms  AS9304  China Hong Kong hgc.com.hk


Traceroute to China, Hongkong HKBN (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.6.23.239 (210.6.23.239), 30 hops max, 60 byte packets
 1  10.22.1.2  0.56 ms  *  LAN Address
 2  89.137.188.197  1.23 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.85 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.94 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.91 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.95 ms  AS6830  Romania libertyglobal.com
 7  84.116.217.117  12.97 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.150  16.58 ms  AS6830  Romania ziggo.nl
 9  80.231.245.4  234.72 ms  AS6453  France Ile-de-France Paris tatacommunications.com
10  80.231.153.20  237.26 ms  AS6453  France Ile-de-France Paris tatacommunications.com
11  80.231.153.50  252.03 ms  AS6453  France Ile-de-France Paris tatacommunications.com
12  80.231.154.99  241.19 ms  AS6453  France Ile-de-France Paris tatacommunications.com
13  180.87.38.2  239.14 ms  AS6453  India tatacommunications.com
14  *
15  180.87.12.226  239.60 ms  AS6453  Singapore tatacommunications.com
16  180.87.12.2  243.07 ms  AS6453  Singapore tatacommunications.com
17  210.6.23.239  292.78 ms  AS9269  China Hong Kong hkbn.net


Traceroute to China, Hongkong PCCW (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.85.125.60 (202.85.125.60), 30 hops max, 60 byte packets
 1  10.22.1.2  0.55 ms  *  LAN Address
 2  89.137.188.197  18.63 ms  AS6830  Romania upc.ro
 3  84.116.225.73  3.11 ms  AS6830  Romania libertyglobal.com
 4  84.116.131.53  26.45 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 5  84.116.187.85  34.94 ms  AS6830  Romania libertyglobal.com
 6  84.116.132.178  25.20 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  84.116.134.222  34.38 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  84.116.133.118  34.25 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 9  63.223.15.70  321.95 ms  AS3491  China Hong Kong pccw.com
10  63.223.17.38  361.52 ms  AS3491  China Hong Kong pccw.com
11  63.218.61.174  345.54 ms  AS3491  China Hong Kong pccw.com
12  63.218.61.174  336.45 ms  AS3491  China Hong Kong pccw.com
13  202.153.103.69  328.65 ms  AS9925  China Hong Kong pbase.net
14  203.215.244.33  342.02 ms  AS9925  China Hong Kong pbase.net
15  202.85.125.60  334.48 ms  AS9925  China Hong Kong pccw.com


Traceroute to China, Hongkong TGT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.123.76.239 (202.123.76.239), 30 hops max, 60 byte packets
 1  10.22.1.2  0.47 ms  *  LAN Address
 2  89.137.188.197  20.38 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.75 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  13.21 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.89 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.94 ms  AS6830  Romania libertyglobal.com
 7  84.116.216.253  12.88 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.166  13.79 ms  AS6830  Romania ziggo.nl
 9  *
10  129.250.7.8  276.35 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.7.67  276.49 ms  AS2914  China Hong Kong ntt.com
12  129.250.6.98  283.47 ms  AS2914  China Hong Kong ntt.com
13  129.250.5.30  284.94 ms  AS2914  NTT.COM BACKBONE ntt.com
14  203.131.254.14  285.48 ms  AS2914  China Hong Kong ntt.com
15  203.78.72.102  281.13 ms  AS10098  China Hong Kong towngastelecom.com
16  203.78.73.99  277.89 ms  AS10098  China Hong Kong towngastelecom.com
17  *
18  202.123.76.239  276.20 ms  AS10098  China Hong Kong towngastelecom.com


Traceroute to China, Hongkong WTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 59.152.252.242 (59.152.252.242), 30 hops max, 60 byte packets
 1  10.22.1.2  0.61 ms  *  LAN Address
 2  89.137.188.197  23.12 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.92 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.96 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.90 ms  AS6830  Romania libertyglobal.com
 6  84.116.187.90  12.77 ms  AS6830  Romania libertyglobal.com
 7  84.116.216.253  12.90 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.150  17.51 ms  AS6830  Romania ziggo.nl
 9  80.231.153.54  232.99 ms  AS6453  France Ile-de-France Paris tatacommunications.com
10  80.231.153.50  231.61 ms  AS6453  France Ile-de-France Paris tatacommunications.com
11  80.231.217.5  236.07 ms  AS6453  France Provence-Alpes-Cote d&apos;Azur Marseille tatacommunications.com
12  180.231.217.122  235.79 ms  AS17858  India uplus.co.kr
13  180.87.38.2  235.38 ms  AS6453  India tatacommunications.com
14  180.87.12.226  234.76 ms  AS6453  Singapore tatacommunications.com
15  116.0.93.168  232.48 ms  AS6453  China Hong Kong tatacommunications.com
16  180.87.12.2  236.91 ms  AS6453  Singapore tatacommunications.com
17  *
18  116.0.93.245  237.46 ms  AS6453  China Hong Kong tatacommunications.com
19  *
20  59.152.252.196  312.54 ms  AS9381  China Hong Kong hkbn.net
21  59.152.252.196  307.34 ms  AS9381  China Hong Kong hkbn.net
22  59.152.252.242  299.12 ms  AS9381  China Hong Kong hkbn.net


Traceroute to Singapore, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.233.1 (203.215.233.1), 30 hops max, 60 byte packets
 1  10.22.1.2  0.62 ms  *  LAN Address
 2  89.137.188.197  14.97 ms  AS6830  Romania upc.ro
 3  84.116.186.113  2.74 ms  AS6830  Romania libertyglobal.com
 4  84.116.131.53  25.43 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 5  84.116.187.97  27.82 ms  AS6830  Romania libertyglobal.com
 6  84.116.131.53  27.83 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  202.97.17.81  232.11 ms  AS4134  Singapore ChinaTelecom
 8  203.215.233.1  232.71 ms  AS4134  Singapore ChinaTelecom


Traceroute to Singapore, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 183.91.61.1 (183.91.61.1), 30 hops max, 60 byte packets
 1  10.22.1.2  0.63 ms  *  LAN Address
 2  89.137.188.197  0.68 ms  AS6830  Romania upc.ro
 3  84.116.225.73  18.70 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  14.56 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.69 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.81 ms  AS6830  Romania libertyglobal.com
 7  62.115.168.8  30.92 ms  AS1299  Europe Regions telia.com
 8  62.115.118.48  29.94 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.137.202  40.77 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.122.138  49.82 ms  AS1299  TELIA.COM BACKBONE telia.com
11  62.115.134.93  55.69 ms  AS1299  TELIA.COM BACKBONE telia.com
12  62.115.134.135  59.15 ms  AS1299  United Kingdom London telia.com
13  80.239.193.226  64.48 ms  AS1299  TELIA.COM BACKBONE telia.com
14  59.43.247.182  65.76 ms  *  United Kingdom London ChinaTelecom
15  59.43.250.101  228.96 ms  *  China ChinaTelecom
16  183.91.61.1  228.60 ms  AS4809  Singapore ChinaTelecom


Traceroute to Singapore, Singtel (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.201.1.11 (118.201.1.11), 30 hops max, 60 byte packets
 1  10.22.1.2  0.74 ms  *  LAN Address
 2  89.137.188.197  16.77 ms  AS6830  Romania upc.ro
 3  84.116.225.73  13.45 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  15.22 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.59 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.65 ms  AS6830  Romania libertyglobal.com
 7  62.115.168.8  30.15 ms  AS1299  Europe Regions telia.com
 8  *
 9  62.115.137.202  188.88 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.123.13  185.17 ms  AS1299  France Ile-de-France Paris telia.com
11  62.115.122.159  127.19 ms  AS1299  United States Virginia Ashburn telia.com
12  62.115.121.220  189.24 ms  AS1299  United States California Los Angeles telia.com
13  62.115.8.203  190.78 ms  AS1299  TELIA.COM BACKBONE telia.com
14  203.208.171.117  190.99 ms  AS7473  United States California Los Angeles singtel.com
15  203.208.172.145  371.82 ms  AS7473  Singapore singtel.com
16  203.208.192.106  366.91 ms  AS7473  Singapore singtel.com
17  203.208.158.185  364.95 ms  AS7473  Singapore singtel.com
18  203.208.191.2  383.42 ms  AS7473  Singapore singtel.com
19  203.208.190.22  378.05 ms  AS7473  Singapore singtel.com
20  118.201.1.11  377.94 ms  AS3758  Singapore singtel.com


Traceroute to Singapore, StarHub (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.116.46.33 (203.116.46.33), 30 hops max, 60 byte packets
 1  10.22.1.2  0.60 ms  *  LAN Address
 2  89.137.188.197  15.08 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.83 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.78 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.62 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.48 ms  AS6830  Romania libertyglobal.com
 7  62.115.168.8  30.05 ms  AS1299  Europe Regions telia.com
 8  *
 9  62.115.137.202  197.58 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.133.179  56.65 ms  AS1299  TELIA.COM BACKBONE telia.com
11  62.115.122.245  222.95 ms  AS1299  TELIA.COM BACKBONE telia.com
12  62.115.112.247  61.75 ms  AS1299  TELIA.COM BACKBONE telia.com
13  203.117.164.205  245.63 ms  AS4657  Singapore starhub.com
14  *
15  172.24.20.97  231.94 ms  *  LAN Address
16  203.116.46.33  219.71 ms  AS4657  Singapore starhub.com


Traceroute to Singapore, M1 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.123.8.123 (203.123.8.123), 30 hops max, 60 byte packets
 1  10.22.1.2  0.46 ms  *  LAN Address
 2  89.137.188.197  15.14 ms  AS6830  Romania upc.ro
 3  84.116.225.73  15.97 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.87 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.75 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.82 ms  AS6830  Romania libertyglobal.com
 7  84.116.217.117  12.83 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.150  16.93 ms  AS6830  Romania ziggo.nl
 9  80.231.153.54  199.63 ms  AS6453  France Ile-de-France Paris tatacommunications.com
10  80.231.153.20  198.76 ms  AS6453  France Ile-de-France Paris tatacommunications.com
11  80.231.153.50  193.04 ms  AS6453  France Ile-de-France Paris tatacommunications.com
12  80.231.154.209  213.10 ms  AS6453  France Ile-de-France Paris tatacommunications.com
13  180.87.38.125  209.69 ms  AS6453  India tatacommunications.com
14  180.87.12.210  199.18 ms  AS6453  Singapore tatacommunications.com
15  203.211.158.76  204.08 ms  AS17547  Singapore m1.com.sg
16  180.87.12.210  206.11 ms  AS6453  Singapore tatacommunications.com
17  203.123.8.123  198.59 ms  AS17547  Singapore m1.com.sg


Traceroute to Singapore, AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.228.0.251 (13.228.0.251), 50 hops max, 60 byte packets
 1  10.22.1.2  0.70 ms  *  LAN Address
 2  89.137.188.197  11.26 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.88 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  13.18 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.92 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  13.02 ms  AS6830  Romania libertyglobal.com
 7  84.116.216.253  12.60 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.166  13.46 ms  AS6830  Romania ziggo.nl
 9  *
10  129.250.7.8  273.25 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.3.82  273.47 ms  AS2914  Singapore ntt.com
12  129.250.2.74  277.12 ms  AS2914  Singapore ntt.com
13  116.51.17.130  273.71 ms  AS2914  Singapore ntt.com
14  *
15  *
16  52.93.10.29  272.89 ms  *  Singapore amazon.com
17  52.93.11.51  279.74 ms  *  Singapore amazon.com
18  52.93.11.50  273.40 ms  *  Singapore amazon.com
19  52.93.8.27  278.14 ms  *  Singapore amazon.com
20  203.83.223.194  279.79 ms  AS16509,AS38895  Singapore amazon.com
21  *
22  *
23  *
24  *
25  *
26  13.228.0.251  279.43 ms  AS16509  Singapore amazon.com


Traceroute to Japan, NTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 61.213.155.84 (61.213.155.84), 30 hops max, 60 byte packets
 1  10.22.1.2  0.43 ms  *  LAN Address
 2  89.137.188.197  12.35 ms  AS6830  Romania upc.ro
 3  84.116.225.73  38.38 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.89 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  22.52 ms  AS6830  Romania libertyglobal.com
 6  84.116.187.90  12.47 ms  AS6830  Romania libertyglobal.com
 7  84.116.217.117  12.84 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.166  13.32 ms  AS6830  Romania ziggo.nl
 9  129.250.3.194  32.45 ms  AS2914  NTT.COM BACKBONE ntt.com
10  *
11  *
12  129.250.3.189  190.20 ms  AS2914  NTT.COM BACKBONE ntt.com
13  129.250.4.143  291.45 ms  AS2914  Japan Tokyo ntt.com
14  129.250.3.22  280.97 ms  AS2914  Japan Tokyo ntt.com
15  61.213.179.34  287.94 ms  AS2914  Japan Tokyo ntt.com
16  *
17  *
18  61.213.155.84  302.88 ms  AS2914  Japan Tokyo ntt.com


Traceroute to Japan, IIJ (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.232.15.70 (202.232.15.70), 30 hops max, 60 byte packets
 1  10.22.1.2  0.51 ms  *  LAN Address
 2  89.137.188.197  25.67 ms  AS6830  Romania upc.ro
 3  84.116.186.113  2.93 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  71.82 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.93  69.79 ms  AS6830  Romania libertyglobal.com
 6  84.116.187.74  77.91 ms  AS6830  Romania libertyglobal.com
 7  84.116.187.89  69.97 ms  AS6830  Romania libertyglobal.com
 8  84.116.138.158  69.89 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 9  *
10  84.116.135.30  70.19 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
11  195.66.225.237  69.83 ms  AS52320  United Kingdom London linx.net
12  210.130.142.114  260.69 ms  AS2497  Japan Tokyo iij.ad.jp
13  202.232.15.70  263.11 ms  AS2497  Japan iij.ad.jp


Traceroute to Japan, SoftBank (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.175.32.26 (210.175.32.26), 30 hops max, 60 byte packets
 1  10.22.1.2  0.54 ms  *  LAN Address
 2  89.137.188.197  12.06 ms  AS6830  Romania upc.ro
 3  84.116.225.73  39.07 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  13.17 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  13.09 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.63 ms  AS6830  Romania libertyglobal.com
 7  62.115.168.8  29.94 ms  AS1299  Europe Regions telia.com
 8  *
 9  62.115.137.202  196.92 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.123.13  199.73 ms  AS1299  France Ile-de-France Paris telia.com
11  62.115.114.228  194.42 ms  AS1299  TELIA.COM BACKBONE telia.com
12  *
13  213.155.130.129  193.36 ms  AS1299  TELIA.COM BACKBONE telia.com
14  213.248.88.78  297.92 ms  AS1299  United States California San Jose telia.com
15  *
16  143.90.232.241  301.83 ms  AS4725  Japan Tokyo odn.ne.jp
17  143.90.47.33  293.47 ms  AS4725  Japan odn.ne.jp
18  143.90.26.230  304.54 ms  AS4725  Japan odn.ne.jp
19  143.90.54.30  295.15 ms  AS4725  Japan odn.ne.jp
20  210.175.32.123  310.86 ms  AS4725  Japan odn.ne.jp
21  210.175.32.26  318.61 ms  AS4725  Japan odn.ne.jp


Traceroute to Japan, KDDI (TCP Mode, Max 30 Hop)
============================================================
traceroute to 106.162.242.108 (106.162.242.108), 30 hops max, 60 byte packets
 1  10.22.1.2  1.89 ms  *  LAN Address
 2  89.137.188.197  19.52 ms  AS6830  Romania upc.ro
 3  84.116.186.113  2.75 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  198.15 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  198.32 ms  AS6830  Romania libertyglobal.com
 6  84.116.138.158  202.68 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  *
 8  84.116.146.29  194.04 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 9  84.116.146.33  202.98 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
10  124.215.192.37  203.73 ms  AS2516  KDDI.COM BACKBONE kddi.com
11  111.87.3.109  197.94 ms  AS2516  United States California Palo Alto kddi.com
12  106.187.13.9  302.21 ms  AS2516  Japan Tokyo kddi.com
13  118.152.213.62  305.44 ms  AS2516  Japan kddi.com
14  59.128.99.97  302.37 ms  AS2516  Japan kddi.com
15  111.87.220.242  308.11 ms  AS2516  Japan kddi.com
16  106.162.242.108  305.44 ms  AS2516  Japan kddi.com


Traceroute to Japan, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.236.3 (203.215.236.3), 30 hops max, 60 byte packets
 1  10.22.1.2  0.62 ms  *  LAN Address
 2  89.137.188.197  20.91 ms  AS6830  Romania upc.ro
 3  84.116.186.113  2.53 ms  AS6830  Romania libertyglobal.com
 4  84.116.131.53  25.64 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 5  84.116.137.17  25.04 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  118.85.205.101  27.16 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 7  84.116.137.17  27.46 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  202.97.24.5  289.45 ms  AS4134  Japan Tokyo ChinaTelecom
 9  203.215.236.3  289.25 ms  AS4134  Japan Tokyo ChinaTelecom


Traceroute to Japan, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.55.27.4 (202.55.27.4), 30 hops max, 60 byte packets
 1  10.22.1.2  0.75 ms  *  LAN Address
 2  89.137.188.197  24.85 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.92 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.89 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.70 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.55 ms  AS6830  Romania libertyglobal.com
 7  *
 8  62.115.118.48  29.88 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.137.202  40.98 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.114.98  60.51 ms  AS1299  TELIA.COM BACKBONE telia.com
11  62.115.114.228  57.09 ms  AS1299  TELIA.COM BACKBONE telia.com
12  62.115.134.135  56.36 ms  AS1299  United Kingdom London telia.com
13  80.239.193.226  64.98 ms  AS1299  TELIA.COM BACKBONE telia.com
14  59.43.246.205  281.87 ms  *  China Shanghai ChinaTelecom
15  59.43.186.186  297.85 ms  *  Japan Tokyo ChinaTelecom
16  202.55.27.4  297.19 ms  AS4809  Japan Tokyo ChinaTelecom


Traceroute to Japan, Amazon AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.112.63.251 (13.112.63.251), 50 hops max, 60 byte packets
 1  10.22.1.2  0.64 ms  *  LAN Address
 2  89.137.188.197  2.96 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.67 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.77 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.82 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  15.60 ms  AS6830  Romania libertyglobal.com
 7  84.116.216.253  12.63 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.150  16.04 ms  AS6830  Romania ziggo.nl
 9  80.231.153.54  298.49 ms  AS6453  France Ile-de-France Paris tatacommunications.com
10  80.231.153.20  303.21 ms  AS6453  France Ile-de-France Paris tatacommunications.com
11  80.231.154.143  306.41 ms  AS6453  France Ile-de-France Paris tatacommunications.com
12  80.231.130.26  312.29 ms  AS6453  United Kingdom London tatacommunications.com
13  216.6.57.6  311.59 ms  AS6453  United States New Jersey Newark tatacommunications.com
14  216.6.57.6  314.95 ms  AS6453  United States New Jersey Newark tatacommunications.com
15  216.6.87.42  316.76 ms  AS6453  United States Virginia Ashburn tatacommunications.com
16  216.6.87.111  303.48 ms  AS6453  United States California Los Angeles tatacommunications.com
17  64.86.252.61  822.82 ms  AS6453  Japan Chiba tatacommunications.com
18  180.87.181.26  308.93 ms  AS6453  Japan Tokyo tatacommunications.com
19  *
20  *
21  *
22  54.239.52.99  310.53 ms  AS16509  Japan Tokyo amazon.com
23  52.95.30.36  305.95 ms  AS16509  Japan Tokyo amazon.com
24  *
25  *
26  52.95.31.41  309.58 ms  AS16509  Japan Tokyo amazon.com
27  52.95.31.37  306.13 ms  AS16509  Japan Tokyo amazon.com
28  52.95.31.170  309.16 ms  AS16509  Japan Tokyo amazon.com
29  52.95.31.184  309.46 ms  AS16509  Japan Tokyo amazon.com
30  54.239.52.185  311.08 ms  AS16509  Japan Tokyo amazon.com
31  *
32  *
33  *
34  *
35  *
36  *
37  13.112.63.251  302.16 ms  AS16509  Japan Tokyo amazon.com


Traceroute to South Korea, KT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.114.41.101 (210.114.41.101), 30 hops max, 60 byte packets
 1  10.22.1.2  0.51 ms  *  LAN Address
 2  89.137.188.197  37.66 ms  AS6830  Romania upc.ro
 3  84.116.186.113  2.58 ms  AS6830  Romania libertyglobal.com
 4  84.116.131.53  200.93 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 5  84.116.187.85  198.30 ms  AS6830  Romania libertyglobal.com
 6  84.116.130.150  36.70 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  *
 8  84.116.140.170  144.19 ms  AS6830  Europe Regions libertyglobal.com
 9  84.116.146.33  203.31 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
10  213.46.191.46  274.36 ms  AS6830  Netherlands North Holland Amsterdam ziggo.nl
11  112.174.83.201  283.40 ms  AS4766  Republic of Korea Seoul kt.com
12  112.174.83.105  304.91 ms  AS4766  Republic of Korea Seoul kt.com
13  112.174.60.82  313.59 ms  AS4766  Republic of Korea Seoul kt.com
14  112.188.245.210  283.73 ms  AS4766  Republic of Korea Seoul kt.com
15  220.90.203.6  284.05 ms  AS4766  Republic of Korea Seoul kt.com
16  211.37.137.22  322.16 ms  AS4766  Republic of Korea Seoul kt.com
17  211.37.137.22  322.74 ms  AS4766  Republic of Korea Seoul kt.com
18  210.114.41.101  294.40 ms  AS4766  Republic of Korea Seoul kt.com


Traceroute to South Korea, SK (TCP Mode, Max 30 Hop)
============================================================
traceroute to 175.122.253.62 (175.122.253.62), 30 hops max, 60 byte packets
 1  10.22.1.2  0.42 ms  *  LAN Address
 2  89.137.188.197  20.58 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.79 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.94 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  13.00 ms  AS6830  Romania libertyglobal.com
 6  84.116.187.90  12.94 ms  AS6830  Romania libertyglobal.com
 7  84.116.217.117  12.63 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.166  13.25 ms  AS6830  Romania ziggo.nl
 9  *
10  *
11  *
12  129.250.6.177  195.35 ms  AS2914  NTT.COM BACKBONE ntt.com
13  129.250.6.49  196.13 ms  AS2914  United States California Los Angeles ntt.com
14  129.250.5.98  205.97 ms  AS2914  United States Washington Seattle ntt.com
15  128.241.1.106  199.36 ms  AS2914  NTT.COM BACKBONE ntt.com
16  58.229.92.177  433.17 ms  AS9318  Republic of Korea skbroadband.com
17  58.229.14.61  317.93 ms  AS9318  Republic of Korea skbroadband.com
18  *
19  *
20  175.122.253.62  359.24 ms  AS9318  Republic of Korea skbroadband.com


Traceroute to South Korea, LG (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.174.62.44 (211.174.62.44), 30 hops max, 60 byte packets
 1  10.22.1.2  0.59 ms  *  LAN Address
 2  89.137.188.197  13.10 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.75 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.70 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.87 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.88 ms  AS6830  Romania libertyglobal.com
 7  84.116.217.117  12.75 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.166  13.34 ms  AS6830  Romania ziggo.nl
 9  *
10  *
11  129.250.4.96  129.89 ms  AS2914  United States Virginia Ashburn ntt.com
12  129.250.3.189  196.81 ms  AS2914  NTT.COM BACKBONE ntt.com
13  129.250.6.49  192.96 ms  AS2914  United States California Los Angeles ntt.com
14  129.250.2.214  190.68 ms  AS2914  United States California Los Angeles ntt.com
15  168.143.229.202  197.41 ms  AS2914  United States ntt.com
16  211.118.180.161  188.02 ms  AS3786  United States California Los Angeles uplus.co.kr
17  1.208.175.17  333.39 ms  AS3786  Republic of Korea Seoul uplus.co.kr
18  *
19  *
20  1.208.167.206  319.09 ms  AS3786  Republic of Korea Seoul uplus.co.kr
21  117.52.240.46  333.47 ms  AS3786  Republic of Korea Seoul uplus.co.kr
22  61.111.0.230  314.76 ms  AS3786  Republic of Korea Seoul uplus.co.kr
23  211.174.62.44  334.46 ms  AS3786  Republic of Korea Seoul uplus.co.kr


Traceroute to South Korea, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.185.246.3 (218.185.246.3), 30 hops max, 60 byte packets
 1  10.22.1.2  0.66 ms  *  LAN Address
 2  89.137.188.197  19.92 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.90 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.78 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  14.42 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.46 ms  AS6830  Romania libertyglobal.com
 7  62.115.168.8  30.13 ms  AS1299  Europe Regions telia.com
 8  *
 9  62.115.138.22  40.74 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.123.13  48.66 ms  AS1299  France Ile-de-France Paris telia.com
11  62.115.114.228  56.85 ms  AS1299  TELIA.COM BACKBONE telia.com
12  62.115.134.139  56.89 ms  AS1299  United Kingdom London telia.com
13  80.239.193.226  64.31 ms  AS1299  TELIA.COM BACKBONE telia.com
14  59.43.246.221  237.38 ms  *  China Shanghai ChinaTelecom
15  59.43.184.25  258.24 ms  *  Republic of Korea Seoul ChinaTelecom
16  218.185.246.3  257.87 ms  AS4809  Republic of Korea Seoul ChinaTelecom


Traceroute to South Korea, Amazon AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.124.63.251 (13.124.63.251), 50 hops max, 60 byte packets
 1  10.22.1.2  0.59 ms  *  LAN Address
 2  89.137.188.197  11.95 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.67 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.75 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.79 ms  AS6830  Romania libertyglobal.com
 6  84.116.187.90  12.74 ms  AS6830  Romania libertyglobal.com
 7  84.116.216.253  12.79 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.150  17.07 ms  AS6830  Romania ziggo.nl
 9  80.231.153.54  300.65 ms  AS6453  France Ile-de-France Paris tatacommunications.com
10  80.231.153.20  303.14 ms  AS6453  France Ile-de-France Paris tatacommunications.com
11  80.231.153.50  309.12 ms  AS6453  France Ile-de-France Paris tatacommunications.com
12  80.231.154.143  309.63 ms  AS6453  France Ile-de-France Paris tatacommunications.com
13  216.6.57.6  311.32 ms  AS6453  United States New Jersey Newark tatacommunications.com
14  216.6.57.6  314.80 ms  AS6453  United States New Jersey Newark tatacommunications.com
15  216.6.87.42  315.04 ms  AS6453  United States Virginia Ashburn tatacommunications.com
16  64.86.252.59  320.87 ms  AS6453  Japan Chiba tatacommunications.com
17  180.87.181.72  316.76 ms  AS6453  Japan Tokyo tatacommunications.com
18  180.87.181.72  320.16 ms  AS6453  Japan Tokyo tatacommunications.com
19  180.87.181.26  304.33 ms  AS6453  Japan Tokyo tatacommunications.com
20  *
21  54.239.52.83  303.59 ms  AS16509  Japan Tokyo amazon.com
22  150.222.90.57  302.56 ms  *  Japan Tokyo amazon.com
23  *
24  *
25  54.239.45.186  330.22 ms  *  Republic of Korea Seoul amazon.com
26  *
27  54.239.45.186  329.98 ms  *  Republic of Korea Seoul amazon.com
28  54.239.123.119  333.17 ms  AS16509  Republic of Korea Seoul amazon.com
29  52.93.248.211  333.33 ms  *  Republic of Korea Seoul amazon.com
30  54.239.123.53  326.59 ms  AS16509  Republic of Korea Seoul amazon.com
31  54.239.123.31  333.48 ms  AS16509  Republic of Korea Seoul amazon.com
32  54.239.122.22  335.31 ms  AS16509  Republic of Korea Seoul amazon.com
33  13.124.63.251  333.10 ms  AS16509  Republic of Korea Seoul amazon.com


Traceroute to China, Taiwan Chief (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.133.242.116 (202.133.242.116), 30 hops max, 60 byte packets
 1  10.22.1.2  0.46 ms  *  LAN Address
 2  89.137.188.197  21.23 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.80 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.80 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  13.05 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.57 ms  AS6830  Romania libertyglobal.com
 7  62.115.168.8  30.25 ms  AS1299  Europe Regions telia.com
 8  *
 9  62.115.137.202  188.91 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.122.138  187.89 ms  AS1299  TELIA.COM BACKBONE telia.com
11  62.115.122.159  127.18 ms  AS1299  United States Virginia Ashburn telia.com
12  62.115.114.86  181.05 ms  AS1299  United States California Los Angeles telia.com
13  62.115.162.87  198.60 ms  AS1299  TELIA.COM BACKBONE telia.com
14  202.39.91.50  316.53 ms  AS9680  China Taiwan Taipei City cht.com.tw
15  220.128.6.82  326.12 ms  AS3462  China Taiwan Taipei City cht.com.tw
16  220.128.7.70  326.61 ms  AS3462  China Taiwan Taipei City cht.com.tw
17  220.128.2.237  320.35 ms  AS3462  China Taiwan Taipei City cht.com.tw
18  203.75.228.157  316.82 ms  AS3462  China Taiwan Taipei City cht.com.tw
19  103.123.253.9  317.40 ms  *  China Taiwan Taipei City chief.com.tw
20  113.21.95.72  317.14 ms  AS17408  China Taiwan Taipei City chief.com.tw
21  103.123.254.38  328.44 ms  *  China Taiwan Taipei City chief.com.tw
22  202.133.242.114  321.52 ms  AS17408  China Taiwan Taipei City chief.com.tw
23  202.133.242.116  317.84 ms  AS17408  China Taiwan Taipei City chief.com.tw


Traceroute to China, Taiwan APTG (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.200.69.90 (210.200.69.90), 30 hops max, 60 byte packets
 1  10.22.1.2  0.44 ms  *  LAN Address
 2  89.137.188.197  23.36 ms  AS6830  Romania upc.ro
 3  84.116.186.113  2.69 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.78  69.91 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  72.41 ms  AS6830  Romania libertyglobal.com
 6  84.116.187.74  70.12 ms  AS6830  Romania libertyglobal.com
 7  84.116.187.89  69.81 ms  AS6830  Romania libertyglobal.com
 8  84.116.135.30  71.68 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 9  213.46.174.206  73.11 ms  AS6830  United Kingdom ziggo.nl
10  202.40.148.33  71.81 ms  AS4637,AS10026  United Kingdom London reach.com
11  202.84.136.14  319.05 ms  AS4637  TELSTRA.COM BACKBONE telstra.com
12  202.84.138.114  323.46 ms  AS4637  China Hong Kong telstra.com
13  202.84.137.253  320.81 ms  AS4637  China Taiwan Taipei City telstra.com
14  202.84.138.182  312.54 ms  AS4637  China Taiwan Taipei City telstra.com
15  203.79.253.161  322.70 ms  AS17709  China Taiwan Taipei City aptg.com.tw
16  210.176.44.78  324.34 ms  AS4637,AS10026  China Taiwan Taipei City telstra.com
17  211.76.96.75  324.78 ms  AS17709  China Taiwan Taipei City aptg.com.tw
18  *
19  210.200.69.90  322.61 ms  AS131142  China Taiwan Taipei City aptg.com.tw


Traceroute to China, Taiwan CHT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.75.129.162 (203.75.129.162), 30 hops max, 60 byte packets
 1  10.22.1.2  0.44 ms  *  LAN Address
 2  89.137.188.197  0.66 ms  AS6830  Romania upc.ro
 3  84.116.225.73  22.78 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.73 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.82 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  19.53 ms  AS6830  Romania libertyglobal.com
 7  62.115.168.8  29.93 ms  AS1299  Europe Regions telia.com
 8  *
 9  62.115.138.22  181.23 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.123.13  185.48 ms  AS1299  France Ile-de-France Paris telia.com
11  62.115.122.159  127.07 ms  AS1299  United States Virginia Ashburn telia.com
12  62.115.121.220  188.72 ms  AS1299  United States California Los Angeles telia.com
13  62.115.162.87  198.64 ms  AS1299  TELIA.COM BACKBONE telia.com
14  202.39.91.70  335.03 ms  AS9680  China Taiwan Taipei City cht.com.tw
15  220.128.30.254  325.35 ms  AS3462  China Taiwan Taipei City cht.com.tw
16  220.128.7.70  325.83 ms  AS3462  China Taiwan Taipei City cht.com.tw
17  220.128.1.225  325.30 ms  AS3462  China Taiwan Taipei City cht.com.tw
18  211.22.229.45  316.63 ms  AS3462  China Taiwan Taipei City cht.com.tw
19  1.1.1.2  325.94 ms  AS13335  CLOUDFLARE.COM apnic.net
20  *
21  203.75.129.162  320.17 ms  AS3462  China Taiwan Taipei City cht.com.tw


Traceroute to China, Taiwan TFN (TCP Mode, Max 30 Hop)
============================================================
traceroute to 219.87.66.3 (219.87.66.3), 30 hops max, 60 byte packets
 1  10.22.1.2  0.63 ms  *  LAN Address
 2  89.137.188.197  30.07 ms  AS6830  Romania upc.ro
 3  84.116.225.73  2.88 ms  AS6830  Romania libertyglobal.com
 4  84.116.131.53  25.96 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 5  84.116.187.85  34.58 ms  AS6830  Romania libertyglobal.com
 6  84.116.132.178  25.10 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  84.116.134.222  34.36 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  84.116.133.118  34.20 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 9  213.46.177.122  34.71 ms  AS6830  Norway ziggo.nl
10  63.223.9.118  323.17 ms  AS3491  China Taiwan Taipei City pccw.com
11  60.199.16.70  307.14 ms  AS9924  China Taiwan Taipei City twmbroadband.com
12  60.199.16.70  306.05 ms  AS9924  China Taiwan Taipei City twmbroadband.com
13  60.199.16.70  315.65 ms  AS9924  China Taiwan Taipei City twmbroadband.com
14  219.87.66.3  313.80 ms  AS9924  China Taiwan Taipei City twmbroadband.com


Traceroute to China,Taiwan FET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.73.144.38 (211.73.144.38), 30 hops max, 60 byte packets
 1  10.22.1.2  0.51 ms  *  LAN Address
 2  89.137.188.197  21.28 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.73 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.81 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  13.07 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.98 ms  AS6830  Romania libertyglobal.com
 7  84.116.217.117  12.71 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.166  13.61 ms  AS6830  Romania ziggo.nl
 9  *
10  *
11  129.250.4.96  130.17 ms  AS2914  United States Virginia Ashburn ntt.com
12  129.250.3.189  192.81 ms  AS2914  NTT.COM BACKBONE ntt.com
13  129.250.3.192  309.55 ms  AS2914  Japan Tokyo ntt.com
14  129.250.7.15  335.54 ms  AS2914  NTT.COM BACKBONE ntt.com
15  129.250.2.106  321.01 ms  AS2914  NTT.COM BACKBONE ntt.com
16  199.245.16.34  345.47 ms  AS2914  China Taiwan Taipei City ntt.com
17  192.72.155.141  333.67 ms  AS4780  China Taiwan Taipei City fetnet.net
18  139.175.58.166  328.39 ms  AS4780  China Taiwan Taipei City fetnet.net
19  *
20  *
21  *
22  211.73.144.38  338.64 ms  AS9674  China Taiwan fetnet.net


Traceroute to China, Taiwan KBT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 61.63.0.102 (61.63.0.102), 30 hops max, 60 byte packets
 1  10.22.1.2  0.57 ms  *  LAN Address
 2  89.137.188.197  23.29 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.87 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.82 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.91 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  13.09 ms  AS6830  Romania libertyglobal.com
 7  84.116.217.117  12.74 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.166  13.32 ms  AS6830  Romania ziggo.nl
 9  *
10  *
11  129.250.4.96  126.77 ms  AS2914  United States Virginia Ashburn ntt.com
12  129.250.3.189  192.67 ms  AS2914  NTT.COM BACKBONE ntt.com
13  129.250.3.192  305.65 ms  AS2914  Japan Tokyo ntt.com
14  129.250.7.15  331.11 ms  AS2914  NTT.COM BACKBONE ntt.com
15  129.250.7.41  332.63 ms  AS2914  NTT.COM BACKBONE ntt.com
16  61.58.33.194  336.51 ms  AS2914  China Taiwan Taipei City ntt.com
17  203.187.3.25  333.16 ms  AS9416  China Taiwan Taipei City kbtelecom.net
18  203.187.9.226  367.49 ms  AS9416  China Taiwan Taipei City kbtelecom.net
19  58.86.1.174  343.32 ms  AS18042  China Taiwan Taipei City kbtelecom.net
20  58.86.0.94  333.83 ms  AS18042  China Taiwan Taipei City kbtelecom.net
21  58.86.0.26  315.81 ms  AS18042  China Taiwan Taipei City kbtelecom.net
22  61.63.0.102  328.78 ms  AS18042  China Taiwan Taipei City kbtelecom.net


Traceroute to China, Taiwan TAIFO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 103.31.196.203 (103.31.196.203), 30 hops max, 60 byte packets
 1  10.22.1.2  0.70 ms  *  LAN Address
 2  89.137.188.197  15.04 ms  AS6830  Romania upc.ro
 3  84.116.225.73  3.28 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.82  155.70 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.97  155.89 ms  AS6830  Romania libertyglobal.com
 6  84.116.130.150  36.66 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  84.116.135.62  157.70 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  84.116.146.145  160.63 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 9  208.115.136.242  175.99 ms  *  United States Illinois Chicago equinix.com
10  85.95.26.14  368.80 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
11  208.115.136.242  178.68 ms  *  United States Illinois Chicago equinix.com
12  85.95.27.102  386.77 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
13  80.77.2.198  360.61 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
14  103.123.253.13  364.33 ms  *  China Taiwan Taipei City chief.com.tw
15  80.77.2.202  352.68 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
16  113.21.84.210  381.01 ms  *  China Taiwan Taipei City chief.com.tw
17  103.31.197.122  359.64 ms  AS131584  China Taiwan Taipei City taifo.com.tw
18  113.21.84.210  361.14 ms  *  China Taiwan Taipei City chief.com.tw
19  103.31.197.122  364.81 ms  AS131584  China Taiwan Taipei City taifo.com.tw
20  *
21  103.31.197.70  372.19 ms  AS131584  China Taiwan Taipei City taifo.com.tw
22  103.31.196.203  359.77 ms  AS131584  China Taiwan Taipei City taifo.com.tw


Traceroute to United States, Los Angeles China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  10.22.1.2  0.45 ms  *  LAN Address
 2  89.137.188.197  14.05 ms  AS6830  Romania upc.ro
 3  84.116.186.113  2.77 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.82  28.05 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.97  27.82 ms  AS6830  Romania libertyglobal.com
 6  84.116.131.53  27.89 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  218.30.33.17  193.93 ms  AS4134  United States ctamericas.com


Traceroute to United States, Los Angeles China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.102.252.100 (66.102.252.100), 30 hops max, 60 byte packets
 1  10.22.1.2  25.83 ms  *  LAN Address
 2  89.137.188.197  30.47 ms  AS6830  Romania upc.ro
 3  84.116.225.73  13.78 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.77 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.64 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.68 ms  AS6830  Romania libertyglobal.com
 7  62.115.168.8  30.19 ms  AS1299  Europe Regions telia.com
 8  62.115.118.48  185.29 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  *
10  62.115.122.138  206.17 ms  AS1299  TELIA.COM BACKBONE telia.com
11  *
12  62.115.121.220  188.69 ms  AS1299  United States California Los Angeles telia.com
13  213.248.79.253  228.89 ms  AS1299  TELIA.COM BACKBONE telia.com
14  66.102.252.100  192.33 ms  AS4809  United States ctamericas.com


Traceroute to United States, Los Angeles PCCW (TCP Mode, Max 30 Hop)
============================================================
traceroute to 63.218.42.81 (63.218.42.81), 30 hops max, 60 byte packets
 1  10.22.1.2  0.68 ms  *  LAN Address
 2  89.137.188.197  1.22 ms  AS6830  Romania upc.ro
 3  84.116.225.73  19.70 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.82  27.83 ms  AS6830  Romania libertyglobal.com
 5  84.116.135.62  27.13 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  84.116.132.178  25.30 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  213.46.177.122  25.42 ms  AS6830  Norway ziggo.nl
 8  63.218.42.81  192.91 ms  AS3491  United States California Los Angeles pccw.com


Traceroute to United States, Los Angeles HE (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.220.18.42 (66.220.18.42), 30 hops max, 60 byte packets
 1  10.22.1.2  0.54 ms  *  LAN Address
 2  89.137.188.197  0.73 ms  AS6830  Romania upc.ro
 3  84.116.225.73  3.09 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.82  28.06 ms  AS6830  Romania libertyglobal.com
 5  84.116.137.17  25.23 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  84.116.131.53  28.06 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  84.116.137.17  27.44 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  184.105.213.173  119.84 ms  AS6939  United States Virginia Ashburn he.net
 9  72.52.92.13  72.67 ms  AS6939  France Ile-de-France Paris he.net
10  184.105.213.173  122.01 ms  AS6939  United States Virginia Ashburn he.net
11  184.105.80.202  185.79 ms  AS6939  United States California Los Angeles he.net
12  66.220.18.42  183.66 ms  AS6939  United States California Los Angeles he.net


Traceroute to United States, Los Angeles GTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 173.205.77.98 (173.205.77.98), 30 hops max, 60 byte packets
 1  10.22.1.2  0.69 ms  *  LAN Address
 2  89.137.188.197  0.55 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.70 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  13.94 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.83 ms  AS6830  Romania libertyglobal.com
 6  84.116.187.90  12.91 ms  AS6830  Romania libertyglobal.com
 7  84.116.216.253  12.67 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.138  13.29 ms  AS6830  Romania ziggo.nl
 9  89.149.182.162  189.74 ms  AS3257  United States California Los Angeles gtt.net
10  173.205.77.98  189.42 ms  AS3257  United States California Los Angeles gtt.net


Traceroute to United States, San Fransico ATT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 12.169.215.33 (12.169.215.33), 30 hops max, 60 byte packets
 1  10.22.1.2  0.60 ms  *  LAN Address
 2  89.137.188.197  17.60 ms  AS6830  Romania upc.ro
 3  84.116.186.113  3.33 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.82  134.65 ms  AS6830  Romania libertyglobal.com
 5  84.116.135.62  137.91 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  84.116.131.53  131.03 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  84.116.135.62  140.76 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  84.116.130.174  129.72 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 9  84.116.130.66  132.04 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
10  12.122.134.134  207.50 ms  AS7018  United States Washington, D.C. att.com
11  12.122.28.205  195.78 ms  AS7018  United States Illinois Chicago att.com
12  12.122.1.174  197.19 ms  AS7018  United States California San Francisco att.com
13  12.122.28.205  196.08 ms  AS7018  United States Illinois Chicago att.com
14  12.122.1.174  200.25 ms  AS7018  United States California San Francisco att.com
15  12.122.3.70  202.14 ms  AS7018  United States California San Francisco att.com
16  12.122.149.85  206.44 ms  AS7018  United States California att.com
17  12.244.156.30  206.62 ms  AS7018  United States California att.com
18  12.169.215.33  197.69 ms  AS7018  United States California att.com


Traceroute to United States, New York TATA (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.198.181.100 (66.198.181.100), 30 hops max, 60 byte packets
 1  10.22.1.2  0.71 ms  *  LAN Address
 2  89.137.188.197  19.17 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.88 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.88 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.65 ms  AS6830  Romania libertyglobal.com
 6  84.116.187.90  12.75 ms  AS6830  Romania libertyglobal.com
 7  84.116.217.117  12.65 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.150  16.21 ms  AS6830  Romania ziggo.nl
 9  80.231.208.37  131.74 ms  AS6453  Romania Bucharest tatacommunications.com
10  195.219.194.149  131.82 ms  AS6453  Netherlands North Holland Amsterdam tatacommunications.com
11  80.231.154.143  135.53 ms  AS6453  France Ile-de-France Paris tatacommunications.com
12  80.231.131.160  131.86 ms  AS6453  United Kingdom London tatacommunications.com
13  80.231.131.158  134.63 ms  AS6453  United States New York New York City tatacommunications.com
14  216.6.90.21  134.67 ms  AS6453  United States New York New York City tatacommunications.com
15  216.6.90.21  137.53 ms  AS6453  United States New York New York City tatacommunications.com
16  209.58.75.198  134.55 ms  AS6453  United States New York New York City tatacommunications.com
17  66.198.181.100  131.33 ms  AS6453  United States New York New York City tatacommunications.com


Traceroute to United States, San Jose China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  10.22.1.2  0.59 ms  *  LAN Address
 2  89.137.188.197  1.31 ms  AS6830  Romania upc.ro
 3  84.116.186.113  2.75 ms  AS6830  Romania libertyglobal.com
 4  84.116.131.53  25.47 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 5  84.116.137.17  25.37 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  118.85.205.101  27.23 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 7  218.30.33.17  194.16 ms  AS4134  United States ctamericas.com


Traceroute to United States, San Jose NTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 23.11.26.62 (23.11.26.62), 30 hops max, 60 byte packets
 1  10.22.1.2  0.79 ms  *  LAN Address
 2  89.137.188.197  19.60 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.87 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.89 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  13.07 ms  AS6830  Romania libertyglobal.com
 6  84.116.187.90  12.55 ms  AS6830  Romania libertyglobal.com
 7  84.116.217.117  20.05 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.166  13.48 ms  AS6830  Romania ziggo.nl
 9  129.250.3.194  34.21 ms  AS2914  NTT.COM BACKBONE ntt.com
10  *
11  129.250.4.96  127.09 ms  AS2914  United States Virginia Ashburn ntt.com
12  129.250.3.85  126.56 ms  AS2914  United States Virginia Ashburn ntt.com
13  129.250.6.237  191.88 ms  AS2914  NTT.COM BACKBONE ntt.com
14  129.250.3.121  200.32 ms  AS2914  NTT.COM BACKBONE ntt.com
15  129.250.2.48  193.14 ms  AS2914  NTT.COM BACKBONE ntt.com
16  23.11.26.62  192.31 ms  AS2914  United States California San Jose akamai.com


Traceroute to United States, Fremont HE (TCP Mode, Max 30 Hop)
============================================================
traceroute to 72.52.104.74 (72.52.104.74), 30 hops max, 60 byte packets
 1  10.22.1.2  0.81 ms  *  LAN Address
 2  89.137.188.197  14.87 ms  AS6830  Romania upc.ro
 3  84.116.225.73  3.01 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.82  27.61 ms  AS6830  Romania libertyglobal.com
 5  84.116.137.17  25.22 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  216.66.87.125  25.32 ms  AS6939  HE.NET BACKBONE he.net
 7  84.116.137.17  27.73 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  216.66.87.125  27.37 ms  AS6939  HE.NET BACKBONE he.net
 9  184.105.80.37  65.62 ms  AS6939  United Kingdom London he.net
10  184.105.81.61  186.69 ms  AS6939  United States California Fremont he.net
11  184.104.192.242  120.43 ms  AS6939  HE.NET BACKBONE he.net
12  184.105.81.61  188.78 ms  AS6939  United States California Fremont he.net
13  72.52.104.74  187.73 ms  AS6939  United States California Fremont he.net


Traceroute to United States, Las Vegas Level3 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 205.216.62.38 (205.216.62.38), 30 hops max, 60 byte packets
 1  10.22.1.2  0.79 ms  *  LAN Address
 2  89.137.188.197  15.91 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.83 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  13.00 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  13.10 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  13.06 ms  AS6830  Romania libertyglobal.com
 7  84.116.216.253  12.76 ms  AS6830  Romania libertyglobal.com
 8  84.116.216.254  138.76 ms  AS6830  Romania Bucharest libertyglobal.com
 9  84.116.187.89  138.99 ms  AS6830  Romania libertyglobal.com
10  84.116.138.158  139.46 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
11  *
12  84.116.140.170  141.82 ms  AS6830  Europe Regions libertyglobal.com
13  84.116.137.194  140.30 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
14  *
15  *
16  63.235.42.101  132.81 ms  AS209  United States New York New York City centurylink.com
17  67.14.14.34  149.86 ms  AS209  United States Georgia Atlanta centurylink.com
18  216.34.172.50  175.29 ms  AS3561  United States Texas Dallas centurylink.com
19  216.34.164.94  168.75 ms  AS3561  United States Texas Dallas centurylink.com
20  205.216.7.204  175.48 ms  AS3561  United States Texas Dallas centurylink.com
21  *
22  205.216.62.38  169.64 ms  AS3561  United States Texas Dallas centurylink.com


Traceroute to United States, San Jose ZAYO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 64.125.191.31 (64.125.191.31), 30 hops max, 60 byte packets
 1  10.22.1.2  0.55 ms  *  LAN Address
 2  89.137.188.197  19.78 ms  AS6830  Romania upc.ro
 3  84.116.186.113  2.96 ms  AS6830  Romania libertyglobal.com
 4  84.116.131.53  25.58 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 5  84.116.187.85  34.55 ms  AS6830  Romania libertyglobal.com
 6  84.116.138.13  34.52 ms  AS6830  Romania libertyglobal.com
 7  84.116.134.222  36.53 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  64.125.30.254  184.13 ms  AS6461  Germany Hesse Frankfurt zayo.com
 9  64.125.29.54  184.28 ms  AS6461  Germany Hesse Frankfurt zayo.com
10  64.125.29.59  184.10 ms  AS6461  Netherlands North Holland Amsterdam zayo.com
11  64.125.29.54  194.95 ms  AS6461  Germany Hesse Frankfurt zayo.com
12  64.125.29.59  194.35 ms  AS6461  Netherlands North Holland Amsterdam zayo.com
13  64.125.29.80  193.13 ms  AS6461  Netherlands North Holland Amsterdam zayo.com
14  64.125.29.126  185.63 ms  AS6461  United States New York New York City zayo.com
15  64.125.29.118  197.11 ms  AS6461  United Kingdom Berkshire County Slough zayo.com
16  64.125.29.19  184.14 ms  AS6461  United States Colorado Denver zayo.com
17  *
18  64.125.27.63  183.92 ms  AS6461  United States California San Jose zayo.com
19  64.125.31.219  193.33 ms  AS6461  United States California San Jose zayo.com
20  64.125.191.31  184.15 ms  AS6461  United States California San Jose zayo.com


Traceroute to United States, Ashburn Cogentco (TCP Mode, Max 30 Hop)
============================================================
traceroute to 149.127.109.166 (149.127.109.166), 30 hops max, 60 byte packets
 1  10.22.1.2  0.64 ms  *  LAN Address
 2  89.137.188.197  18.90 ms  AS6830  Romania upc.ro
 3  84.116.186.113  2.77 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  40.15 ms  AS6830  Romania libertyglobal.com
 5  84.116.137.17  25.33 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  84.116.138.158  40.18 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  84.116.130.82  40.10 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  154.54.61.113  47.38 ms  AS174
 9  154.54.58.5  42.11 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
10  154.54.30.65  123.45 ms  AS174  United States Virginia Arlington cogentco.com
11  154.54.58.234  48.03 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
12  38.140.164.58  126.35 ms  AS174  United States Virginia Herndon cogentco.com
13  149.127.109.2  125.40 ms  AS174  United States Virginia Ashburn cogentco.com
14  154.54.30.53  137.54 ms  AS174  United States Virginia Arlington cogentco.com
15  149.127.109.166  125.63 ms  AS174  United States Virginia Ashburn cogentco.com


Traceroute to German, Telekom (TCP Mode, Max 30 Hop)
============================================================
traceroute to 80.146.191.1 (80.146.191.1), 30 hops max, 60 byte packets
 1  10.22.1.2  0.74 ms  *  LAN Address
 2  89.137.188.197  19.84 ms  AS6830  Romania upc.ro
 3  84.116.186.113  3.06 ms  AS6830  Romania libertyglobal.com
 4  84.116.131.53  25.98 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 5  84.116.187.85  40.61 ms  AS6830  Romania libertyglobal.com
 6  84.116.133.113  25.48 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  62.157.248.133  25.79 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
 8  80.157.202.61  41.21 ms  AS3320  Germany telekom.de
 9  80.146.191.1  42.31 ms  AS3320  Germany North Rhine-Westphalia telekom.de


Traceroute to German, Frankfurt O2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 82.113.108.25 (82.113.108.25), 30 hops max, 60 byte packets
 1  10.22.1.2  10.69 ms  *  LAN Address
 2  89.137.188.197  19.97 ms  AS6830  Romania upc.ro
 3  84.116.186.113  3.05 ms  AS6830  Romania libertyglobal.com
 4  84.116.131.53  25.64 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 5  84.116.135.62  25.24 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  84.116.138.13  34.56 ms  AS6830  Romania libertyglobal.com
 7  213.46.177.26  25.28 ms  AS6830  Norway ziggo.nl
 8  84.116.133.118  34.52 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 9  213.46.177.26  34.22 ms  AS6830  Norway ziggo.nl
10  176.52.252.29  34.70 ms  AS12956  Germany Hesse Frankfurt telefonica.com
11  62.53.28.176  34.97 ms  AS6805  Germany Hesse Offenbach am Main telefonica.de
12  82.113.108.25  25.78 ms  AS39706  Germany Hesse Frankfurt o2online.de


Traceroute to German, Frankfurt Vodafone (TCP Mode, Max 50 Hop)
============================================================
traceroute to 139.7.146.11 (139.7.146.11), 50 hops max, 60 byte packets
 1  10.22.1.2  0.59 ms  *  LAN Address
 2  89.137.188.197  2.53 ms  AS6830  Romania upc.ro
 3  84.116.225.73  3.10 ms  AS6830  Romania libertyglobal.com
 4  84.116.131.53  25.48 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 5  84.116.137.17  25.22 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  84.116.138.158  40.62 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  195.2.24.218  28.97 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
 8  213.46.173.186  39.98 ms  AS6830  Austria ziggo.nl
 9  *
10  145.253.5.57  36.63 ms  AS3209  Germany vodafone.de
11  92.79.230.2  36.63 ms  AS3209  Germany vodafone.de
12  92.79.230.2  49.92 ms  AS3209  Germany vodafone.de
13  10.210.0.50  36.50 ms  *  LAN Address
14  10.210.0.50  50.03 ms  *  LAN Address
15  10.210.140.141  36.50 ms  *  LAN Address
16  10.210.148.36  66.11 ms  *  LAN Address
17  139.7.146.11  56.94 ms  AS3209  Germany vodafone.de


Traceroute to German, Frankfurt China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.85.205.101 (118.85.205.101), 30 hops max, 60 byte packets
 1  10.22.1.2  0.58 ms  *  LAN Address
 2  89.137.188.197  18.58 ms  AS6830  Romania upc.ro
 3  84.116.225.73  2.97 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.82  27.67 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.97  27.89 ms  AS6830  Romania libertyglobal.com
 6  118.85.205.101  25.25 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom


Traceroute to German, Frankfurt China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 5.10.138.33 (5.10.138.33), 30 hops max, 60 byte packets
 1  10.22.1.2  0.50 ms  *  LAN Address
 2  89.137.188.197  17.49 ms  AS6830  Romania upc.ro
 3  84.116.225.73  13.33 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  13.31 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  13.02 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.54 ms  AS6830  Romania libertyglobal.com
 7  62.115.168.8  30.09 ms  AS1299  Europe Regions telia.com
 8  62.115.118.48  29.83 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.138.22  40.42 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.122.138  52.11 ms  AS1299  TELIA.COM BACKBONE telia.com
11  62.115.134.93  55.59 ms  AS1299  TELIA.COM BACKBONE telia.com
12  62.115.134.135  58.54 ms  AS1299  United Kingdom London telia.com
13  80.239.193.226  64.39 ms  AS1299  TELIA.COM BACKBONE telia.com
14  59.43.180.113  48.15 ms  *  Europe Regions ChinaTelecom
15  5.10.138.33  47.34 ms  AS4809  Germany cteurope.net


Traceroute to German, Frankfurt GTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 213.200.65.70 (213.200.65.70), 30 hops max, 60 byte packets
 1  10.22.1.2  0.62 ms  *  LAN Address
 2  89.137.188.197  23.19 ms  AS6830  Romania upc.ro
 3  84.116.225.73  13.12 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.86 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.83 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  13.00 ms  AS6830  Romania libertyglobal.com
 7  84.116.217.117  12.86 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.138  12.73 ms  AS6830  Romania ziggo.nl
 9  213.200.115.165  32.76 ms  AS3257  Germany Hesse Frankfurt gtt.net
10  213.200.65.70  32.91 ms  AS3257  GTT.NET BACKBONE gtt.net


Traceroute to German, FrankfurtCogentco (TCP Mode, Max 30 Hop)
============================================================
traceroute to 212.20.150.5 (212.20.150.5), 30 hops max, 60 byte packets
 1  10.22.1.2  0.41 ms  *  LAN Address
 2  89.137.188.197  27.11 ms  AS6830  Romania upc.ro
 3  84.116.225.73  3.08 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  40.13 ms  AS6830  Romania libertyglobal.com
 5  84.116.137.17  25.05 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  84.116.138.158  42.56 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  84.116.130.82  39.99 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  212.20.150.5  25.34 ms  AS174  Germany Hesse Frankfurt cogentco.com


Traceroute to United Kingdom, Vodafone (TCP Mode, Max 30 Hop)
============================================================
traceroute to 194.62.232.211 (194.62.232.211), 30 hops max, 60 byte packets
 1  10.22.1.2  0.54 ms  *  LAN Address
 2  89.137.188.197  22.88 ms  AS6830  Romania upc.ro
 3  84.116.186.113  2.75 ms  AS6830  Romania libertyglobal.com
 4  84.116.131.53  25.73 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 5  84.116.137.17  39.23 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  84.116.138.158  40.19 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  84.116.130.82  40.11 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 8  213.46.173.186  40.02 ms  AS6830  Austria ziggo.nl
 9  195.2.22.189  70.26 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
10  195.2.28.29  47.90 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
11  194.62.232.211  57.14 ms  AS25135  United Kingdom vodafone.com


Traceroute to United Kingdom， BT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 213.121.43.24 (213.121.43.24), 30 hops max, 60 byte packets
 1  10.22.1.2  0.70 ms  *  LAN Address
 2  89.137.188.197  13.87 ms  AS6830  Romania upc.ro
 3  84.116.186.113  4.35 ms  AS6830  Romania libertyglobal.com
 4  84.116.131.53  25.47 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 5  84.116.135.62  25.21 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 6  84.116.132.178  29.30 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 7  213.46.179.218  26.42 ms  AS6830  Germany ziggo.nl
 8  166.49.195.100  55.63 ms  AS5400  BT.COM BACKBONE bt.com
 9  213.46.179.218  27.98 ms  AS6830  Germany ziggo.nl
10  109.159.249.10  48.63 ms  AS2856  United Kingdom bt.com
11  166.49.209.195  51.04 ms  AS5400  United Kingdom London bt.com
12  109.159.249.10  51.20 ms  AS2856  United Kingdom bt.com
13  *
14  *
15  *
16  *
17  213.121.43.24  55.35 ms  AS2856  United Kingdom bt.com


Traceroute to United Kingdom, London TATA (TCP Mode, Max 30 Hop)
============================================================
traceroute to 80.231.131.34 (80.231.131.34), 30 hops max, 60 byte packets
 1  10.22.1.2  0.62 ms  *  LAN Address
 2  89.137.188.197  21.24 ms  AS6830  Romania upc.ro
 3  84.116.225.73  13.03 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.85 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.73 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  13.01 ms  AS6830  Romania libertyglobal.com
 7  84.116.217.117  12.69 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.150  16.20 ms  AS6830  Romania ziggo.nl
 9  80.231.153.54  41.43 ms  AS6453  France Ile-de-France Paris tatacommunications.com
10  80.231.153.20  44.51 ms  AS6453  France Ile-de-France Paris tatacommunications.com
11  80.231.153.50  44.65 ms  AS6453  France Ile-de-France Paris tatacommunications.com
12  80.231.154.143  67.64 ms  AS6453  France Ile-de-France Paris tatacommunications.com
13  80.231.131.34  61.47 ms  AS6453  United Kingdom London tatacommunications.com


Traceroute to Russia, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.85.205.180 (118.85.205.180), 30 hops max, 60 byte packets
 1  10.22.1.2  0.79 ms  *  LAN Address
 2  89.137.188.197  27.69 ms  AS6830  Romania upc.ro
 3  84.116.225.73  3.38 ms  AS6830  Romania libertyglobal.com
 4  84.116.131.53  26.05 ms  AS6830  LIBERTYGLOBAL.COM BACKBONE libertyglobal.com
 5  84.116.187.97  28.06 ms  AS6830  Romania libertyglobal.com
 6  118.85.205.101  25.61 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 7  202.97.52.66  26.39 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
 8  202.97.67.233  215.21 ms  *  Russian Federation ChinaTelecom
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Russia, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 185.75.173.17 (185.75.173.17), 30 hops max, 60 byte packets
 1  10.22.1.2  0.53 ms  *  LAN Address
 2  89.137.188.197  15.70 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.75 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.88 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.70 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  12.59 ms  AS6830  Romania libertyglobal.com
 7  62.115.168.8  30.18 ms  AS1299  Europe Regions telia.com
 8  *
 9  62.115.138.22  40.55 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.122.138  49.81 ms  AS1299  TELIA.COM BACKBONE telia.com
11  *
12  62.115.134.135  56.60 ms  AS1299  United Kingdom London telia.com
13  80.239.193.226  65.09 ms  AS1299  TELIA.COM BACKBONE telia.com
14  59.43.180.113  48.38 ms  *  Europe Regions ChinaTelecom
15  185.75.173.17  93.93 ms  AS4809  Russian Federation Moscow cteurope.net


Traceroute to Russia, Moscow RT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 87.226.162.77 (87.226.162.77), 30 hops max, 60 byte packets
 1  10.22.1.2  0.65 ms  *  LAN Address
 2  89.137.188.197  16.42 ms  AS6830  Romania upc.ro
 3  84.116.225.73  13.81 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  14.35 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.78 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  13.11 ms  AS6830  Romania libertyglobal.com
 7  84.116.217.117  12.79 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.138  13.58 ms  AS6830  Romania ziggo.nl
 9  89.149.133.62  32.68 ms  AS3257  Germany Hesse Frankfurt gtt.net
10  77.67.90.99  32.91 ms  AS3257  Germany Hesse Frankfurt gtt.net
11  213.59.212.223  80.83 ms  AS12389  Russian Federation Moscow rt.ru
12  87.226.140.2  74.16 ms  AS12389  Russian Federation Moscow rt.ru
13  *
14  87.226.162.77  89.91 ms  AS12389  Russian Federation Moscow rt.ru


Traceroute to Russia, Moscow TTK (TCP Mode, Max 30 Hop)
============================================================
traceroute to 217.150.32.2 (217.150.32.2), 30 hops max, 60 byte packets
 1  10.22.1.2  0.70 ms  *  LAN Address
 2  89.137.188.197  23.14 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.85 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  12.70 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  13.39 ms  AS6830  Romania libertyglobal.com
 6  84.116.186.186  15.38 ms  AS6830  Romania libertyglobal.com
 7  62.115.168.8  29.99 ms  AS1299  Europe Regions telia.com
 8  62.115.118.48  30.01 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.138.22  40.44 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.121.1  41.32 ms  AS1299  Germany Hesse Frankfurt telia.com
11  213.248.69.66  33.91 ms  AS1299  Germany Hesse Frankfurt telia.com
12  *
13  62.33.207.217  77.55 ms  AS20485  Russian Federation Moscow ttk.ru
14  80.237.46.177  77.54 ms  AS20485  Russian Federation Moscow ttk.ru
15  217.150.32.243  77.99 ms  AS20485  Russian Federation Moscow ttk.ru
16  *
17  217.150.32.2  79.39 ms  AS20485  Russian Federation Moscow ttk.ru


Traceroute to Russia, Moscow MTS (TCP Mode, Max 30 Hop)
============================================================
traceroute to 195.34.32.71 (195.34.32.71), 30 hops max, 60 byte packets
 1  10.22.1.2  0.53 ms  *  LAN Address
 2  89.137.188.197  29.92 ms  AS6830  Romania upc.ro
 3  84.116.225.73  12.90 ms  AS6830  Romania libertyglobal.com
 4  84.116.187.102  13.22 ms  AS6830  Romania libertyglobal.com
 5  84.116.187.85  12.76 ms  AS6830  Romania libertyglobal.com
 6  84.116.187.90  12.53 ms  AS6830  Romania libertyglobal.com
 7  84.116.216.253  13.00 ms  AS6830  Romania libertyglobal.com
 8  213.46.170.130  29.21 ms  AS6830  Romania ziggo.nl
 9  *
10  213.242.110.182  61.41 ms  AS3356  Sweden Stockholm County Stockholm level3.com
11  212.188.29.110  67.49 ms  AS8359  Russian Federation Saint Petersburg mts.ru
12  212.188.2.54  72.09 ms  AS8359  Russian Federation Moscow mts.ru
13  212.188.28.149  73.44 ms  AS8359  Russian Federation Moscow mts.ru
14  195.34.53.5  72.18 ms  AS8359  Russian Federation Moscow mts.ru
15  195.34.53.213  72.29 ms  AS8359  Russian Federation Moscow mts.ru
16  195.34.32.71  73.43 ms  AS8359  Russian Federation Moscow mts.ru
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;中规中矩的大盘鸡，CPU性能较差，需要补熵，而且不支持AES-NI指令集。有大存储需求的可以入手。&lt;/p&gt;
</content:encoded></item><item><title>LetBox评测：250G大盘鸡</title><link>https://yushum.com/posts/letbox%E8%AF%84%E6%B5%8B250g%E5%A4%A7%E7%9B%98%E9%B8%A1/</link><guid isPermaLink="true">https://yushum.com/posts/letbox%E8%AF%84%E6%B5%8B250g%E5%A4%A7%E7%9B%98%E9%B8%A1/</guid><pubDate>Mon, 03 Feb 2020 20:01:18 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;LetBox是一家来自国外的VPS销售商，成立于2011年。最近在let论坛中提供了大盘鸡优惠活动。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/LETBOX-1024x480.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;配置信息&lt;/h2&gt;
&lt;h3&gt;系统信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;OS Release:		Debian GNU/Linux &quot;Buster&quot; 10.2 (x86_64)
 CPU Model:		Intel(R) Xeon(R) CPU E5-2680 0 @ 2.70GHz
 CPU Cache Size:	16384 KB
 CPU Number:		1 vCPU
 Virt Type:		KVM
 Memory Usage:		138.87 MB / 987.17 MB
 Swap Usage:		[ No Swapfile / Swap partition ]
 Disk Usage:		1.92 GB / 264.16 GB
 Boot Device:		/dev/vda1
 Load (1/5/15min):	0.26 0.07 0.02
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;网络信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;IPV4 - IP Address:	[US] 144.172.69.*
 IPV4 - ASN Info:	AS40676 (Psychz Networks)
 IPV4 - Region:		null
 IPV6 - IP Address:	[] 
 IPV6 - ASN Info:	AS ()
 IPV6 - Region:		,
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;流媒体解锁&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;HBO Now:				Yes
 Bahamut Anime:				No
 Abema.TV:				No
 Princess Connect Re:Dive (Beta):	Yes
 Bilibili China Mainland Only:		No
 Bilibili Hongkong/Macau/Taiwan:	No
 Bilibili Taiwan Only:			No
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;CPU性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread Test:			807 Scores
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;内存性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread - Read Test :		15953.90 MB/s
 1 Thread - Write Test:		12555.12 MB/s
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;硬盘性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt; Test Name		Write Speed				Read Speed
 10MB-4K Block		24.9 MB/s (6087 IOPS, 0.42 s)		33.3 MB/s (8120 IOPS, 0.32 s)
 10MB-1M Block		1.8 GB/s (1758 IOPS, 0.01 s)		1.8 GB/s (1711 IOPS, 0.01 s)
 100MB-4K Block		41.4 MB/s (0.10 IOPS, 2.54 s)		50.5 MB/s (12340 IOPS, 2.07 s)
 100MB-1M Block		687 MB/s (655 IOPS, 0.15 s)		672 MB/s (641 IOPS, 0.16 s)
 1GB-4K Block		52.7 MB/s (0.08 IOPS, 19.90 s)		65.3 MB/s (15951 IOPS, 16.05 s)
 1GB-1M Block		434 MB/s (413 IOPS, 2.42 s)		436 MB/s (416 IOPS, 2.40 s)
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;网速测试&lt;/h2&gt;
&lt;h3&gt;Speedtest.net网速测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt; Node Name			Upload Speed	Download Speed	Ping Latency
 Speedtest Default		57.87 MB/s	88.60 MB/s	60.38 ms
 China, Jilin CU		23.53 MB/s	89.01 MB/s	191.70 ms
 China, Shandong CU		0.05 MB/s	54.73 MB/s	307.76 ms
 China, Nanjing CU		0.11 MB/s	77.14 MB/s	163.06 ms
 China, Shanghai CU		21.82 MB/s	53.64 MB/s	189.24 ms
 China, Changsha CU		0.11 MB/s	33.45 MB/s	183.01 ms
 China, Lanzhou CU		16.64 MB/s	78.19 MB/s	177.30 ms
 China, Beijing CT		0.06 MB/s	66.74 MB/s	169.12 ms
 China, Hangzhou CT		0.07 MB/s	55.27 MB/s	144.23 ms
 China, Nanjing CT		0.14 MB/s	59.18 MB/s	167.20 ms
 China, Guangzhou CT		0.12 MB/s	36.11 MB/s	168.53 ms
 China, Wuhan CT		0.32 MB/s	75.81 MB/s	182.78 ms
 China, Shenyang CM		Fail: Unknown Error
 China, Hangzhou CM		0.03 MB/s	66.62 MB/s	219.33 ms
 China, Nanning CM		0.09 MB/s	73.39 MB/s	217.79 ms
 China, Lanzhou CM		0.07 MB/s	44.86 MB/s	240.57 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;IPv4路由测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.29 ms  *  LAN Address
 3  10.20.0.1  0.36 ms  *  LAN Address
 4  66.220.10.121  0.35 ms  AS6939  United States California Los Angeles he.net
 5  72.52.93.38  5.93 ms  AS6939  United States California Los Angeles he.net
 6  219.158.98.149  168.10 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 7  219.158.97.30  170.69 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 8  *
 9  219.158.8.81  164.05 ms  AS4837  China Beijing ChinaUnicom
10  125.33.186.94  163.71 ms  AS4808  China Beijing ChinaUnicom
11  221.219.202.254  164.57 ms  AS4808  China Beijing ChinaUnicom
12  124.65.194.122  163.69 ms  AS4808  China Beijing ChinaUnicom
13  61.135.113.154  174.70 ms  AS4808  China Beijing ChinaUnicom
14  *
15  *
16  123.125.99.1  164.04 ms  AS4808  China Beijing ChinaUnicom


Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.64 ms  *  LAN Address
 3  10.40.0.1  0.59 ms  *  LAN Address
 4  66.220.10.121  0.38 ms  AS6939  United States California Los Angeles he.net
 5  64.62.244.62  0.97 ms  AS6939  United States California Los Angeles he.net
 6  202.97.92.166  3.99 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  202.97.41.49  152.16 ms  AS4134  China Beijing ChinaTelecom
 8  202.97.12.49  160.21 ms  AS4134  China Beijing ChinaTelecom
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.88.117 (211.136.88.117), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.39 ms  *  LAN Address
 3  10.40.0.2  0.35 ms  *  LAN Address
 4  223.119.66.65  0.97 ms  AS58453  CHINAMOBILE.COM BACKBONE ChinaMobile
 5  223.120.6.17  0.70 ms  AS58453  United States California Los Angeles ChinaMobile
 6  223.120.6.38  0.79 ms  AS58453  United States California Los Angeles ChinaMobile
 7  *
 8  *
 9  *
10  221.176.21.229  219.02 ms  AS9808  China Beijing ChinaMobile
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.0.49 (58.247.0.49), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.38 ms  *  LAN Address
 3  66.220.10.121  5.80 ms  AS6939  United States California Los Angeles he.net
 4  72.52.93.38  6.29 ms  AS6939  United States California Los Angeles he.net
 5  219.158.97.209  171.28 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 6  219.158.96.206  173.63 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 7  219.158.103.41  169.81 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 8  219.158.7.41  184.31 ms  AS4837  China Shanghai ChinaUnicom
 9  *
10  139.226.230.185  189.74 ms  AS17621  China Shanghai ChinaUnicom
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.1 (180.153.28.1), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  1.73 ms  *  LAN Address
 3  10.40.0.2  0.38 ms  *  LAN Address
 4  89.221.35.146  0.41 ms  AS6762  United States California Los Angeles tisparkle.com
 5  218.30.54.176  7.87 ms  AS4134  United States California Los Angeles ctamericas.com
 6  202.97.90.133  7.11 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  202.97.51.41  158.52 ms  AS4134  China Shanghai ChinaTelecom
 8  202.97.12.181  175.68 ms  AS4134  China ChinaTelecom
 9  202.97.24.217  154.06 ms  AS4134  China Shanghai ChinaTelecom
10  *
11  101.95.207.242  270.65 ms  AS4812  China Shanghai ChinaTelecom
12  124.74.232.54  171.88 ms  AS4812  China Shanghai ChinaTelecom
13  101.227.255.38  154.14 ms  AS4812  China Shanghai ChinaTelecom
14  *
15  *
16  *
17  101.227.250.2  230.16 ms  AS4812  China Shanghai ChinaTelecom
18  *
19  101.227.250.2  163.39 ms  AS4812  China Shanghai ChinaTelecom
20  *
21  *
22  *
23  101.227.250.3  155.78 ms  AS4812  China Shanghai ChinaTelecom
24  *
25  101.227.250.2  175.20 ms  AS4812  China Shanghai ChinaTelecom
26  *
27  101.227.250.3  165.62 ms  AS4812  China Shanghai ChinaTelecom
28  *
29  *
30  *


Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.51 ms  *  LAN Address
 3  223.119.66.65  0.71 ms  AS58453  CHINAMOBILE.COM BACKBONE ChinaMobile
 4  223.120.6.17  0.98 ms  AS58453  United States California Los Angeles ChinaMobile
 5  *
 6  *
 7  *
 8  *
 9  *
10  221.176.17.178  259.75 ms  AS9808  China Shanghai ChinaMobile
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.32 ms  *  LAN Address
 3  50.242.150.109  0.73 ms  AS7922  United States California Los Angeles comcast.com
 4  219.158.33.209  54.03 ms  AS4837  United States California Los Angeles ChinaUnicom
 5  219.158.97.205  221.69 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 6  219.158.20.221  230.18 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 7  219.158.8.113  176.30 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 8  112.92.0.62  219.98 ms  AS17816  China Guangdong Guangzhou ChinaUnicom
 9  120.80.170.254  219.36 ms  AS17622  China Guangdong Guangzhou ChinaUnicom
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.40 ms  *  LAN Address
 3  218.30.53.113  8.28 ms  AS4134  United States California Los Angeles ctamericas.com
 4  202.97.92.161  5.53 ms  AS4134  United States California Los Angeles ChinaTelecom
 5  202.97.94.245  148.08 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
 6  *
 7  202.97.90.161  147.55 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
 8  113.108.208.50  157.73 ms  AS58466  China Guangdong Guangzhou ChinaTelecom
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.139.129.5 (211.139.129.5), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.47 ms  *  LAN Address
 3  10.40.0.2  0.35 ms  *  LAN Address
 4  223.119.66.65  0.78 ms  AS58453  CHINAMOBILE.COM BACKBONE ChinaMobile
 5  223.120.6.17  0.68 ms  AS58453  United States California Los Angeles ChinaMobile
 6  *
 7  *
 8  221.183.25.118  204.63 ms  AS9808  China Guangdong Guangzhou ChinaMobile
 9  221.176.24.205  172.17 ms  AS9808  China Guangdong Guangzhou ChinaMobile
10  221.183.24.70  169.00 ms  AS9808  China Guangdong Shenzhen ChinaMobile
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.44 ms  *  LAN Address
 3  38.142.230.9  0.64 ms  AS174  United States California Los Angeles cogentco.com
 4  154.54.25.150  1.09 ms  AS174  United States California Los Angeles cogentco.com
 5  *
 6  218.105.7.213  156.22 ms  AS9929  China Hong Kong ChinaUnicom
 7  218.105.2.109  156.14 ms  AS9929  China Guangdong Guangzhou ChinaUnicom
 8  218.105.2.198  154.52 ms  AS9929  China Shanghai ChinaUnicom
 9  210.13.112.254  151.63 ms  AS9929  China Shanghai ChinaUnicom
10  210.13.66.237  160.00 ms  AS9929  China Shanghai ChinaUnicom
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.51 ms  *  LAN Address
 3  69.174.22.85  0.49 ms  AS3257  United States California Los Angeles gtt.net
 4  69.174.23.150  1.00 ms  AS3257  United States California Los Angeles gtt.net
 5  129.250.4.106  1.57 ms  AS2914  United States California Los Angeles ntt.com
 6  129.250.3.192  103.03 ms  AS2914  Japan Tokyo ntt.com
 7  129.250.6.129  104.65 ms  AS2914  Japan Tokyo ntt.com
 8  129.250.2.69  111.63 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  117.103.177.106  116.02 ms  AS2914  Japan Tokyo ntt.com
10  *
11  59.43.246.253  131.85 ms  *  China Shanghai ChinaTelecom
12  59.43.130.217  139.24 ms  *  China Shanghai ChinaTelecom
13  101.95.88.54  170.43 ms  AS4812  China Shanghai ChinaTelecom
14  101.95.95.74  139.76 ms  AS4812  China Shanghai ChinaTelecom
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 14.131.125.1 (14.131.125.1), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.37 ms  *  LAN Address
 3  66.220.10.121  0.95 ms  AS6939  United States California Los Angeles he.net
 4  184.105.222.114  29.01 ms  AS6939  United States Colorado Denver he.net
 5  184.105.65.162  41.62 ms  AS6939  United States Nebraska Omaha he.net
 6  184.105.213.1  49.51 ms  AS6939  HE.NET BACKBONE he.net
 7  184.104.192.118  49.29 ms  AS6939  United States Illinois Chicago he.net
 8  *
 9  144.232.22.133  53.93 ms  AS1239  United States sprint.com
10  144.232.22.75  60.99 ms  AS1239  United States sprint.com
11  144.232.15.165  53.25 ms  AS1239  United States sprint.com
12  144.232.15.237  52.04 ms  AS1239  United States sprint.com
13  144.232.22.92  57.28 ms  AS1239  United States sprint.com
14  144.232.22.161  50.10 ms  AS1239  United States California Los Angeles sprint.com
15  144.223.54.222  52.20 ms  AS1239  United States California Los Angeles sprint.com
16  219.158.96.33  212.10 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
17  219.158.98.93  214.30 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
18  219.158.19.65  214.51 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
19  219.158.112.25  216.22 ms  AS4837  China Beijing ChinaUnicom
20  *
21  202.106.193.14  212.81 ms  AS4808  China Beijing ChinaUnicom
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.29 ms  *  LAN Address
 3  50.242.150.109  0.60 ms  AS7922  United States California Los Angeles comcast.com
 4  219.158.40.121  39.44 ms  AS4837  United States California Los Angeles ChinaUnicom
 5  219.158.98.49  219.85 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 6  219.158.96.210  209.53 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 7  219.158.8.121  170.61 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 8  219.158.19.225  187.21 ms  AS4837  China Beijing ChinaUnicom
 9  202.96.12.66  221.76 ms  AS4808  China Beijing ChinaUnicom
10  61.148.158.46  219.54 ms  AS4808  China Beijing ChinaUnicom
11  61.148.156.190  173.94 ms  AS4808  China Beijing ChinaUnicom
12  *
13  *
14  218.241.252.14  237.27 ms  AS4808,AS4847  China Beijing DRPENG
15  218.241.253.130  192.56 ms  AS4808,AS4847  China Beijing DRPENG
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.48 ms  *  LAN Address
 3  10.40.0.1  0.38 ms  *  LAN Address
 4  66.220.10.121  0.43 ms  AS6939  United States California Los Angeles he.net
 5  *
 6  202.84.253.85  12.57 ms  AS4637  United States California Los Angeles telstra.com
 7  202.84.138.189  150.16 ms  AS4637  China Hong Kong telstra.com
 8  202.84.153.26  148.72 ms  AS4637  China Hong Kong telstra.com
 9  61.8.59.38  148.52 ms  AS4637  China Hong Kong pacnet.com
10  101.4.114.181  183.32 ms  AS4538  China Beijing CHINAEDU
11  101.4.114.238  183.72 ms  AS4538  China CHINAEDU
12  101.4.118.121  186.49 ms  AS4538  China Beijing CHINAEDU
13  101.4.114.197  182.62 ms  AS4538  China Beijing CHINAEDU
14  *
15  202.112.38.158  182.87 ms  AS4538  China Beijing CHINAEDU
16  202.112.38.82  182.81 ms  AS4538  China Beijing CHINAEDU
17  202.205.109.205  182.85 ms  AS4538  China Beijing CHINAEDU


Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.33 ms  *  LAN Address
 3  69.174.22.85  0.48 ms  AS3257  United States California Los Angeles gtt.net
 4  213.200.124.170  1.09 ms  AS3257  United States California Los Angeles gtt.net
 5  154.54.10.225  0.95 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 6  154.54.42.101  12.59 ms  AS174  United States California Los Angeles cogentco.com
 7  154.54.40.146  12.20 ms  AS174  United States California San Jose cogentco.com
 8  154.54.43.149  13.07 ms  AS174  United States California cogentco.com
 9  154.54.84.30  28.87 ms  AS174  United States Oregon Portland cogentco.com
10  154.54.87.122  162.28 ms  AS174  China Hong Kong cogentco.com
11  *
12  159.226.254.5  191.96 ms  AS7497  China Beijing CSTNET
13  159.226.254.49  191.28 ms  AS7497  China Beijing CSTNET
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.40 ms  *  LAN Address
 3  10.40.0.1  0.39 ms  *  LAN Address
 4  69.174.22.85  0.54 ms  AS3257  United States California Los Angeles gtt.net
 5  213.200.115.161  147.52 ms  AS3257  Germany Hesse Frankfurt gtt.net
 6  46.33.85.26  149.83 ms  AS3257  Germany Hesse Frankfurt gtt.net
 7  223.118.18.74  148.66 ms  AS58453  United Kingdom London ChinaMobile
 8  *
 9  221.176.17.69  257.81 ms  AS9808  China Shanghai ChinaMobile
10  *
11  221.176.17.34  277.33 ms  AS9808  China Shanghai ChinaMobile
12  221.183.65.66  269.06 ms  AS9808  China Shanghai ChinaMobile
13  211.156.132.25  282.10 ms  AS7641  China Beijing chinabtn.com CATV
14  211.156.129.89  282.22 ms  AS7641  China Beijing chinabtn.com CATV
15  211.156.128.229  285.46 ms  AS7641  China Beijing chinabtn.com CATV
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Hongkong CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.160.95.218 (203.160.95.218), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.34 ms  *  LAN Address
 3  69.174.22.85  0.55 ms  AS3257  United States California Los Angeles gtt.net
 4  89.149.186.66  154.26 ms  AS3257  China Hong Kong gtt.net
 5  69.174.124.134  156.96 ms  AS3257  China Hong Kong gtt.net
 6  119.252.139.14  156.24 ms  AS10099  China Hong Kong ChinaUnicom
 7  202.77.22.89  146.86 ms  AS10099  China Hong Kong ChinaUnicom
 8  203.160.95.218  149.28 ms  AS10099  China Hong Kong ChinaUnicom


Traceroute to China, Hongkong CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.232.173 (203.215.232.173), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.44 ms  *  LAN Address
 3  10.20.0.1  8.88 ms  *  LAN Address
 4  218.30.53.113  4.97 ms  AS4134  United States California Los Angeles ctamericas.com
 5  202.97.50.226  6.45 ms  AS4134  United States California Los Angeles ChinaTelecom
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Hongkong CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.8.25.187 (203.8.25.187), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.43 ms  *  LAN Address
 3  128.241.4.161  1.18 ms  AS2914  United States California Los Angeles ntt.com
 4  129.250.3.237  0.69 ms  AS2914  United States California Los Angeles ntt.com
 5  129.250.3.192  117.21 ms  AS2914  Japan Tokyo ntt.com
 6  129.250.6.133  104.74 ms  AS2914  Japan Tokyo ntt.com
 7  129.250.2.59  110.64 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  117.103.177.106  108.94 ms  AS2914  Japan Tokyo ntt.com
 9  59.43.180.181  155.88 ms  *  China Hong Kong ChinaTelecom
10  59.43.248.150  160.33 ms  *  China Hong Kong ChinaTelecom
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Hongkong CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.142.105.9 (203.142.105.9), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  7.62 ms  *  LAN Address
 3  66.220.10.121  14.67 ms  AS6939  United States California Los Angeles he.net
 4  184.105.64.126  153.74 ms  AS6939  China Hong Kong he.net
 5  *
 6  203.142.100.161  175.71 ms  AS9231  China Hong Kong ChinaMobile
 7  203.142.100.22  152.97 ms  AS9231  China Hong Kong ChinaMobile
 8  203.142.105.9  149.19 ms  AS9231  China Hong Kong ChinaMobile


Traceroute to China, Hongkong HGC (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.188.104.30 (218.188.104.30), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.46 ms  *  LAN Address
 3  128.241.4.161  0.81 ms  AS2914  United States California Los Angeles ntt.com
 4  129.250.3.237  0.71 ms  AS2914  United States California Los Angeles ntt.com
 5  129.250.3.192  108.98 ms  AS2914  Japan Tokyo ntt.com
 6  129.250.5.23  110.03 ms  AS2914  Japan Tokyo ntt.com
 7  129.250.2.51  154.36 ms  AS2914  China Hong Kong ntt.com
 8  129.250.6.98  174.35 ms  AS2914  China Hong Kong ntt.com
 9  129.250.2.238  164.42 ms  AS2914  NTT.COM BACKBONE ntt.com
10  203.131.245.46  147.55 ms  AS2914  China Hong Kong ntt.com
11  218.189.5.56  153.09 ms  AS9304  China Hong Kong hgc.com.hk
12  218.188.104.30  167.28 ms  AS9304  China Hong Kong hgc.com.hk


Traceroute to China, Hongkong HKBN (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.6.23.239 (210.6.23.239), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.44 ms  *  LAN Address
 3  10.40.0.1  0.48 ms  *  LAN Address
 4  66.220.10.121  8.39 ms  AS6939  United States California Los Angeles he.net
 5  184.105.64.126  153.76 ms  AS6939  China Hong Kong he.net
 6  *
 7  61.244.225.62  158.53 ms  AS9269  China Hong Kong hkbn.net
 8  203.186.235.137  193.57 ms  AS9269  China Hong Kong hkbn.net
 9  203.80.215.62  155.01 ms  AS9269  China Hong Kong hkbn.net
10  210.6.23.239  158.30 ms  AS9269  China Hong Kong hkbn.net


Traceroute to China, Hongkong PCCW (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.85.125.60 (202.85.125.60), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.47 ms  *  LAN Address
 3  66.220.10.121  20.66 ms  AS6939  United States California Los Angeles he.net
 4  72.52.92.121  0.36 ms  AS6939  United States California Los Angeles he.net
 5  63.218.51.5  0.82 ms  AS3491  United States California Los Angeles pccw.com
 6  63.223.15.94  170.46 ms  AS3491  China Hong Kong pccw.com
 7  63.223.15.178  155.24 ms  AS3491  China Hong Kong pccw.com
 8  63.218.61.174  153.37 ms  AS3491  China Hong Kong pccw.com
 9  202.153.99.204  175.91 ms  AS9925  China Hong Kong pbase.net
10  203.215.244.33  166.15 ms  AS9925  China Hong Kong pbase.net
11  202.85.125.60  171.40 ms  AS9925  China Hong Kong pccw.com


Traceroute to China, Hongkong TGT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.123.76.239 (202.123.76.239), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.41 ms  *  LAN Address
 3  10.20.0.1  11.43 ms  *  LAN Address
 4  66.220.10.121  7.96 ms  AS6939  United States California Los Angeles he.net
 5  184.105.64.126  153.83 ms  AS6939  China Hong Kong he.net
 6  *
 7  203.78.72.192  153.62 ms  AS10098  China Hong Kong towngastelecom.com
 8  203.78.73.75  158.93 ms  AS10098  China Hong Kong towngastelecom.com
 9  *
10  202.123.76.239  158.92 ms  AS10098  China Hong Kong towngastelecom.com


Traceroute to China, Hongkong WTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 59.152.252.242 (59.152.252.242), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.34 ms  *  LAN Address
 3  10.20.0.1  0.39 ms  *  LAN Address
 4  206.72.211.111  156.62 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 5  115.160.187.110  156.66 ms  AS9381  China Hong Kong hkbn.net
 6  10.104.131.158  156.50 ms  *  LAN Address
 7  59.152.252.196  156.56 ms  AS9381  China Hong Kong hkbn.net
 8  59.152.252.242  156.67 ms  AS9381  China Hong Kong hkbn.net


Traceroute to Singapore, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.233.1 (203.215.233.1), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.35 ms  *  LAN Address
 3  218.30.53.113  6.46 ms  AS4134  United States California Los Angeles ctamericas.com
 4  202.97.50.82  12.21 ms  AS4134  United States California Los Angeles ChinaTelecom
 5  202.97.86.137  153.93 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Singapore, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 183.91.61.1 (183.91.61.1), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  1.04 ms  *  LAN Address
 3  66.220.10.121  18.86 ms  AS6939  United States California Los Angeles he.net
 4  184.105.64.126  153.95 ms  AS6939  China Hong Kong he.net
 5  184.105.222.102  188.18 ms  AS6939  Singapore he.net
 6  103.16.102.53  191.91 ms  AS4809  Singapore sgix.sg
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Singapore, Singtel (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.201.1.11 (118.201.1.11), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  1.13 ms  *  LAN Address
 3  10.20.0.1  0.43 ms  *  LAN Address
 4  69.174.22.85  0.45 ms  AS3257  United States California Los Angeles gtt.net
 5  46.33.80.34  27.65 ms  AS3257  United States California Los Angeles gtt.net
 6  203.208.173.21  177.03 ms  AS7473  Singapore singtel.com
 7  203.208.182.41  169.42 ms  AS7473  Singapore singtel.com
 8  203.208.158.17  182.79 ms  AS7473  Singapore singtel.com
 9  203.208.158.42  186.11 ms  AS7473  Singapore singtel.com
10  203.208.191.2  186.17 ms  AS7473  Singapore singtel.com
11  203.125.232.130  184.01 ms  AS3758  Singapore singtel.com
12  *
13  *
14  203.125.232.130  185.00 ms  AS3758  Singapore singtel.com
15  118.201.1.11  183.06 ms  AS3758  Singapore singtel.com


Traceroute to Singapore, StarHub (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.116.46.33 (203.116.46.33), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.34 ms  *  LAN Address
 3  89.221.35.146  0.41 ms  AS6762  United States California Los Angeles tisparkle.com
 4  93.186.133.8  169.74 ms  AS6762  Singapore tisparkle.com
 5  93.186.133.50  191.45 ms  AS6762  Singapore tisparkle.com
 6  *
 7  61.8.243.1  186.35 ms  AS4657  Singapore starhub.com
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Singapore, M1 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.123.8.123 (203.123.8.123), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.42 ms  *  LAN Address
 3  66.220.10.121  0.41 ms  AS6939  United States California Los Angeles he.net
 4  184.105.64.126  153.81 ms  AS6939  China Hong Kong he.net
 5  184.105.222.102  188.41 ms  AS6939  Singapore he.net
 6  103.16.102.38  186.73 ms  AS4809  Singapore sgix.sg
 7  203.211.159.118  187.73 ms  AS17547  Singapore m1.com.sg
 8  203.211.158.118  445.33 ms  AS17547  Singapore m1.com.sg
 9  203.123.8.123  194.07 ms  AS17547  Singapore m1.com.sg


Traceroute to Singapore, AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.228.0.251 (13.228.0.251), 50 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.41 ms  *  LAN Address
 3  69.174.22.85  0.41 ms  AS3257  United States California Los Angeles gtt.net
 4  69.174.23.150  1.10 ms  AS3257  United States California Los Angeles gtt.net
 5  129.250.3.122  1.00 ms  AS2914  United States California Los Angeles ntt.com
 6  129.250.2.207  1.20 ms  AS2914  United States California Los Angeles ntt.com
 7  129.250.3.192  116.23 ms  AS2914  Japan Tokyo ntt.com
 8  129.250.2.242  180.82 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.3.74  170.71 ms  AS2914  Singapore ntt.com
10  129.250.3.82  173.48 ms  AS2914  Singapore ntt.com
11  129.250.2.240  172.16 ms  AS2914  Singapore ntt.com
12  116.51.17.46  178.86 ms  AS2914  Singapore ntt.com
13  *
14  *
15  52.93.10.31  182.77 ms  *  Singapore amazon.com
16  52.93.11.63  179.04 ms  *  Singapore amazon.com
17  52.93.11.56  182.03 ms  *  Singapore amazon.com
18  52.93.8.93  182.58 ms  *  Singapore amazon.com
19  203.83.223.194  173.69 ms  AS16509,AS38895  Singapore amazon.com
20  *
21  *
22  *
23  *
24  *
25  13.228.0.251  181.87 ms  AS16509  Singapore amazon.com


Traceroute to Japan, NTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 61.213.155.84 (61.213.155.84), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.43 ms  *  LAN Address
 3  10.20.0.2  0.44 ms  *  LAN Address
 4  128.241.4.161  0.86 ms  AS2914  United States California Los Angeles ntt.com
 5  129.250.3.237  0.83 ms  AS2914  United States California Los Angeles ntt.com
 6  129.250.3.192  103.08 ms  AS2914  Japan Tokyo ntt.com
 7  129.250.3.28  116.08 ms  AS2914  Japan Tokyo ntt.com
 8  61.213.179.34  107.71 ms  AS2914  Japan Tokyo ntt.com
 9  *
10  *
11  61.213.155.84  119.89 ms  AS2914  Japan Tokyo ntt.com


Traceroute to Japan, IIJ (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.232.15.70 (202.232.15.70), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.33 ms  *  LAN Address
 3  66.220.10.121  13.60 ms  AS6939  United States California Los Angeles he.net
 4  72.52.92.121  0.49 ms  AS6939  United States California Los Angeles he.net
 5  64.71.145.42  0.54 ms  AS6939  United States California Fremont he.net
 6  58.138.88.145  113.98 ms  AS2497  Japan Tokyo iij.ad.jp
 7  58.138.101.14  107.60 ms  AS2497  Japan Tokyo iij.ad.jp
 8  210.130.142.114  140.93 ms  AS2497  Japan Tokyo iij.ad.jp
 9  202.232.15.70  106.70 ms  AS2497  Japan iij.ad.jp


Traceroute to Japan, SoftBank (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.175.32.26 (210.175.32.26), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.28 ms  *  LAN Address
 3  10.40.0.1  0.50 ms  *  LAN Address
 4  69.174.22.85  18.23 ms  AS3257  United States California Los Angeles gtt.net
 5  89.149.140.77  0.60 ms  AS3257  United States California Los Angeles gtt.net
 6  221.111.203.109  1.00 ms  AS17676  BBTEC.NET BACKBONE bbtec.net
 7  *
 8  143.90.232.241  108.16 ms  AS4725  Japan Tokyo odn.ne.jp
 9  143.90.47.9  103.92 ms  AS4725  Japan odn.ne.jp
10  143.90.26.226  113.96 ms  AS4725  Japan odn.ne.jp
11  143.90.54.30  123.09 ms  AS4725  Japan odn.ne.jp
12  210.175.32.123  100.27 ms  AS4725  Japan odn.ne.jp
13  210.175.32.26  100.09 ms  AS4725  Japan odn.ne.jp


Traceroute to Japan, KDDI (TCP Mode, Max 30 Hop)
============================================================
traceroute to 106.162.242.108 (106.162.242.108), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.36 ms  *  LAN Address
 3  89.221.35.146  0.36 ms  AS6762  United States California Los Angeles tisparkle.com
 4  124.215.192.225  0.46 ms  AS2516  KDDI.COM BACKBONE kddi.com
 5  203.181.106.173  0.51 ms  AS2516  United States California Los Angeles kddi.com
 6  106.187.12.41  108.42 ms  AS2516  Japan Tokyo kddi.com
 7  27.90.191.222  111.70 ms  AS2516  Japan kddi.com
 8  111.107.101.94  108.10 ms  AS2516  Japan kddi.com
 9  59.128.99.97  108.28 ms  AS2516  Japan kddi.com
10  106.162.242.108  105.06 ms  AS2516  Japan kddi.com


Traceroute to Japan, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.236.3 (203.215.236.3), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.48 ms  *  LAN Address
 3  10.20.0.1  0.42 ms  *  LAN Address
 4  218.30.53.113  6.85 ms  AS4134  United States California Los Angeles ctamericas.com
 5  202.97.50.230  5.95 ms  AS4134  United States California Los Angeles ChinaTelecom
 6  202.97.6.89  113.74 ms  AS4134  Japan Tokyo ChinaTelecom
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Japan, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.55.27.4 (202.55.27.4), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.30 ms  *  LAN Address
 3  66.220.10.121  1.64 ms  AS6939  United States California Los Angeles he.net
 4  184.105.64.126  153.84 ms  AS6939  China Hong Kong he.net
 5  184.105.222.102  188.66 ms  AS6939  Singapore he.net
 6  103.16.102.53  194.14 ms  AS4809  Singapore sgix.sg
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Japan, Amazon AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.112.63.251 (13.112.63.251), 50 hops max, 60 byte packets
 1  *
 2  10.92.92.2  1.53 ms  *  LAN Address
 3  66.220.10.121  17.07 ms  AS6939  United States California Los Angeles he.net
 4  184.105.65.10  107.61 ms  AS6939  Japan Tokyo he.net
 5  203.190.230.53  113.36 ms  *  Japan Tokyo equinix.com
 6  *
 7  *
 8  54.239.52.99  111.52 ms  AS16509  Japan Tokyo amazon.com
 9  *
10  *
11  *
12  *
13  52.95.31.39  113.22 ms  AS16509  Japan Tokyo amazon.com
14  52.95.31.171  114.62 ms  AS16509  Japan Tokyo amazon.com
15  52.95.31.186  111.25 ms  AS16509  Japan Tokyo amazon.com
16  52.95.31.96  118.47 ms  AS16509  Japan Tokyo amazon.com
17  54.239.52.185  112.13 ms  AS16509  Japan Tokyo amazon.com
18  *
19  *
20  *
21  *
22  *
23  *
24  13.112.63.251  114.96 ms  AS16509  Japan Tokyo amazon.com


Traceroute to South Korea, KT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.114.41.101 (210.114.41.101), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.34 ms  *  LAN Address
 3  69.174.22.85  0.45 ms  AS3257  United States California Los Angeles gtt.net
 4  89.149.181.102  0.86 ms  AS3257  United States California Los Angeles gtt.net
 5  173.205.53.250  0.76 ms  AS3257  United States gtt.net
 6  *
 7  112.174.85.181  147.35 ms  AS4766  Republic of Korea Seoul kt.com
 8  *
 9  112.174.61.98  131.72 ms  AS4766  Republic of Korea Seoul kt.com
10  112.188.245.210  132.00 ms  AS4766  Republic of Korea Seoul kt.com
11  220.90.203.2  129.96 ms  AS4766  Republic of Korea Seoul kt.com
12  211.37.137.22  134.32 ms  AS4766  Republic of Korea Seoul kt.com
13  210.114.41.101  133.79 ms  AS4766  Republic of Korea Seoul kt.com


Traceroute to South Korea, SK (TCP Mode, Max 30 Hop)
============================================================
traceroute to 175.122.253.62 (175.122.253.62), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.56 ms  *  LAN Address
 3  128.241.4.161  0.85 ms  AS2914  United States California Los Angeles ntt.com
 4  129.250.3.237  1.50 ms  AS2914  United States California Los Angeles ntt.com
 5  129.250.6.47  1.09 ms  AS2914  United States California Los Angeles ntt.com
 6  129.250.2.212  15.22 ms  AS2914  United States California Los Angeles ntt.com
 7  129.250.205.254  113.61 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  58.229.15.77  163.11 ms  AS9318  Republic of Korea skbroadband.com
 9  58.229.4.58  162.03 ms  AS9318  Republic of Korea Seoul skbroadband.com
10  *
11  *
12  175.122.253.62  272.09 ms  AS9318  Republic of Korea skbroadband.com


Traceroute to South Korea, LG (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.174.62.44 (211.174.62.44), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.30 ms  *  LAN Address
 3  128.241.4.161  0.95 ms  AS2914  United States California Los Angeles ntt.com
 4  129.250.3.237  0.77 ms  AS2914  United States California Los Angeles ntt.com
 5  129.250.6.49  0.76 ms  AS2914  United States California Los Angeles ntt.com
 6  129.250.2.212  1.12 ms  AS2914  United States California Los Angeles ntt.com
 7  168.143.229.202  0.57 ms  AS2914  United States ntt.com
 8  1.213.145.25  0.58 ms  AS3786  United States California Los Angeles uplus.co.kr
 9  1.208.175.17  134.04 ms  AS3786  Republic of Korea Seoul uplus.co.kr
10  *
11  1.208.145.238  135.50 ms  AS3786  Republic of Korea Seoul uplus.co.kr
12  210.206.56.202  133.23 ms  AS3786  Republic of Korea Seoul uplus.co.kr
13  61.111.0.130  151.72 ms  AS3786  Republic of Korea Seoul uplus.co.kr
14  61.111.0.150  137.45 ms  AS3786  Republic of Korea Seoul uplus.co.kr
15  114.108.170.50  136.40 ms  AS3786  Republic of Korea Seoul uplus.co.kr
16  211.174.62.44  134.11 ms  AS3786  Republic of Korea Seoul uplus.co.kr


Traceroute to South Korea, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.185.246.3 (218.185.246.3), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.37 ms  *  LAN Address
 3  66.220.10.121  0.43 ms  AS6939  United States California Los Angeles he.net
 4  184.105.64.126  153.80 ms  AS6939  China Hong Kong he.net
 5  184.105.222.102  188.36 ms  AS6939  Singapore he.net
 6  103.16.102.53  197.71 ms  AS4809  Singapore sgix.sg
 7  59.43.180.133  185.47 ms  *  China Guangdong Guangzhou ChinaTelecom
 8  59.43.184.25  206.21 ms  *  Republic of Korea Seoul ChinaTelecom
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to South Korea, Amazon AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.124.63.251 (13.124.63.251), 50 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.37 ms  *  LAN Address
 3  128.241.4.161  0.90 ms  AS2914  United States California Los Angeles ntt.com
 4  129.250.3.16  0.72 ms  AS2914  United States California Los Angeles ntt.com
 5  129.250.2.177  103.65 ms  AS2914  NTT.COM BACKBONE ntt.com
 6  129.250.6.129  103.38 ms  AS2914  Japan Tokyo ntt.com
 7  61.213.161.50  116.67 ms  AS2914  Japan Tokyo ntt.com
 8  *
 9  *
10  54.239.53.147  109.94 ms  AS16509  Japan Tokyo amazon.com
11  54.239.53.43  112.10 ms  AS16509  Japan Tokyo amazon.com
12  *
13  52.93.134.1  136.55 ms  *  Republic of Korea Seoul amazon.com
14  54.239.123.88  131.75 ms  AS16509  Republic of Korea Seoul amazon.com
15  52.93.248.226  135.06 ms  *  Republic of Korea Seoul amazon.com
16  52.93.248.217  133.85 ms  *  Republic of Korea Seoul amazon.com
17  54.239.123.141  135.96 ms  AS16509  Republic of Korea Seoul amazon.com
18  54.239.122.28  131.44 ms  AS16509  Republic of Korea Seoul amazon.com
19  *
20  *
21  *
22  *
23  13.124.63.251  131.31 ms  AS16509  Republic of Korea Seoul amazon.com


Traceroute to China, Taiwan Chief (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.133.242.116 (202.133.242.116), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.30 ms  *  LAN Address
 3  10.40.0.2  0.36 ms  *  LAN Address
 4  223.119.66.65  0.76 ms  AS58453  CHINAMOBILE.COM BACKBONE ChinaMobile
 5  223.120.6.17  1.34 ms  AS58453  United States California Los Angeles ChinaMobile
 6  223.120.6.86  3.75 ms  AS58453  United States California Los Angeles ChinaMobile
 7  223.118.3.186  141.60 ms  AS58453  China Hong Kong ChinaMobile
 8  223.118.4.121  163.08 ms  AS58453  China Taiwan Taipei City ChinaMobile
 9  *
10  *
11  113.21.95.72  143.87 ms  AS17408  China Taiwan Taipei City chief.com.tw
12  *
13  202.133.242.114  145.94 ms  AS17408  China Taiwan Taipei City chief.com.tw
14  202.133.242.116  144.44 ms  AS17408  China Taiwan Taipei City chief.com.tw


Traceroute to China, Taiwan APTG (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.200.69.90 (210.200.69.90), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.39 ms  *  LAN Address
 3  10.40.0.1  0.50 ms  *  LAN Address
 4  206.72.210.108  0.51 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 5  203.78.181.145  138.46 ms  AS9505  China Taiwan Taipei City twgate.net
 6  203.78.181.134  132.01 ms  AS9505  China Taiwan Taipei City twgate.net
 7  175.41.60.5  141.58 ms  AS9505  China Taiwan Taipei City twgate.net
 8  211.76.96.76  148.80 ms  AS17709  China Taiwan Taipei City aptg.com.tw
 9  211.76.100.53  152.80 ms  AS17709  China Taiwan Taipei City aptg.com.tw
10  211.76.100.61  159.91 ms  AS17709  China Taiwan Taipei City aptg.com.tw
11  210.200.80.254  144.45 ms  AS131142  China Taiwan Taipei City aptg.com.tw
12  210.200.80.254  147.27 ms  AS131142  China Taiwan Taipei City aptg.com.tw
13  210.200.69.90  153.58 ms  AS131142  China Taiwan Taipei City aptg.com.tw


Traceroute to China, Taiwan CHT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.75.129.162 (203.75.129.162), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.63 ms  *  LAN Address
 3  69.174.22.85  6.55 ms  AS3257  United States California Los Angeles gtt.net
 4  213.200.124.170  0.97 ms  AS3257  United States California Los Angeles gtt.net
 5  154.54.10.225  0.62 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 6  154.54.42.101  0.92 ms  AS174  United States California Los Angeles cogentco.com
 7  154.54.3.70  0.78 ms  AS174  United States California Los Angeles cogentco.com
 8  38.19.140.82  0.79 ms  AS174  United States California Los Angeles cogentco.com
 9  *
10  220.128.6.86  132.34 ms  AS3462  China Taiwan Taipei City cht.com.tw
11  220.128.11.150  141.92 ms  AS3462  China Taiwan Taipei City cht.com.tw
12  220.128.14.94  139.26 ms  AS3462  China Taiwan Taipei City cht.com.tw
13  211.22.229.45  142.43 ms  AS3462  China Taiwan Taipei City cht.com.tw
14  211.22.229.45  142.36 ms  AS3462  China Taiwan Taipei City cht.com.tw
15  *
16  203.75.129.162  141.76 ms  AS3462  China Taiwan Taipei City cht.com.tw


Traceroute to China, Taiwan TFN (TCP Mode, Max 30 Hop)
============================================================
traceroute to 219.87.66.3 (219.87.66.3), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.48 ms  *  LAN Address
 3  66.220.10.121  0.40 ms  AS6939  United States California Los Angeles he.net
 4  184.105.81.101  8.93 ms  AS6939  United States California Palo Alto he.net
 5  *
 6  60.199.20.33  140.16 ms  AS9924  China Taiwan twmbroadband.com
 7  60.199.4.150  142.96 ms  AS9924  China Taiwan Taipei City twmbroadband.com
 8  60.199.3.122  134.06 ms  AS9924  China Taiwan Taipei City twmbroadband.com
 9  60.199.16.62  146.60 ms  AS9924  China Taiwan Taipei City twmbroadband.com
10  219.87.66.3  134.59 ms  AS9924  China Taiwan Taipei City twmbroadband.com


Traceroute to China,Taiwan FET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.73.144.38 (211.73.144.38), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.28 ms  *  LAN Address
 3  10.20.0.2  0.34 ms  *  LAN Address
 4  128.241.4.161  0.90 ms  AS2914  United States California Los Angeles ntt.com
 5  129.250.3.237  0.74 ms  AS2914  United States California Los Angeles ntt.com
 6  129.250.2.206  1.82 ms  AS2914  United States California Los Angeles ntt.com
 7  129.250.2.177  103.78 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.4.182  141.01 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  199.245.16.34  140.44 ms  AS2914  China Taiwan Taipei City ntt.com
10  192.72.155.113  144.44 ms  AS4780  China Taiwan Taipei City fetnet.net
11  192.72.155.98  143.93 ms  AS4780  China Taiwan Taipei City fetnet.net
12  *
13  *
14  *
15  211.73.144.38  153.74 ms  AS9674  China Taiwan fetnet.net


Traceroute to China, Taiwan KBT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 61.63.0.102 (61.63.0.102), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.47 ms  *  LAN Address
 3  66.220.10.121  0.39 ms  AS6939  United States California Los Angeles he.net
 4  184.105.64.126  153.84 ms  AS6939  China Hong Kong he.net
 5  *
 6  *
 7  *
 8  203.133.92.101  157.63 ms  AS9416  China Taiwan kbtelecom.net
 9  203.187.9.2  155.66 ms  AS9416  China Taiwan Taipei City kbtelecom.net
10  *
11  203.187.26.78  151.50 ms  AS9416  China Taiwan Taipei City kbtelecom.net
12  58.86.0.94  155.47 ms  AS18042  China Taiwan Taipei City kbtelecom.net
13  58.86.0.26  164.04 ms  AS18042  China Taiwan Taipei City kbtelecom.net
14  61.63.0.102  164.60 ms  AS18042  China Taiwan Taipei City kbtelecom.net


Traceroute to China, Taiwan TAIFO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 103.31.196.203 (103.31.196.203), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.40 ms  *  LAN Address
 3  66.220.10.121  0.43 ms  AS6939  United States California Los Angeles he.net
 4  72.52.72.118  0.42 ms  AS6939  United States California Los Angeles he.net
 5  85.95.25.18  133.77 ms  AS15412  Japan Tokyo globalcloudxchange.com
 6  62.216.128.94  135.34 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
 7  62.216.136.141  140.81 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
 8  80.77.2.198  127.79 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
 9  *
10  113.21.95.123  138.59 ms  AS17408  China Taiwan Taipei City chief.com.tw
11  *
12  103.31.197.122  134.78 ms  AS131584  China Taiwan Taipei City taifo.com.tw
13  *
14  103.31.197.70  129.57 ms  AS131584  China Taiwan Taipei City taifo.com.tw
15  103.31.196.203  127.97 ms  AS131584  China Taiwan Taipei City taifo.com.tw


Traceroute to United States, Los Angeles China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  2.28 ms  *  LAN Address
 3  10.20.0.1  0.49 ms  *  LAN Address
 4  218.30.53.113  8.35 ms  AS4134  United States California Los Angeles ctamericas.com
 5  202.97.50.226  7.63 ms  AS4134  United States California Los Angeles ChinaTelecom
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to United States, Los Angeles China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.102.252.100 (66.102.252.100), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.31 ms  *  LAN Address
 3  *
 4  *
 5  *
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to United States, Los Angeles PCCW (TCP Mode, Max 30 Hop)
============================================================
traceroute to 63.218.42.81 (63.218.42.81), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  2.32 ms  *  LAN Address
 3  38.142.230.9  1.31 ms  AS174  United States California Los Angeles cogentco.com
 4  154.54.25.150  0.88 ms  AS174  United States California Los Angeles cogentco.com
 5  *
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to United States, Los Angeles HE (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.220.18.42 (66.220.18.42), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  1.41 ms  *  LAN Address
 3  10.40.0.2  0.40 ms  *  LAN Address
 4  128.241.4.161  1.04 ms  AS2914  United States California Los Angeles ntt.com
 5  213.248.103.170  0.84 ms  AS1299  TELIA.COM BACKBONE telia.com
 6  62.115.181.194  0.48 ms  AS1299  United States California Los Angeles telia.com
 7  72.52.92.121  0.50 ms  AS6939  United States California Los Angeles he.net
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to United States, Los Angeles GTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 173.205.77.98 (173.205.77.98), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.44 ms  *  LAN Address
 3  69.174.22.85  0.50 ms  AS3257  United States California Los Angeles gtt.net
 4  89.149.187.114  1.11 ms  AS3257  United States California Los Angeles gtt.net
 5  173.205.77.98  0.86 ms  AS3257  United States California Los Angeles gtt.net


Traceroute to United States, San Fransico ATT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 12.169.215.33 (12.169.215.33), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.37 ms  *  LAN Address
 3  69.174.22.85  12.21 ms  AS3257  United States California Los Angeles gtt.net
 4  89.149.130.90  5.34 ms  AS3257  United States California Los Angeles gtt.net
 5  199.229.231.30  4.19 ms  AS3257  United States California Los Angeles gtt.net
 6  12.122.129.106  12.98 ms  AS7018  United States California Los Angeles att.com
 7  12.122.28.122  13.74 ms  AS7018  United States California San Francisco att.com
 8  12.122.149.85  12.47 ms  AS7018  United States California att.com
 9  12.244.156.30  19.26 ms  AS7018  United States California att.com
10  12.169.215.33  15.66 ms  AS7018  United States California att.com


Traceroute to United States, New York TATA (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.198.181.100 (66.198.181.100), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  7.76 ms  *  LAN Address
 3  38.142.230.9  0.71 ms  AS174  United States California Los Angeles cogentco.com
 4  154.54.3.70  0.76 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.11.194  0.54 ms  AS174
 6  64.86.252.65  66.44 ms  AS6453  United States California Los Angeles tatacommunications.com
 7  216.6.87.110  66.83 ms  AS6453  United States Virginia Ashburn tatacommunications.com
 8  216.6.87.43  66.47 ms  AS6453  United States New Jersey Newark tatacommunications.com
 9  64.86.62.25  66.35 ms  AS6453  United States New York New York City tatacommunications.com
10  209.58.75.217  66.39 ms  AS6453  United States New York New York City tatacommunications.com
11  209.58.75.198  66.10 ms  AS6453  United States New York New York City tatacommunications.com
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to United States, San Jose China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.35 ms  *  LAN Address
 3  10.20.0.1  0.52 ms  *  LAN Address
 4  218.30.53.113  7.27 ms  AS4134  United States California Los Angeles ctamericas.com
 5  202.97.50.226  6.15 ms  AS4134  United States California Los Angeles ChinaTelecom
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to United States, San Jose NTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 23.11.26.62 (23.11.26.62), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.93 ms  *  LAN Address
 3  10.20.0.1  0.54 ms  *  LAN Address
 4  69.174.22.85  5.00 ms  AS3257  United States California Los Angeles gtt.net
 5  69.174.23.150  0.99 ms  AS3257  United States California Los Angeles gtt.net
 6  129.250.4.106  0.84 ms  AS2914  United States California Los Angeles ntt.com
 7  129.250.4.150  9.54 ms  AS2914  United States California San Jose ntt.com
 8  129.250.3.27  9.94 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.48  8.35 ms  AS2914  NTT.COM BACKBONE ntt.com
10  23.11.26.62  10.51 ms  AS2914  United States California San Jose akamai.com


Traceroute to United States, Fremont HE (TCP Mode, Max 30 Hop)
============================================================
traceroute to 72.52.104.74 (72.52.104.74), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.52 ms  *  LAN Address
 3  10.20.0.2  0.36 ms  *  LAN Address
 4  223.119.66.65  0.96 ms  AS58453  CHINAMOBILE.COM BACKBONE ChinaMobile
 5  223.120.6.17  0.91 ms  AS58453  United States California Los Angeles ChinaMobile
 6  223.120.6.210  9.37 ms  AS58453  United States California San Jose ChinaMobile
 7  223.120.6.70  9.12 ms  AS58453  United States California San Jose ChinaMobile
 8  216.218.132.101  9.10 ms  AS6939  United States California Fremont he.net
 9  184.105.213.158  26.60 ms  AS6939  United States California Fremont he.net
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to United States, Las Vegas Level3 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 205.216.62.38 (205.216.62.38), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.36 ms  *  LAN Address
 3  38.142.230.9  0.72 ms  AS174  United States California Los Angeles cogentco.com
 4  154.54.3.70  0.86 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.12.66  0.61 ms  AS174  United States California Los Angeles cogentco.com
 6  208.168.142.98  36.71 ms  AS3561  United States Texas centurylink.com
 7  216.34.172.42  34.99 ms  AS3561  United States Texas Dallas centurylink.com
 8  216.34.164.98  87.83 ms  AS3561  United States Texas Dallas centurylink.com
 9  205.216.7.204  34.83 ms  AS3561  United States Texas Dallas centurylink.com
10  *
11  205.216.62.38  52.04 ms  AS3561  United States Texas Dallas centurylink.com


Traceroute to United States, San Jose ZAYO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 64.125.191.31 (64.125.191.31), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  1.33 ms  *  LAN Address
 3  66.220.10.121  40.29 ms  AS6939  United States California Los Angeles he.net
 4  72.52.92.121  0.41 ms  AS6939  United States California Los Angeles he.net
 5  216.218.195.66  0.67 ms  AS6939  United States California Los Angeles he.net
 6  64.125.28.230  9.05 ms  AS6461  United States California Los Angeles zayo.com
 7  64.125.28.144  10.22 ms  AS6461  United States California San Jose zayo.com
 8  64.125.27.63  8.44 ms  AS6461  United States California San Jose zayo.com
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to United States, Ashburn Cogentco (TCP Mode, Max 30 Hop)
============================================================
traceroute to 149.127.109.166 (149.127.109.166), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.34 ms  *  LAN Address
 3  38.142.230.9  1.01 ms  AS174  United States California Los Angeles cogentco.com
 4  154.54.45.161  12.63 ms  AS174  United States Arizona Phoenix cogentco.com
 5  154.54.42.78  33.38 ms  AS174  United States Texas El Paso cogentco.com
 6  154.54.30.161  34.44 ms  AS174  United States Texas Houston cogentco.com
 7  154.54.28.129  47.51 ms  AS174  United States Georgia Atlanta cogentco.com
 8  154.54.24.221  58.43 ms  AS174  United States Virginia Arlington cogentco.com
 9  154.54.46.194  59.89 ms  AS174  United States Virginia Herndon cogentco.com
10  38.140.164.58  59.74 ms  AS174  United States Virginia Herndon cogentco.com
11  149.127.109.2  59.49 ms  AS174  United States Virginia Ashburn cogentco.com
12  149.127.109.166  59.33 ms  AS174  United States Virginia Ashburn cogentco.com


Traceroute to German, Telekom (TCP Mode, Max 30 Hop)
============================================================
traceroute to 80.146.191.1 (80.146.191.1), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.35 ms  *  LAN Address
 3  223.119.66.65  0.67 ms  AS58453  CHINAMOBILE.COM BACKBONE ChinaMobile
 4  223.120.6.17  0.90 ms  AS58453  United States California Los Angeles ChinaMobile
 5  223.120.6.14  55.22 ms  AS58453  United States ChinaMobile
 6  223.120.10.122  153.99 ms  AS58453  Germany Hesse Frankfurt ChinaMobile
 7  213.254.225.169  148.91 ms  AS3257  Germany Hesse Frankfurt gtt.net
 8  89.149.180.45  149.72 ms  AS3257  Germany Hesse Frankfurt gtt.net
 9  *
10  91.23.215.109  161.93 ms  AS3320  Germany North Rhine-Westphalia telekom.de
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to German, Frankfurt O2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 82.113.108.25 (82.113.108.25), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.71 ms  *  LAN Address
 3  69.174.22.85  0.54 ms  AS3257  United States California Los Angeles gtt.net
 4  213.254.230.210  34.60 ms  AS3257  United States Texas Dallas gtt.net
 5  173.205.48.50  36.38 ms  AS3257  United States Texas Dallas gtt.net
 6  94.142.125.74  59.25 ms  AS12956  United States Virginia Ashburn telefonica.com
 7  213.140.33.104  164.53 ms  AS12956  France Ile-de-France Paris telefonica.com
 8  176.52.248.88  157.58 ms  AS12956  Germany telefonica.com
 9  213.140.51.61  165.01 ms  AS12956  Germany telefonica.com
10  62.53.9.55  154.70 ms  AS6805  Germany telefonica.de
11  62.53.0.28  166.99 ms  AS6805  Germany telefonica.de
12  62.53.0.5  155.91 ms  AS6805  Germany telefonica.de
13  62.53.28.149  161.58 ms  AS6805  Germany telefonica.de
14  62.53.14.105  157.96 ms  AS6805  Germany telefonica.de
15  62.53.2.63  183.99 ms  AS6805  Germany telefonica.de
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to German, Frankfurt Vodafone (TCP Mode, Max 50 Hop)
============================================================
traceroute to 139.7.146.11 (139.7.146.11), 50 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.38 ms  *  LAN Address
 3  10.40.0.1  0.35 ms  *  LAN Address
 4  66.220.10.121  0.51 ms  AS6939  United States California Los Angeles he.net
 5  72.52.92.121  16.45 ms  AS6939  United States California Los Angeles he.net
 6  184.105.80.201  54.85 ms  AS6939  United States Virginia Ashburn he.net
 7  184.105.223.166  67.78 ms  AS6939  United States New York New York City he.net
 8  72.52.92.165  146.40 ms  AS6939  United Kingdom London he.net
 9  184.105.80.38  140.88 ms  AS6939  Germany Hesse Frankfurt he.net
10  *
11  *
12  145.253.5.57  141.03 ms  AS3209  Germany vodafone.de
13  92.79.230.2  141.10 ms  AS3209  Germany vodafone.de
14  139.7.148.84  141.93 ms  AS3209  Germany vodafone.de
15  *
16  *
17  *
18  *
19  139.7.146.11  156.91 ms  AS3209  Germany vodafone.de


Traceroute to German, Frankfurt China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.85.205.101 (118.85.205.101), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.31 ms  *  LAN Address
 3  218.30.53.113  6.70 ms  AS4134  United States California Los Angeles ctamericas.com
 4  202.97.92.166  4.99 ms  AS4134  United States California Los Angeles ChinaTelecom
 5  202.97.49.165  62.04 ms  AS4134  United States ChinaTelecom
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to German, Frankfurt China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 5.10.138.33 (5.10.138.33), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.32 ms  *  LAN Address
 3  38.142.230.9  1.09 ms  AS174  United States California Los Angeles cogentco.com
 4  154.54.3.70  0.96 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.10.10  0.70 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 6  62.115.137.38  55.10 ms  AS1299  TELIA.COM BACKBONE telia.com
 7  *
 8  62.115.112.245  135.52 ms  AS1299  United Kingdom London telia.com
 9  62.115.134.135  137.62 ms  AS1299  United Kingdom London telia.com
10  80.239.193.226  135.93 ms  AS1299  TELIA.COM BACKBONE telia.com
11  59.43.180.113  147.86 ms  *  Europe Regions ChinaTelecom
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to German, Frankfurt GTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 213.200.65.70 (213.200.65.70), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.45 ms  *  LAN Address
 3  10.40.0.1  0.40 ms  *  LAN Address
 4  69.174.22.85  1.16 ms  AS3257  United States California Los Angeles gtt.net
 5  213.200.114.173  149.61 ms  AS3257  GTT.NET BACKBONE gtt.net
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to German, FrankfurtCogentco (TCP Mode, Max 30 Hop)
============================================================
traceroute to 212.20.150.5 (212.20.150.5), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  3.71 ms  *  LAN Address
 3  10.40.0.2  1.25 ms  *  LAN Address
 4  38.142.230.9  0.78 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.45.161  12.50 ms  AS174  United States Arizona Phoenix cogentco.com
 6  154.54.42.78  33.50 ms  AS174  United States Texas El Paso cogentco.com
 7  154.54.30.161  34.62 ms  AS174  United States Texas Houston cogentco.com
 8  154.54.28.129  46.31 ms  AS174  United States Georgia Atlanta cogentco.com
 9  154.54.24.221  58.93 ms  AS174  United States Virginia Arlington cogentco.com
10  154.54.40.109  63.79 ms  AS174  United States New York New York City cogentco.com
11  154.54.30.186  140.48 ms  AS174  United Kingdom London cogentco.com
12  154.54.56.94  151.72 ms  AS174  Netherlands North Holland Amsterdam cogentco.com
13  130.117.0.142  151.92 ms  AS174  Germany Hesse Frankfurt cogentco.com
14  130.117.48.94  150.85 ms  AS174  Germany Hesse Frankfurt cogentco.com
15  212.20.150.5  150.59 ms  AS174  Germany Hesse Frankfurt cogentco.com


Traceroute to United Kingdom, Vodafone (TCP Mode, Max 30 Hop)
============================================================
traceroute to 194.62.232.211 (194.62.232.211), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.35 ms  *  LAN Address
 3  69.174.22.85  0.47 ms  AS3257  United States California Los Angeles gtt.net
 4  195.2.14.45  0.46 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
 5  195.2.2.154  127.97 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
 6  195.2.24.246  127.89 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
 7  195.2.24.33  127.35 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to United Kingdom， BT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 213.121.43.24 (213.121.43.24), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.46 ms  *  LAN Address
 3  10.20.0.1  0.53 ms  *  LAN Address
 4  69.174.22.85  9.82 ms  AS3257  United States California Los Angeles gtt.net
 5  89.149.139.5  157.44 ms  AS3257  United Kingdom London gtt.net
 6  166.49.211.37  130.40 ms  AS5400  United Kingdom bt.com
 7  166.49.128.33  130.56 ms  AS5400  United Kingdom bt.com
 8  194.72.16.133  138.31 ms  AS2856  United Kingdom bt.com
 9  109.159.249.50  138.33 ms  AS2856  United Kingdom bt.com
10  194.72.7.69  137.80 ms  AS2856  United Kingdom London bt.com
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to United Kingdom, London TATA (TCP Mode, Max 30 Hop)
============================================================
traceroute to 80.231.131.34 (80.231.131.34), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.35 ms  *  LAN Address
 3  38.142.230.9  0.72 ms  AS174  United States California Los Angeles cogentco.com
 4  154.54.3.70  0.67 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.11.194  1.17 ms  AS174
 6  206.82.129.19  0.63 ms  AS6453  United States California Los Angeles tatacommunications.com
 7  66.110.59.9  13.33 ms  AS6453  United States California Los Angeles tatacommunications.com
 8  63.243.251.2  12.75 ms  AS6453  United States California Santa Clara tatacommunications.com
 9  63.243.205.74  11.66 ms  AS6453  United States California San Jose tatacommunications.com
10  63.243.128.28  70.36 ms  AS6453  United States New York New York City tatacommunications.com
11  80.231.130.120  139.25 ms  AS6453  United Kingdom London tatacommunications.com
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Russia, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.85.205.180 (118.85.205.180), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.33 ms  *  LAN Address
 3  10.20.0.1  0.63 ms  *  LAN Address
 4  218.30.53.113  4.29 ms  AS4134  United States California Los Angeles ctamericas.com
 5  202.97.50.234  2.09 ms  AS4134  United States California Los Angeles ChinaTelecom
 6  202.97.41.49  149.31 ms  AS4134  China Beijing ChinaTelecom
 7  202.97.30.226  278.53 ms  AS4134  Russian Federation Primorsky Krai Vladivostok ChinaTelecom
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Russia, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 185.75.173.17 (185.75.173.17), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  0.36 ms  *  LAN Address
 3  69.174.22.85  37.38 ms  AS3257  United States California Los Angeles gtt.net
 4  213.200.124.170  1.56 ms  AS3257  United States California Los Angeles gtt.net
 5  80.239.160.154  0.63 ms  AS1299  United States California Los Angeles telia.com
 6  62.115.114.87  54.87 ms  AS1299  United States Virginia Ashburn telia.com
 7  *
 8  62.115.113.21  134.47 ms  AS1299  United Kingdom London telia.com
 9  62.115.134.139  137.34 ms  AS1299  United Kingdom London telia.com
10  80.239.193.226  134.09 ms  AS1299  TELIA.COM BACKBONE telia.com
11  59.43.180.113  147.92 ms  *  Europe Regions ChinaTelecom
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Russia, Moscow RT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 87.226.162.77 (87.226.162.77), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.34 ms  *  LAN Address
 3  89.221.35.146  16.90 ms  AS6762  United States California Los Angeles tisparkle.com
 4  195.22.211.199  156.23 ms  AS6762  Germany Hesse Frankfurt tisparkle.com
 5  195.22.214.27  148.47 ms  AS6762  Germany Hesse Frankfurt tisparkle.com
 6  213.59.211.241  193.51 ms  AS12389  Russian Federation Moscow rt.ru
 7  87.226.140.2  198.32 ms  AS12389  Russian Federation Moscow rt.ru
 8  *
 9  87.226.162.77  193.85 ms  AS12389  Russian Federation Moscow rt.ru


Traceroute to Russia, Moscow TTK (TCP Mode, Max 30 Hop)
============================================================
traceroute to 217.150.32.2 (217.150.32.2), 30 hops max, 60 byte packets
 1  *
 2  10.30.10.1  0.37 ms  *  LAN Address
 3  38.142.230.9  0.67 ms  AS174  United States California Los Angeles cogentco.com
 4  154.54.45.161  12.60 ms  AS174  United States Arizona Phoenix cogentco.com
 5  154.54.42.78  33.43 ms  AS174  United States Texas El Paso cogentco.com
 6  154.54.30.161  34.10 ms  AS174  United States Texas Houston cogentco.com
 7  154.54.28.69  46.38 ms  AS174
 8  154.54.24.221  59.03 ms  AS174  United States Virginia Arlington cogentco.com
 9  154.54.40.105  64.20 ms  AS174  United States New York New York City cogentco.com
10  154.54.42.86  140.69 ms  AS174  United Kingdom London cogentco.com
11  154.54.56.94  153.61 ms  AS174  Netherlands North Holland Amsterdam cogentco.com
12  130.117.0.142  153.20 ms  AS174  Germany Hesse Frankfurt cogentco.com
13  154.54.56.190  153.44 ms  AS174  Germany Hesse Frankfurt cogentco.com
14  154.25.9.46  149.69 ms  AS174  Germany Hesse Frankfurt cogentco.com
15  149.14.68.166  154.76 ms  AS174  Germany Hesse Frankfurt cogentco.com
16  *
17  62.33.207.217  196.10 ms  AS20485  Russian Federation Moscow ttk.ru
18  80.237.46.177  191.30 ms  AS20485  Russian Federation Moscow ttk.ru
19  217.150.32.243  186.76 ms  AS20485  Russian Federation Moscow ttk.ru
20  *
21  217.150.32.2  190.52 ms  AS20485  Russian Federation Moscow ttk.ru


Traceroute to Russia, Moscow MTS (TCP Mode, Max 30 Hop)
============================================================
traceroute to 195.34.32.71 (195.34.32.71), 30 hops max, 60 byte packets
 1  *
 2  10.92.92.2  1.50 ms  *  LAN Address
 3  66.220.10.121  1.80 ms  AS6939  United States California Los Angeles he.net
 4  206.72.210.180  0.72 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 5  212.188.28.129  190.98 ms  AS8359  MTS.RU BACKBONE mts.ru
 6  195.34.53.141  177.92 ms  AS8359  Russian Federation mts.ru
 7  195.34.53.225  144.75 ms  AS8359  Russian Federation mts.ru
 8  212.188.42.102  144.87 ms  AS8359  Russian Federation mts.ru
 9  195.34.53.5  185.35 ms  AS8359  Russian Federation Moscow mts.ru
10  195.34.53.213  178.16 ms  AS8359  Russian Federation Moscow mts.ru
11  195.34.53.213  182.52 ms  AS8359  Russian Federation Moscow mts.ru
12  195.34.32.71  180.81 ms  AS8359  Russian Federation Moscow mts.ru


 -&amp;gt; Traceroute Test (IPV6)

Traceroute to China, Beijing CU IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2408:80f0:4100:2005::3 (2408:80f0:4100:2005::3), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.63 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  16.04 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:668:0:3:ffff:2:0:7a9  0.49 ms  AS3257  GTT.NET BACKBONE gtt.net
 4  2001:668:0:2:ffff:0:5995:bb72  14.85 ms  AS3257  GTT.NET BACKBONE gtt.net
 5  2001:668:0:3:ffff:0:adcd:349a  1.20 ms  AS3257  GTT.NET BACKBONE gtt.net
 6  2600:0:2:1239:144:232:0:152  4.92 ms  AS1239  United States sprint.com
 7  2600:0:2:1239:144:232:17:39  6.88 ms  AS1239  United States sprint.com
 8  2600:0:2:1239:144:232:17:55  1.33 ms  AS1239  United States sprint.com
 9  2600:6:2000:6::41  5.40 ms  AS1239  United States sprint.com
10  2408:8000:2:6c7::  147.30 ms  AS4837  China ChinaUnicom
11  *
12  2408:8000:2:685::  185.38 ms  AS4837  China ChinaUnicom
13  2408:8000:1100:318::3  184.13 ms  AS4808  China Beijing ChinaUnicom
14  2408:8000:1100:2414::3  188.36 ms  AS4808  China Beijing ChinaUnicom
15  2408:8000:1f10:3d03::3  195.02 ms  AS4808  China Beijing ChinaUnicom
16  2408:80f0:4100:2006::1  194.14 ms  AS4808  China Beijing ChinaUnicom
17  2408:80f0:4100:2006::b  194.06 ms  AS4808  China Beijing ChinaUnicom
18  *
19  2408:80f0:4100:2005::3  191.60 ms  AS4808  China Beijing ChinaUnicom

Traceroute to China, Beijing CT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2400:da00:2::29 (2400:da00:2::29), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.52 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.54 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:504:13::1a  0.39 ms  *  United States California Los Angeles coresite.com
 4  *
 5  240e:0:a::cb:5ca0  269.95 ms  AS4134  China ChinaTelecom
 6  240e:0:a::cb:318c  244.42 ms  AS4134  China ChinaTelecom
 7  240e:0:a::c9:2198  234.89 ms  AS4134  China ChinaTelecom
 8  240e:0:a::c9:1cb4  249.72 ms  AS4134  China ChinaTelecom
 9  240e::21:61:4a03  338.06 ms  AS4134  China ChinaTelecom
10  240e::61:61:6202  344.18 ms  AS4134  China ChinaTelecom
11  *
12  *
13  240e:e9:5800:1::3  370.38 ms  AS4134  China ChinaTelecom
14  2400:da00::b63d:fd5c  367.20 ms  AS38365  China Beijing baidu.com ChinaTelecom
15  2400:da00:41a::b63d:fe45  367.69 ms  AS38365  China Beijing baidu.com ChinaTelecom
16  *
17  *
18  *
19  *
20  2400:da00:2::29  367.97 ms  AS38365  China Beijing baidu.com ChinaTelecom

Traceroute to China, Beijing CM IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2409:8089:1020:50ff:1000::fd01 (2409:8089:1020:50ff:1000::fd01), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.57 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  1.65 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:504:13::1a  0.52 ms  *  United States California Los Angeles coresite.com
 4  2001:504:13::219  159.78 ms  *  United States California Los Angeles coresite.com
 5  2402:4f00:1000:100::b1  159.33 ms  AS58453  China Hong Kong ChinaMobile
 6  2402:4f00:1000:100::3da  186.28 ms  AS58453  China Hong Kong ChinaMobile
 7  2409:8080:0:4:2f1:291::  268.51 ms  AS9808  China ChinaMobile
 8  2409:8080:0:1:2c1:2f1::  302.16 ms  AS9808  China ChinaMobile
 9  2409:8080:0:1:1103:2c1::  320.50 ms  AS9808  China ChinaMobile
10  2409:8080:0:1:103:203::  328.38 ms  AS9808  China ChinaMobile
11  2409:8080:0:2:103:1b1:0:1  327.18 ms  AS9808  China ChinaMobile
12  2409:8089:1020:50ff:1000::fd01  330.90 ms  AS9808  China Beijing ChinaMobile

Traceroute to China, Shanghai CU IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2408:8000:9000:20e6::b7 (2408:8000:9000:20e6::b7), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.62 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.53 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:668:0:3:ffff:2:0:7a9  0.40 ms  AS3257  GTT.NET BACKBONE gtt.net
 4  2001:668:0:2:ffff:0:5995:bb72  19.67 ms  AS3257  GTT.NET BACKBONE gtt.net
 5  2001:668:0:3:ffff:0:adcd:349a  1.14 ms  AS3257  GTT.NET BACKBONE gtt.net
 6  2600:0:2:1239:144:232:0:152  0.86 ms  AS1239  United States sprint.com
 7  2600:0:2:1239:144:232:17:39  3.54 ms  AS1239  United States sprint.com
 8  2600:0:2:1239:144:232:17:55  1.26 ms  AS1239  United States sprint.com
 9  2600:6:2000:6::41  5.83 ms  AS1239  United States sprint.com
10  2408:8000:2:2ea::  150.94 ms  AS4837  China ChinaUnicom
11  *
12  2408:8000:2:685::  196.90 ms  AS4837  China ChinaUnicom
13  2408:8000:2:38e::1  230.18 ms  AS4837  China ChinaUnicom
14  2408:8000:9000:20e6::b7  205.24 ms  AS17621  China Shanghai ChinaUnicom

Traceroute to China, Shanghai CT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 240e:18:10:a01::1 (240e:18:10:a01::1), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  1.91 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.47 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:504:13::1a  1.23 ms  *  United States California Los Angeles coresite.com
 4  *
 5  240e:0:a::cb:3ae5  253.93 ms  AS4134  China ChinaTelecom
 6  240e:0:a::cb:3aac  233.39 ms  AS4134  China ChinaTelecom
 7  240e:0:a::c9:cc5  238.03 ms  AS4134  China ChinaTelecom
 8  *
 9  240e:18:1:4014::89  266.29 ms  AS4134,AS4812  China Shanghai ChinaTelecom
10  *
11  240e:18:10:a01::1  248.73 ms  AS4134,AS4812  China Shanghai ChinaTelecom

Traceroute to China, Shanghai CM IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2409:801e:5c03:2000::207 (2409:801e:5c03:2000::207), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.80 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.40 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:504:13::1a  0.50 ms  *  United States California Los Angeles coresite.com
 4  2001:504:13::219  164.68 ms  *  United States California Los Angeles coresite.com
 5  2402:4f00:1000:100::b1  159.69 ms  AS58453  China Hong Kong ChinaMobile
 6  2402:4f00:1000:100::3da  185.34 ms  AS58453  China Hong Kong ChinaMobile
 7  2409:8080:0:4:2f1:291::  269.38 ms  AS9808  China ChinaMobile
 8  2409:8080:0:1:2c1:2f1::  312.82 ms  AS9808  China ChinaMobile
 9  2409:8080:0:1:201:2c1::  315.22 ms  AS9808  China ChinaMobile
10  *
11  2409:801e:f0:1::b  315.80 ms  AS9808,AS24400  China Shanghai ChinaMobile
12  *
13  *
14  2409:801e:5c03:2000::207  315.55 ms  AS9808,AS24400  China Shanghai ChinaMobile

Traceroute to China, Guangzhou CU IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2408:8001:3011:310::3 (2408:8001:3011:310::3), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  1.57 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.49 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:668:0:3:ffff:2:0:7a9  0.62 ms  AS3257  GTT.NET BACKBONE gtt.net
 4  2001:668:0:2:ffff:0:5995:bb72  6.41 ms  AS3257  GTT.NET BACKBONE gtt.net
 5  2001:668:0:3:ffff:0:adcd:349a  2.25 ms  AS3257  GTT.NET BACKBONE gtt.net
 6  2600:0:2:1239:144:232:0:152  4.37 ms  AS1239  United States sprint.com
 7  2600:0:2:1239:144:232:17:41  3.44 ms  AS1239  United States sprint.com
 8  2600:0:2:1239:144:232:17:59  1.24 ms  AS1239  United States sprint.com
 9  2600:6:2000:6::41  2.98 ms  AS1239  United States sprint.com
10  2408:8000:2:6bf::  148.98 ms  AS4837  China ChinaUnicom
11  *
12  2408:8000:2:685::  186.04 ms  AS4837  China ChinaUnicom
13  2408:8000:2:388::1  218.45 ms  AS4837  China ChinaUnicom
14  2408:8000:2:498::1  232.26 ms  AS4837  China ChinaUnicom
15  2408:8001:3011:5b::1  242.11 ms  AS17816,AS17622  China Guangdong Guangzhou ChinaUnicom
16  2408:8001:3011:310::3  244.17 ms  AS17816,AS17622  China Guangdong Guangzhou ChinaUnicom

Traceroute to China, Guangzhou CT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 240e:ff:e02c:1:21:: (240e:ff:e02c:1:21::), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.86 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.45 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:504:13::1a  1.66 ms  *  United States California Los Angeles coresite.com
 4  *
 5  240e:0:a::cb:3ae1  258.81 ms  AS4134  China ChinaTelecom
 6  240e:0:a::cb:3208  246.69 ms  AS4134  China ChinaTelecom
 7  240e:0:a::c9:5a35  225.42 ms  AS4134  China ChinaTelecom
 8  *
 9  *
10  240e:1f:5000:28::3  273.66 ms  AS4134,AS58466  China Guangdong Guangzhou ChinaTelecom
11  240e:1f:5807:4::3  277.81 ms  AS4134,AS58466  China Guangdong Guangzhou ChinaTelecom
12  240e:ff:e02c::1  279.76 ms  AS4134,AS58466  China Guangdong Guangzhou ChinaTelecom
13  240e:ff:e02c:1:21::  273.13 ms  AS4134,AS58466  China Guangdong Guangzhou ChinaTelecom

Traceroute to China, Guangzhou CM IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2409:8057:5c00:30::6 (2409:8057:5c00:30::6), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.61 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.43 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:504:13::1a  0.46 ms  *  United States California Los Angeles coresite.com
 4  2001:504:13::219  159.85 ms  *  United States California Los Angeles coresite.com
 5  2402:4f00:1000:100::b1  159.52 ms  AS58453  China Hong Kong ChinaMobile
 6  2402:4f00:1000:100::3da  186.39 ms  AS58453  China Hong Kong ChinaMobile
 7  2409:8080:0:4:2f1:291::  270.09 ms  AS9808  China ChinaMobile
 8  2409:8080:0:1:2c1:2f1:3:0  316.01 ms  AS9808  China ChinaMobile
 9  2409:8080:0:1:401:2c1::  343.82 ms  AS9808  China ChinaMobile
10  2409:8080:0:1:301:1101::  344.27 ms  AS9808  China ChinaMobile
11  *
12  2409:8055:0:1105::  351.25 ms  AS9808,AS56040  China Guangdong ChinaMobile
13  2409:8055:1:b402::  359.54 ms  AS9808,AS56040  China Guangdong ChinaMobile
14  2409:8055:1:b300::  371.28 ms  AS9808,AS56040  China Guangdong ChinaMobile
15  2409:8055:5c00:0:4c00::1  359.59 ms  AS9808,AS56040  China Guangdong ChinaMobile
16  2409:8055:5c00:0:4c00::1  402.18 ms  AS9808,AS56040  China Guangdong ChinaMobile
17  *
18  *
19  *
20  2409:8057:5c00:30::6  357.30 ms  AS9808,AS56040  China Guangdong ChinaMobile

Traceroute to China, Beijing Dr.Peng IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2403:8880:400f::2 (2403:8880:400f::2), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.80 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  18.36 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:470:1:20c::1  1.02 ms  AS6939  United States he.net
 4  2001:470:0:3bf::2  153.95 ms  AS6939  United States he.net
 5  2001:7fa:0:1::ca28:a1be  174.25 ms  *  China Hong Kong hkix.net
 6  2001:252:0:103::1  173.83 ms  AS23911  China Beijing CHINAEDU
 7  2001:252:0:106::2  174.67 ms  AS23911  China Beijing CHINAEDU
 8  2001:252:0:108::1  174.64 ms  AS23911  China Beijing CHINAEDU
 9  *
10  2001:252:0:1::1  174.75 ms  AS23911  China Beijing CHINAEDU
11  2001:da8:2:801::2  174.52 ms  AS23910  China CHINAEDU
12  2400:a980:ff:29::2  175.19 ms  AS133111  China CHINAEDU
13  2403:8880:400f::2  174.93 ms  AS17964  China DRPENG

Traceroute to China, Beijing CERNET2 IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:da8:a0:1001::1 (2001:da8:a0:1001::1), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  6.35 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  1.53 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:504:13::1a  0.65 ms  *  United States California Los Angeles coresite.com
 4  *
 5  2001:252:0:302::1  154.54 ms  AS23911  China Beijing CHINAEDU
 6  2001:252:0:106::2  166.12 ms  AS23911  China Beijing CHINAEDU
 7  2001:252:0:108::1  154.94 ms  AS23911  China Beijing CHINAEDU
 8  *
 9  2001:252:0:1::1  155.71 ms  AS23911  China Beijing CHINAEDU
10  2001:da8:a0:1001::1  154.43 ms  AS23910  China CHINAEDU

Traceroute to China, Beijing CSTNET IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2400:dd00:0:37::213 (2400:dd00:0:37::213), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.71 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.75 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:668:0:3:ffff:2:0:7a9  4.40 ms  AS3257  GTT.NET BACKBONE gtt.net
 4  *
 5  2001:550:3::1c5  1.04 ms  AS174  United States cogentco.com
 6  2001:550:0:1000::9a36:2a65  0.78 ms  AS174  United States cogentco.com
 7  2001:550:0:1000::9a36:1fbe  10.99 ms  AS174  United States cogentco.com
 8  *
 9  *
10  2001:550:0:1000::9a36:577a  185.65 ms  AS174  United States cogentco.com
11  2402:4480:2:3::1f:2  156.98 ms  AS174  China Hong Kong cogentco.com
12  2400:dd00:0:40::195  196.35 ms  AS7497  China CSTNET
13  2400:dd00:0:33::200  191.86 ms  AS7497  China CSTNET
14  2400:dd00:0:37::213  196.19 ms  AS7497  China CSTNET

Traceroute to China, Hongkong HKIX IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:7fa:0:1::ca28:a1a9 (2001:7fa:0:1::ca28:a1a9), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.66 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.44 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:470:1:20c::1  0.45 ms  AS6939  United States he.net
 4  2001:470:0:3bf::2  153.80 ms  AS6939  United States he.net
 5  2001:7fa:0:1::ca28:a1a9  158.91 ms  *  China Hong Kong hkix.net

Traceroute to China, Hongkong HE IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:470:0:490::2 (2001:470:0:490::2), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  6.71 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.51 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:504:13::1a  0.44 ms  *  United States California Los Angeles coresite.com
 4  2001:470:0:3bf::2  153.80 ms  AS6939  United States he.net
 5  2001:470:0:490::2  154.66 ms  AS6939  United States he.net

Traceroute to United States, San Jose HE IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:470:1:ff::1 (2001:470:1:ff::1), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.67 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.48 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:504:13::1a  0.48 ms  *  United States California Los Angeles coresite.com
 4  2001:470:0:347::1  9.08 ms  AS6939  United States he.net
 5  2001:470:1:ff::1  13.21 ms  AS6939  United States he.net

Traceroute to United States, Chicago NTT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:418:0:5000::1026 (2001:418:0:5000::1026), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.77 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.39 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:668:0:3:ffff:2:0:7a9  0.80 ms  AS3257  GTT.NET BACKBONE gtt.net
 4  2001:668:0:3:ffff:0:45ae:1796  1.11 ms  AS3257  GTT.NET BACKBONE gtt.net
 5  2001:418:0:2000::145  8.13 ms  AS2914  United States ntt.com
 6  2001:418:0:2000::111  7.97 ms  AS2914  United States ntt.com
 7  2001:418:0:2000::79  76.58 ms  AS2914  United States ntt.com
 8  2001:418:0:2000::206  60.18 ms  AS2914  United States ntt.com
 9  2001:418:0:2000::235  60.45 ms  AS2914  United States ntt.com
10  2001:418:0:5000::1026  66.31 ms  AS2914  United States ntt.com

Traceroute to United States, Los Angeles Telia IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:2000:3080:1e96::2 (2001:2000:3080:1e96::2), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.65 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.53 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:668:0:3:ffff:2:0:7a9  0.47 ms  AS3257  GTT.NET BACKBONE gtt.net
 4  *
 5  2001:2000:3080:da4::1  0.53 ms  AS1299  Europe Regions telia.com
 6  2001:2000:3018:8e::1  1.41 ms  AS1299  Europe Regions telia.com
 7  2001:2000:3080:1e96::2  5.10 ms  AS1299  Europe Regions telia.com

Traceroute to United States, Los Angeles GTT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:668:0:3:ffff:0:d8dd:9d5a (2001:668:0:3:ffff:0:d8dd:9d5a), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.63 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  1.01 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:668:0:3:ffff:2:0:7a9  0.50 ms  AS3257  GTT.NET BACKBONE gtt.net
 4  2001:668:0:2:ffff:0:5995:b5aa  0.97 ms  AS3257  GTT.NET BACKBONE gtt.net
 5  2001:668:0:3:ffff:0:d8dd:9d5a  0.76 ms  AS3257  GTT.NET BACKBONE gtt.net

Traceroute to United States, Kansas City Sprint IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2600:0:1:1239:144:228:241:71 (2600:0:1:1239:144:228:241:71), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  1.51 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.59 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:668:0:3:ffff:2:0:7a9  5.60 ms  AS3257  GTT.NET BACKBONE gtt.net
 4  2001:668:0:2:ffff:0:5995:b5aa  1.24 ms  AS3257  GTT.NET BACKBONE gtt.net
 5  2001:668:0:3:ffff:0:adcd:349a  0.55 ms  AS3257  GTT.NET BACKBONE gtt.net
 6  2600:0:2:1239:144:232:15:34  4.71 ms  AS1239  United States sprint.com
 7  2600:0:2:1239:144:232:22:128  10.63 ms  AS1239  United States sprint.com
 8  2600:0:2:1239:144:232:13:80  33.76 ms  AS1239  United States sprint.com
 9  2600:0:2:1239:144:232:15:179  32.22 ms  AS1239  United States sprint.com
10  2600:0:1:1239:144:228:241:71  44.64 ms  AS1239  United States sprint.com

Traceroute to United States, Los Angeles Verizon IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2600:80a:2::15 (2600:80a:2::15), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  3.58 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  2.66 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:668:0:3:ffff:2:0:7a9  0.49 ms  AS3257  GTT.NET BACKBONE gtt.net
 4  *
 5  2001:668:0:3:ffff:0:adcd:364a  0.56 ms  AS3257  GTT.NET BACKBONE gtt.net
 6  2600:80a:2::15  0.96 ms  AS701  United States verizon.com

Traceroute to United Status, Ashburn Cogentco IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:550:0:1000::9a36:4215 (2001:550:0:1000::9a36:4215), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  1.26 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  7.08 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:668:0:3:ffff:2:0:7a9  0.46 ms  AS3257  GTT.NET BACKBONE gtt.net
 4  *
 5  2001:550:3::1c5  0.70 ms  AS174  United States cogentco.com
 6  2001:550:0:1000::9a36:2a65  0.75 ms  AS174  United States cogentco.com
 7  *
 8  2001:550:0:1000::9a36:2a42  21.70 ms  AS174  United States cogentco.com
 9  *
10  *
11  2001:550:0:1000::9a36:18dd  64.56 ms  AS174  United States cogentco.com
12  2001:550:0:1000::9a36:4215  65.44 ms  AS174  United States cogentco.com

Traceroute to United States, San Jose Level3 IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:1900:2100::2eb5 (2001:1900:2100::2eb5), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.60 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.43 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:668:0:3:ffff:2:0:7a9  0.54 ms  AS3257  GTT.NET BACKBONE gtt.net
 4  *
 5  *
 6  2001:1900:2100::2eb5  9.31 ms  AS3356  LEVEL3.COM BACKBONE level3.com

Traceroute to United States, Seattle Zayo IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:438:ffff::407d:d6a (2001:438:ffff::407d:d6a), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.65 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.41 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:668:0:3:ffff:2:0:7a9  0.51 ms  AS3257  GTT.NET BACKBONE gtt.net
 4  *
 5  2001:668:0:3:ffff:0:adcd:3e2e  0.65 ms  AS3257  GTT.NET BACKBONE gtt.net
 6  2001:438:ffff::407d:1b26  27.96 ms  AS6461  United States zayo.com
 7  2001:438:ffff::407d:1cc4  26.55 ms  AS6461  United States zayo.com
 8  2001:438:ffff::407d:1d29  26.52 ms  AS6461  United States zayo.com
 9  2001:438:ffff::407d:1d69  26.57 ms  AS6461  United States zayo.com
10  2001:438:ffff::407d:d6a  26.82 ms  AS6461  United States zayo.com

Traceroute to France, Paris HE IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:470:0:349::1 (2001:470:0:349::1), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.59 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.42 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:504:13::1a  0.44 ms  *  United States California Los Angeles coresite.com
 4  2001:470:0:72::1  0.72 ms  AS6939  United States he.net
 5  2001:470:0:324::1  54.96 ms  AS6939  United States he.net
 6  2001:470:0:299::2  60.14 ms  AS6939  United States he.net
 7  2001:470:0:349::1  133.26 ms  AS6939  United States he.net

Traceroute to German, Frankfurt NTT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:728:0:5000::6f6 (2001:728:0:5000::6f6), 30 hops max, 60 byte packets
 1  2a0b:ae40:1:4a0a::1  0.56 ms  AS40676  United States letbox.com
 2  2604:6600:ffff::7  0.95 ms  AS40676  United States California Los Angeles psychz.net
 3  2001:668:0:3:ffff:2:0:7a9  1.18 ms  AS3257  GTT.NET BACKBONE gtt.net
 4  2001:668:0:3:ffff:0:45ae:1796  1.31 ms  AS3257  GTT.NET BACKBONE gtt.net
 5  2001:418:0:2000::145  0.57 ms  AS2914  United States ntt.com
 6  2001:418:0:2000::1bd  66.64 ms  AS2914  United States ntt.com
 7  *
 8  2001:728:0:2000::1b2  154.84 ms  AS2914  United Kingdom ntt.com
 9  2001:728:0:2000::32  151.13 ms  AS2914  United Kingdom ntt.com
10  2001:728:0:5000::6f6  154.97 ms  AS2914  United Kingdom ntt.com
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;中规中矩的大盘鸡，有存储需求的可以入手。&lt;/p&gt;
</content:encoded></item><item><title>Hetzner评测：2.49欧本地存储款</title><link>https://yushum.com/posts/hetzner%E8%AF%84%E6%B5%8B2-49%E6%AC%A7%E6%9C%AC%E5%9C%B0%E5%AD%98%E5%82%A8%E6%AC%BE/</link><guid isPermaLink="true">https://yushum.com/posts/hetzner%E8%AF%84%E6%B5%8B2-49%E6%AC%A7%E6%9C%AC%E5%9C%B0%E5%AD%98%E5%82%A8%E6%AC%BE/</guid><pubDate>Sun, 26 Jan 2020 19:44:21 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;Hetzner的可按小时付费的Cloud VPS系列, 最低仅需2.49欧元/月。服务器采用Skylake Xeon CPU, 硬盘采用NVMe SSD, 每月流量多达20TB, 而且还是只计算出口流量。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/image-3-1024x486.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;配置信息&lt;/h2&gt;
&lt;h3&gt;系统信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;OS Release:		Debian GNU/Linux &quot;Buster&quot; 10.2 (x86_64)
 CPU Model:		Intel Xeon Processor (Skylake, IBRS)
 CPU Cache Size:	16384 KB
 CPU Number:		1 vCPU
 Virt Type:		KVM
 Memory Usage:		77.23 MB / 1.90 GB
 Swap Usage:		[ No Swapfile / Swap partition ]
 Disk Usage:		1.43 GB / 19.63 GB
 Boot Device:		/dev/sda1
 Load (1/5/15min):	0.35 0.15 0.06
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;网络信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;IPV4 - IP Address:	[DE] 49.12.6.*
 IPV4 - ASN Info:	AS24940 (Hetzner Online GmbH)
 IPV4 - Region:		null
 IPV6 - IP Address:	[DE] 2a01:4f8:c17:3932::1
 IPV6 - ASN Info:	AS24940 (Hetzner Online GmbH)
 IPV6 - Region:		Germany, null
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;流媒体解锁&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;HBO Now:				No
 Bahamut Anime:				No
 Abema.TV:				No
 Princess Connect Re:Dive (Beta):	Yes
 Bilibili China Mainland Only:		No
 Bilibili Hongkong/Macau/Taiwan:	No
 Bilibili Taiwan Only:			No
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;CPU性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread Test:			881 Scores
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;内存性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread - Read Test :		17376.06 MB/s
 1 Thread - Write Test:		10740.98 MB/s
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;硬盘速度测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Test Name		Write Speed				Read Speed
 100MB-4K Block		25.5 MB/s (6236 IOPS, 4.10 s)		26.9 MB/s (6565 IOPS, 3.90 s)
 1GB-1M Block		495 MB/s (472 IOPS, 2.12 s)		503 MB/s (480 IOPS, 2.08 s)
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;网络测试&lt;/h2&gt;
&lt;h3&gt;Speedtest.net网速测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Node Name			Upload Speed	Download Speed	Ping Latency
 Speedtest Default		111.79 MB/s	110.87 MB/s	0.48 ms
 China, Jilin CU		32.78 MB/s	118.41 MB/s	270.11 ms
 China, Hangzhou CM		0.06 MB/s	187.15 MB/s	319.66 ms
 China, Nanjing CT		0.14 MB/s	119.71 MB/s	217.08 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;IPv4路由测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 60 byte packets
 1  172.31.1.1  0.77 ms  *  LAN Address
 2  159.69.96.86  0.27 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 3  *
 4  213.239.225.45  0.80 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 5  213.239.239.125  0.70 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 6  213.239.252.237  4.04 ms  AS24940  Germany hetzner.de
 7  62.115.183.232  3.16 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  62.115.113.146  156.24 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.123.13  156.63 ms  AS1299  France Ile-de-France Paris telia.com
10  *
11  62.115.121.220  155.54 ms  AS1299  United States California Los Angeles telia.com
12  *
13  219.158.96.25  317.98 ms  AS4837  China Beijing ChinaUnicom
14  219.158.16.69  332.01 ms  AS4837  China Beijing ChinaUnicom
15  *
16  *
17  123.126.0.214  309.13 ms  AS4808  China Beijing ChinaUnicom
18  61.148.158.102  330.29 ms  AS4808  China Beijing ChinaUnicom
19  61.135.113.154  334.50 ms  AS4808  China Beijing ChinaUnicom
20  *
21  *
22  123.125.99.1  313.73 ms  AS4808  China Beijing ChinaUnicom


Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 60 byte packets
 1  172.31.1.1  0.19 ms  *  LAN Address
 2  159.69.96.86  0.19 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 3  *
 4  213.239.225.45  1.08 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 5  213.239.239.125  2.04 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 6  213.239.252.33  5.39 ms  AS24940  Germany Hesse Frankfurt hetzner.de
 7  77.67.76.141  5.39 ms  AS3257,AS8928  GTT.NET BACKBONE gtt.net
 8  141.136.110.50  5.69 ms  AS3257,AS8928  GTT.NET BACKBONE gtt.net
 9  129.250.9.154  5.88 ms  AS2914  NTT.COM BACKBONE ntt.com
10  202.97.122.205  200.37 ms  AS4134  China Beijing ChinaTelecom
11  202.97.12.49  253.63 ms  AS4134  China Beijing ChinaTelecom
12  *
13  180.149.159.6  221.39 ms  AS23724  China Beijing ChinaTelecom
14  180.149.128.1  260.43 ms  AS23724  China Beijing ChinaTelecom


Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.88.117 (211.136.88.117), 30 hops max, 60 byte packets
 1  172.31.1.1  0.25 ms  *  LAN Address
 2  159.69.96.86  0.17 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 3  *
 4  213.239.225.45  1.00 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 5  213.239.239.125  0.42 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 6  213.239.252.33  5.25 ms  AS24940  Germany Hesse Frankfurt hetzner.de
 7  80.81.195.121  8.13 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 8  223.120.10.153  7.87 ms  AS58453  Germany Hesse Frankfurt ChinaMobile
 9  *
10  *
11  *
12  221.176.21.229  228.84 ms  AS9808  China Beijing ChinaMobile
13  *
14  211.136.67.113  217.70 ms  AS56048  China Beijing ChinaMobile
15  *
16  211.136.88.117  234.74 ms  AS56048  China Beijing ChinaMobile


Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.0.49 (58.247.0.49), 30 hops max, 60 byte packets
 1  172.31.1.1  0.18 ms  *  LAN Address
 2  159.69.96.86  0.27 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 3  *
 4  213.239.225.41  1.01 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 5  213.239.239.125  0.60 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 6  213.239.252.225  2.86 ms  AS24940  Germany hetzner.de
 7  213.248.70.0  3.14 ms  AS1299  Germany Bavaria Nuremberg telia.com
 8  62.115.113.174  167.57 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.122.161  167.10 ms  AS1299  TELIA.COM BACKBONE telia.com
10  *
11  213.155.130.129  167.89 ms  AS1299  TELIA.COM BACKBONE telia.com
12  62.115.170.61  162.61 ms  AS1299  Europe Regions telia.com
13  219.158.96.41  309.36 ms  AS4837  China Beijing ChinaUnicom
14  219.158.3.181  307.19 ms  AS4837  China Beijing ChinaUnicom
15  219.158.4.173  357.98 ms  AS4837  China Beijing ChinaUnicom
16  219.158.8.242  370.68 ms  AS4837  China Shanghai ChinaUnicom
17  *
18  139.226.214.37  409.27 ms  AS17621  China Shanghai ChinaUnicom
19  58.247.0.49  397.80 ms  AS17621  China Shanghai ChinaUnicom


Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.1 (180.153.28.1), 30 hops max, 60 byte packets
 1  172.31.1.1  0.20 ms  *  LAN Address
 2  159.69.96.86  0.53 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 3  *
 4  213.239.225.45  0.97 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 5  213.239.239.125  1.74 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 6  213.239.245.218  5.19 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 7  77.67.76.141  5.21 ms  AS3257,AS8928  GTT.NET BACKBONE gtt.net
 8  141.136.110.54  18.31 ms  AS3257,AS8928  GTT.NET BACKBONE gtt.net
 9  77.67.72.170  8.52 ms  AS3257,AS8928  Germany Hesse Frankfurt gtt.net
10  202.97.95.205  176.66 ms  AS4134  China ChinaTelecom
11  *
12  202.97.57.158  179.15 ms  AS4134  China Shanghai ChinaTelecom
13  202.101.63.129  180.52 ms  AS4812  China Shanghai ChinaTelecom
14  101.95.207.230  247.96 ms  AS4812  China Shanghai ChinaTelecom
15  101.95.225.34  180.57 ms  AS4812  China Shanghai ChinaTelecom
16  101.227.255.38  180.49 ms  AS4812  China Shanghai ChinaTelecom
17  180.153.28.1  224.96 ms  AS4812  China Shanghai ChinaTelecom


Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 60 byte packets
 1  172.31.1.1  0.17 ms  *  LAN Address
 2  159.69.96.86  0.21 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 3  *
 4  213.239.225.41  0.84 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 5  213.239.239.129  0.56 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 6  213.239.245.14  5.23 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 7  80.81.195.121  7.97 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 8  223.120.10.121  7.90 ms  AS58453  Germany Hesse Frankfurt ChinaMobile
 9  *
10  *
11  *
12  221.176.27.253  201.14 ms  AS9808  China Beijing ChinaMobile
13  *
14  221.176.17.218  171.26 ms  AS9808  China Shanghai ChinaMobile
15  221.183.55.22  273.01 ms  AS9808  China Shanghai ChinaMobile


Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 60 byte packets
 1  172.31.1.1  0.16 ms  *  LAN Address
 2  159.69.96.86  0.18 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 3  *
 4  213.239.225.41  1.58 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 5  213.239.239.129  0.43 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 6  213.239.245.18  5.23 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 7  195.219.219.9  5.50 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
 8  195.219.50.134  5.45 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
 9  195.219.76.6  241.79 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
10  219.158.98.13  261.63 ms  AS4837  China Beijing ChinaUnicom
11  219.158.5.141  267.79 ms  AS4837  China Beijing ChinaUnicom
12  219.158.18.69  229.97 ms  AS4837  China Beijing ChinaUnicom
13  *
14  112.92.0.62  291.25 ms  AS17816  China Guangdong Guangzhou ChinaUnicom
15  120.80.175.70  301.23 ms  AS17622  China Guangdong Guangzhou ChinaUnicom
16  210.21.4.130  288.05 ms  AS17622  China Guangdong Guangzhou ChinaUnicom


Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 60 byte packets
 1  172.31.1.1  0.24 ms  *  LAN Address
 2  159.69.96.86  0.28 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 3  *
 4  213.239.225.41  0.91 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 5  213.239.239.125  1.06 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 6  213.239.252.221  2.90 ms  AS24940  Germany hetzner.de
 7  213.248.70.0  6.19 ms  AS1299  Germany Bavaria Nuremberg telia.com
 8  62.115.113.146  5.65 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.114.89  12.39 ms  AS1299  Germany Hesse Frankfurt telia.com
10  118.85.205.81  11.72 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom
11  202.97.52.225  221.52 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
12  202.97.39.126  241.63 ms  AS4134  China Shandong Qingdao ChinaTelecom
13  202.97.91.157  249.12 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
14  113.108.208.226  239.52 ms  AS58466  China Guangdong Guangzhou ChinaTelecom
15  113.108.209.1  228.39 ms  AS58466  China Guangdong Guangzhou ChinaTelecom


Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.139.129.5 (211.139.129.5), 30 hops max, 60 byte packets
 1  172.31.1.1  0.21 ms  *  LAN Address
 2  159.69.96.86  0.23 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 3  *
 4  213.239.225.45  0.89 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 5  213.239.239.129  1.01 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 6  213.239.245.14  5.39 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 7  80.81.195.121  8.76 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 8  223.120.10.121  7.67 ms  AS58453  Germany Hesse Frankfurt ChinaMobile
 9  *
10  221.183.55.74  302.59 ms  AS9808  China Guangdong Guangzhou ChinaMobile
11  221.183.25.118  303.88 ms  AS9808  China Guangdong Guangzhou ChinaMobile
12  221.176.24.101  300.37 ms  AS9808  China Guangdong Guangzhou ChinaMobile
13  221.183.26.166  277.78 ms  AS9808  China Guangdong Guangzhou ChinaMobile
14  211.136.208.205  350.64 ms  AS56040  China Guangdong Guangzhou ChinaMobile
15  183.235.226.145  345.59 ms  AS56040  China Guangdong Guangzhou ChinaMobile
16  211.139.129.5  325.19 ms  AS56040  China Guangdong Guangzhou ChinaMobile


Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 60 byte packets
 1  172.31.1.1  0.36 ms  *  LAN Address
 2  159.69.96.86  0.26 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 3  *
 4  213.239.225.41  0.95 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 5  213.239.239.125  0.62 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 6  213.239.252.237  2.89 ms  AS24940  Germany hetzner.de
 7  81.95.15.5  3.08 ms  AS201011  CORE-BACKBONE.COM BACKBONE core-backbone.com
 8  81.95.15.162  6.18 ms  AS201011  Germany Hesse Frankfurt core-backbone.com
 9  80.157.207.9  6.21 ms  AS3320  Germany telekom.de
10  217.239.43.2  31.66 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
11  217.239.43.2  31.48 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
12  80.156.162.218  171.91 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
13  *
14  218.105.2.210  237.85 ms  AS9929  China Shanghai ChinaUnicom
15  210.13.75.138  233.78 ms  AS9929  China Shanghai ChinaUnicom
16  210.13.66.237  236.53 ms  AS9929  China Shanghai ChinaUnicom
17  210.13.66.238  238.00 ms  AS9929  China Shanghai ChinaUnicom


Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 60 byte packets
 1  172.31.1.1  0.20 ms  *  LAN Address
 2  159.69.96.86  0.33 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 3  *
 4  213.239.225.41  1.15 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 5  213.239.239.125  0.61 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 6  213.239.252.225  2.88 ms  AS24940  Germany hetzner.de
 7  213.248.70.0  3.12 ms  AS1299  Germany Bavaria Nuremberg telia.com
 8  62.115.113.174  18.15 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.122.161  29.82 ms  AS1299  TELIA.COM BACKBONE telia.com
10  62.115.134.139  33.50 ms  AS1299  United Kingdom London telia.com
11  80.239.193.226  30.25 ms  AS1299  TELIA.COM BACKBONE telia.com
12  *
13  *
14  *
15  61.152.24.206  215.62 ms  AS4812  China Shanghai ChinaTelecom
16  58.32.0.1  240.30 ms  AS4812  China Shanghai ChinaTelecom


Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 14.131.125.1 (14.131.125.1), 30 hops max, 60 byte packets
 1  172.31.1.1  0.20 ms  *  LAN Address
 2  159.69.96.86  0.22 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 3  *
 4  213.239.225.41  0.91 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 5  213.239.239.125  0.44 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 6  213.239.252.241  3.15 ms  AS24940  Germany hetzner.de
 7  62.115.183.232  3.05 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  62.115.113.146  152.07 ms  AS1299  TELIA.COM BACKBONE telia.com
 9  62.115.123.13  155.78 ms  AS1299  France Ile-de-France Paris telia.com
10  *
11  62.115.121.220  153.78 ms  AS1299  United States California Los Angeles telia.com
12  *
13  219.158.16.97  313.06 ms  AS4837  China Beijing ChinaUnicom
14  *
15  219.158.18.65  314.10 ms  AS4837  China Beijing ChinaUnicom
16  202.96.12.66  317.52 ms  AS4808  China Beijing ChinaUnicom
17  202.106.193.6  331.44 ms  AS4808  China Beijing ChinaUnicom
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 60 byte packets
 1  172.31.1.1  0.25 ms  *  LAN Address
 2  159.69.96.86  0.28 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 3  *
 4  213.239.225.45  1.02 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 5  213.239.239.129  0.52 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 6  213.239.245.177  5.31 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 7  46.33.77.5  5.23 ms  AS3257,AS8928  Germany Hesse Frankfurt gtt.net
 8  89.149.140.77  154.63 ms  AS3257,AS8928  United States California Los Angeles gtt.net
 9  219.158.33.49  335.12 ms  AS4837  United States California Los Angeles ChinaUnicom
10  219.158.97.205  330.78 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
11  219.158.103.29  347.11 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
12  219.158.103.41  319.84 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
13  219.158.112.25  321.09 ms  AS4837  China Beijing ChinaUnicom
14  *
15  61.148.146.230  357.01 ms  AS4808  China Beijing ChinaUnicom
16  61.148.156.190  326.40 ms  AS4808  China Beijing ChinaUnicom
17  124.65.47.202  365.18 ms  AS4808  China Beijing ChinaUnicom
18  202.99.1.238  322.98 ms  AS17964  China Beijing DRPENG
19  218.241.252.14  357.25 ms  AS4808,AS4847  China Beijing DRPENG
20  218.241.253.134  346.20 ms  AS4808,AS4847  China Beijing DRPENG
21  211.167.230.100  327.40 ms  AS4808,AS17964  China Beijing DRPENG


Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 60 byte packets
 1  172.31.1.1  0.27 ms  *  LAN Address
 2  159.69.96.86  0.54 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 3  *
 4  213.239.225.45  1.12 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 5  213.239.239.129  0.82 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 6  213.239.245.14  5.16 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 7  195.219.219.9  5.27 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
 8  195.219.87.194  157.67 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
 9  195.219.87.10  157.44 ms  AS6453  France Ile-de-France Paris tatacommunications.com
10  80.231.153.50  157.17 ms  AS6453  France Ile-de-France Paris tatacommunications.com
11  195.219.194.6  152.11 ms  AS6453  Netherlands North Holland Amsterdam tatacommunications.com
12  80.231.130.26  157.31 ms  AS6453  United Kingdom London tatacommunications.com
13  80.231.130.121  151.26 ms  AS6453  United Kingdom London tatacommunications.com
14  216.6.87.42  160.93 ms  AS6453  United States Virginia Ashburn tatacommunications.com
15  63.243.205.131  153.31 ms  AS6453  United States California San Jose tatacommunications.com
16  63.243.251.1  152.36 ms  AS6453  United States California Santa Clara tatacommunications.com
17  66.110.59.8  161.23 ms  AS6453  United States California Los Angeles tatacommunications.com
18  101.4.117.213  293.55 ms  AS4538  China Beijing CHINAEDU
19  101.4.117.97  290.05 ms  AS4538  China Beijing CHINAEDU
20  101.4.117.97  284.34 ms  AS4538  China Beijing CHINAEDU
21  219.224.102.234  359.46 ms  AS4538  China Beijing CHINAEDU
22  202.112.38.82  289.69 ms  AS4538  China Beijing CHINAEDU
23  202.205.109.205  289.54 ms  AS4538  China Beijing CHINAEDU


Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 60 byte packets
 1  172.31.1.1  0.47 ms  *  LAN Address
 2  159.69.96.86  0.24 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 3  *
 4  213.239.225.41  0.83 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 5  213.239.239.125  0.76 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 6  213.239.245.177  5.12 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 7  77.67.76.141  5.93 ms  AS3257,AS8928  GTT.NET BACKBONE gtt.net
 8  63.222.0.5  5.62 ms  AS3491  Germany Hesse Frankfurt pccw.com
 9  130.117.0.1  5.32 ms  AS174  Germany Hesse Frankfurt cogentco.com
10  *
11  130.117.49.154  23.43 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
12  159.226.254.5  272.23 ms  AS7497  China Beijing CSTNET
13  159.226.254.1  280.20 ms  AS7497  China Beijing CSTNET


Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 60 byte packets
 1  172.31.1.1  0.74 ms  *  LAN Address
 2  159.69.96.86  0.18 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 3  *
 4  213.239.225.41  1.10 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 5  213.239.239.129  0.44 ms  AS24940  Germany Bavaria Nuremberg hetzner.de
 6  213.239.245.14  9.67 ms  AS24940  Germany Saxony Falkenstein hetzner.de
 7  80.81.195.121  8.12 ms  AS29686,AS52320,AS61568  Germany Hesse Frankfurt de-cix.net
 8  223.120.10.153  7.91 ms  AS58453  Germany Hesse Frankfurt ChinaMobile
 9  *
10  *
11  *
12  221.183.25.189  288.03 ms  AS9808  China Shanghai ChinaMobile
13  *
14  221.176.17.34  182.03 ms  AS9808  China Shanghai ChinaMobile
15  221.183.65.66  286.71 ms  AS9808  China Shanghai ChinaMobile
16  211.156.132.25  252.45 ms  AS7641  China Beijing chinabtn.com CATV
17  211.156.129.89  278.00 ms  AS7641  China Beijing chinabtn.com CATV
18  211.156.128.229  291.74 ms  AS7641  China Beijing chinabtn.com CATV
19  211.156.140.17  370.84 ms  AS7641  China Beijing chinabtn.com CATV


 -&amp;gt; Traceroute Test (IPV6)

Traceroute to China, Beijing CU IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2408:80f0:4100:2005::3 (2408:80f0:4100:2005::3), 30 hops max, 60 byte packets
 1  fe80::1  0.36 ms  *  Link-Scoped Unicast
 2  2a01:4f8:0:e172::1154  0.92 ms  AS24940  Germany hetzner.de
 3  2a01:4f8:0:e172::1101  15.45 ms  AS24940  Germany hetzner.de
 4  2a01:4f8:0:e172::a011  1.13 ms  AS24940  Germany hetzner.de
 5  2a01:4f8:0:e172::a005  0.71 ms  AS24940  Germany hetzner.de
 6  2a01:4f8:0:3::12  5.26 ms  AS24940  Germany hetzner.de
 7  2a01:3e0:ff20::ad  5.37 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
 8  2a01:3e0:ff20::9  5.49 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
 9  2a01:3e0:ff00::14  5.52 ms  AS6453  Europe Regions tatacommunications.com
10  2a01:3e0:ff40:100::71  10.96 ms  AS6453  Netherlands North Holland Amsterdam tatacommunications.com
11  2a01:3e0:ff40:100::2  25.95 ms  AS6453  Netherlands North Holland Amsterdam tatacommunications.com
12  2001:5a0:2000:500::22  16.18 ms  AS6453  United States tatacommunications.com
13  2001:5a0:2000:500::52  16.66 ms  AS6453  United States tatacommunications.com
14  2001:5a0:a00::32  81.96 ms  AS6453  United States tatacommunications.com
15  2600:802:2::89  85.17 ms  AS701  United States verizon.com
16  2600:80a::13  150.07 ms  AS701  United States verizon.com
17  *
18  2408:8000:2:53e::  315.20 ms  AS4837  China ChinaUnicom
19  *
20  *
21  2408:8000:2:685::  317.79 ms  AS4837  China ChinaUnicom
22  2408:8000:1100:31a::3  317.62 ms  AS4808  China Beijing ChinaUnicom
23  2408:8000:1120:290::3  320.19 ms  AS4808  China Beijing ChinaUnicom
24  2408:8000:1f10:3d01::3  316.63 ms  AS4808  China Beijing ChinaUnicom
25  2408:80f0:4100:2006::1  316.83 ms  AS4808  China Beijing ChinaUnicom
26  2408:80f0:4100:2006::b  317.94 ms  AS4808  China Beijing ChinaUnicom
27  *
28  2408:80f0:4100:2005::3  321.40 ms  AS4808  China Beijing ChinaUnicom

Traceroute to China, Shanghai CT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 240e:18:10:a01::1 (240e:18:10:a01::1), 30 hops max, 60 byte packets
 1  fe80::1  0.22 ms  *  Link-Scoped Unicast
 2  2a01:4f8:0:e172::1154  1.16 ms  AS24940  Germany hetzner.de
 3  2a01:4f8:0:e172::1101  8.07 ms  AS24940  Germany hetzner.de
 4  2a01:4f8:0:e172::a00d  1.00 ms  AS24940  Germany hetzner.de
 5  2a01:4f8:0:e172::a001  7.22 ms  AS24940  Germany hetzner.de
 6  2a01:4f8:0:3::a  5.32 ms  AS24940  Germany hetzner.de
 7  2001:7f8::1b1b:0:1  5.30 ms  *  Germany Hesse Frankfurt de-cix.net
 8  *
 9  240e:0:a::cc:5ab4  258.01 ms  AS4134  China ChinaTelecom
10  240e:0:a::c9:4a21  225.38 ms  AS4134  China ChinaTelecom
11  *
12  *
13  *
14  240e:18:10:a01::1  294.73 ms  AS4134,AS4812  China Shanghai ChinaTelecom

Traceroute to China, Guangzhou CM IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2409:8057:5c00:30::6 (2409:8057:5c00:30::6), 30 hops max, 60 byte packets
 1  fe80::1  0.16 ms  *  Link-Scoped Unicast
 2  2a01:4f8:0:e172::1154  0.92 ms  AS24940  Germany hetzner.de
 3  2a01:4f8:0:e172::1101  8.36 ms  AS24940  Germany hetzner.de
 4  2a01:4f8:0:e172::a00d  1.00 ms  AS24940  Germany hetzner.de
 5  2a01:4f8:0:e172::a001  0.54 ms  AS24940  Germany hetzner.de
 6  2a01:4f8:0:3::a  5.24 ms  AS24940  Germany hetzner.de
 7  2001:7f8::e455:0:1  7.85 ms  *  Germany Hesse Frankfurt de-cix.net
 8  2402:4f00:2000:100::135  6.16 ms  AS58453  China Hong Kong ChinaMobile
 9  2402:4f00:2000:100::fd  5.95 ms  AS58453  China Hong Kong ChinaMobile
10  2402:4f00:2000:100::1de  313.29 ms  AS58453  China Hong Kong ChinaMobile
11  2402:4f00:100::2ea  314.44 ms  AS58453  China Hong Kong ChinaMobile
12  *
13  2409:8080:0:4:2f1:292::  340.23 ms  AS9808  China ChinaMobile
14  *
15  *
16  *
17  *
18  *
19  *
20  2409:8055:1:b301::  371.83 ms  AS9808,AS56040  China Guangdong ChinaMobile
21  *
22  2409:8055:5c00:0:4c00::1  378.61 ms  AS9808,AS56040  China Guangdong ChinaMobile
23  *
24  *
25  2409:8057:5c00:30::6  400.41 ms  AS9808,AS56040  China Guangdong ChinaMobile

Traceroute to China, Beijing CERNET2 IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:da8:a0:1001::1 (2001:da8:a0:1001::1), 30 hops max, 60 byte packets
 1  fe80::1  0.18 ms  *  Link-Scoped Unicast
 2  2a01:4f8:0:e172::1154  0.90 ms  AS24940  Germany hetzner.de
 3  2a01:4f8:0:e172::1101  1.98 ms  AS24940  Germany hetzner.de
 4  2a01:4f8:0:e172::a00d  2.06 ms  AS24940  Germany hetzner.de
 5  2a01:4f8:0:e172::a001  0.50 ms  AS24940  Germany hetzner.de
 6  2a01:4f8:0:3::359  5.15 ms  AS24940  Germany hetzner.de
 7  2001:7f8::1b1b:0:1  5.26 ms  *  Germany Hesse Frankfurt de-cix.net
 8  2001:470:0:404::2  5.51 ms  AS6939  United States he.net
 9  *
10  2001:470:0:227::1  20.12 ms  AS6939  United States he.net
11  2001:470:0:3ea::1  20.04 ms  AS6939  United States he.net
12  2001:470:0:2cf::2  94.92 ms  AS6939  United States he.net
13  2001:470:0:299::1  92.20 ms  AS6939  United States he.net
14  2001:470:0:324::2  146.68 ms  AS6939  United States he.net
15  2001:470:0:72::2  145.37 ms  AS6939  United States he.net
16  *
17  2001:252:0:302::1  300.57 ms  AS23911  China Beijing CHINAEDU
18  *
19  2001:252:0:1::1  301.31 ms  AS23911  China Beijing CHINAEDU
20  2001:da8:a0:1001::1  299.42 ms  AS23910  China CHINAEDU
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;可以说这个价格买到配置的VPS性价比无敌了，而且性能也非常好。追求稳定建站的可以放心购买了。&lt;/p&gt;
</content:encoded></item><item><title>Oracle评测：永久免费韩国VPS</title><link>https://yushum.com/posts/oracle%E8%AF%84%E6%B5%8B%E6%B0%B8%E4%B9%85%E5%85%8D%E8%B4%B9%E9%9F%A9%E5%9B%BDvps/</link><guid isPermaLink="true">https://yushum.com/posts/oracle%E8%AF%84%E6%B5%8B%E6%B0%B8%E4%B9%85%E5%85%8D%E8%B4%B9%E9%9F%A9%E5%9B%BDvps/</guid><pubDate>Tue, 24 Dec 2019 19:04:00 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;Oracle，财大气粗，免费VPS很是火热，Oracle 公开免费的数据库和云服务，并宣称“永远免费” 用户可得到：&lt;/p&gt;
&lt;p&gt;2 个自治数据库，每个有 1OCPU 和 20G 储存&lt;/p&gt;
&lt;p&gt;2 个计算实例，每个有 1/8 OCPU 和 1G 内存&lt;/p&gt;
&lt;p&gt;2 个块储存，总共 100G, 最多可有 5 个免费备份&lt;/p&gt;
&lt;p&gt;10G 对象储存，10G 归档储存，50,000 月 API 请求限额&lt;/p&gt;
&lt;p&gt;1 个负载均衡，10Mbps 带宽&lt;/p&gt;
&lt;p&gt;10T 每月出向流量&lt;/p&gt;
&lt;p&gt;500,000,000 摄取点数(ingestion Datapoints)和 1 千万监控点数(Datapoints for Monitoring Service )&lt;/p&gt;
&lt;p&gt;每用户每月有 100 百万通知送达选项(Notification delivery options)，和 1,000 封邮件可用&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/cloud-diagram.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;配置信息&lt;/h2&gt;
&lt;h3&gt;系统信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;OS Release:		Debian GNU/Linux &quot;Buster&quot; 10.2 (x86_64)
 CPU Model:		AMD EPYC 7551 32-Core Processor
 CPU Cache Size:	512 KB
 CPU Number:		2 vCPU
 Virt Type:		KVM
 Memory Usage:		79.76 MB / 983.35 MB
 Swap Usage:		0 KB / 1020.00 MB
 Disk Usage:		963.68 MB / 49794.10 MB
 Boot Device:		/dev/sda2
 Load (1/5/15min):	0.48 0.18 0.07
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;网络信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;IPV4 - IP Address:	[KR] 132.145.92.*
 IPV4 - ASN Info:	AS31898 (Oracle Corporation)
 IPV4 - Region:		Seoul
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;流媒体解锁&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;HBO Now:				Yes
 Bahamut Anime:				No
 Abema.TV:				No
 Bilibili Hongkong/Macau/Taiwan:	No
 Bilibili TaiwanOnly:			No
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;CPU性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread Test:			1195 Scores
 2 Threads Test:		1175 Scores
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;内存性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread - Read Test :		33030.89 MB/s
 1 Thread - Write Test:		14547.70 MB/s
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;硬盘性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Test Name		Write Speed				Read Speed
 10MB-4K Block		8.2 MB/s (1991 IOPS, 1.29 s)		9.0 MB/s (2186 IOPS, 1.17 s)
 10MB-1M Block		126 MB/s (120 IOPS, 0.08 s)		250 MB/s (238 IOPS, 0.04 s)
 100MB-4K Block		8.3 MB/s (2026 IOPS, 12.63 s)		8.8 MB/s (2152 IOPS, 11.90 s)
 100MB-1M Block		62.3 MB/s (59 IOPS, 1.68 s)		35.9 MB/s (34 IOPS, 2.92 s)
 1GB-4K Block		7.6 MB/s (1863 IOPS, 137.40 s)		8.7 MB/s (2115 IOPS, 121.03 s)
 1GB-1M Block		32.3 MB/s (30 IOPS, 32.50 s)		31.2 MB/s (29 IOPS, 33.63 s)
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;网络测试&lt;/h2&gt;
&lt;h3&gt;Speedtest.net网速测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Node Name			Upload Speed	Download Speed	Ping Latency
 Speedtest Default		5.60 MB/s	5.55 MB/s	1.51 ms
 China, Jilin CU		Fail: Unknown Error
 China, Shandong CU		5.62 MB/s	5.95 MB/s	91.50 ms
 China, Nanjing CU		Fail: Unknown Error
 China, Shanghai CU		Fail: Unknown Error
 China, Guangxi CU		Fail: Unknown Error
 China, Lanzhou CU		Fail: Unknown Error
 China, Beijing CT		3.14 MB/s	5.84 MB/s	53.61 ms
 China, Hangzhou CT		1.06 MB/s	5.65 MB/s	67.58 ms
 China, Nanjing CT		2.49 MB/s	5.60 MB/s	64.17 ms
 China, Guangzhou CT		0.20 MB/s	2.57 MB/s	70.61 ms
 China, Wuhan CT		0.97 MB/s	5.77 MB/s	65.53 ms
 China, Shenyang CM		5.39 MB/s	5.87 MB/s	93.99 ms
 China, Hangzhou CM		4.28 MB/s	6.05 MB/s	94.02 ms
 China, Shanghai CM		5.44 MB/s	5.92 MB/s	91.74 ms
 China, Nanning CM		5.89 MB/s	5.61 MB/s	59.84 ms
 China, Lanzhou CM		Fail: Unknown Error
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;IPv4路由测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 60 byte packets
 1  140.91.214.2  2.22 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  0.63 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.32 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.23 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.175.29  1.52 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.146.118  3.43 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  219.158.38.117  51.09 ms  AS4837  China ChinaUnicom
 8  219.158.3.141  53.74 ms  AS4837  China Beijing ChinaUnicom
 9  219.158.5.153  52.63 ms  AS4837  China Beijing ChinaUnicom
10  124.65.194.102  51.30 ms  AS4808  China Beijing ChinaUnicom
11  125.33.187.122  51.61 ms  AS4808  China Beijing ChinaUnicom
12  124.65.194.46  87.93 ms  AS4808  China Beijing ChinaUnicom
13  61.135.113.154  49.90 ms  AS4808  China Beijing ChinaUnicom
14  *
15  *
16  123.125.99.1  50.78 ms  AS4808  China Beijing ChinaUnicom


Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 60 byte packets
 1  140.91.214.6  0.19 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  1.11 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  34.21 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  2.28 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  1.208.174.29  3.33 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.213.104.34  1.65 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  211.40.6.110  49.33 ms  AS3786  China Beijing uplus.co.kr
 8  202.97.12.149  51.55 ms  AS4134  China Beijing ChinaTelecom
 9  *
10  180.149.159.10  64.67 ms  AS23724  China Beijing ChinaTelecom
11  180.149.128.1  68.57 ms  AS23724  China Beijing ChinaTelecom


Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.88.117 (211.136.88.117), 30 hops max, 60 byte packets
 1  140.91.214.5  0.16 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  0.91 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.39 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  3.38 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  1.208.173.29  3.83 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  61.43.235.22  2.12 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  221.176.16.213  81.00 ms  AS9808  China Beijing ChinaMobile
15  *
16  *
17  *
18  211.136.88.117  95.84 ms  AS56048  China Beijing ChinaMobile


Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.0.49 (58.247.0.49), 30 hops max, 60 byte packets
 1  140.91.214.3  0.15 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  0.75 ms  AS3786  Republic of Korea uplus.co.kr
 3  *
 4  *
 5  *
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.1 (180.153.28.1), 30 hops max, 60 byte packets
 1  140.91.214.2  0.21 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  2.82 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.17 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  3.39 ms  AS3786  Republic of Korea uplus.co.kr
 5  211.63.36.9  1.49 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.146.118  1.94 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  211.40.6.158  24.69 ms  AS3786  China Shanghai uplus.co.kr
 8  202.97.55.201  24.31 ms  AS4134  China Shanghai ChinaTelecom
 9  *
10  202.97.57.154  28.98 ms  AS4134  China Shanghai ChinaTelecom
11  101.95.120.157  41.90 ms  AS4812  China Shanghai ChinaTelecom
12  101.95.207.234  43.59 ms  AS4812  China Shanghai ChinaTelecom
13  101.95.225.222  43.12 ms  AS4812  China Shanghai ChinaTelecom
14  101.227.255.42  40.43 ms  AS4812  China Shanghai ChinaTelecom
15  *
16  180.153.28.1  40.98 ms  AS4812  China Shanghai ChinaTelecom


Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 60 byte packets
 1  140.91.214.7  0.18 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  0.74 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.15 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.26 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.145.189  1.64 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.213.104.34  3.64 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  *
 8  *
 9  *
10  221.183.55.62  46.88 ms  AS9808  China Guangdong Guangzhou ChinaMobile
11  221.176.24.145  48.28 ms  AS9808  China Guangdong Guangzhou ChinaMobile
12  221.176.22.157  60.55 ms  AS9808  China Guangdong Guangzhou ChinaMobile
13  *
14  221.176.17.218  78.57 ms  AS9808  China Shanghai ChinaMobile
15  221.183.55.22  93.87 ms  AS9808  China Shanghai ChinaMobile


Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 60 byte packets
 1  140.91.214.2  0.24 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  1.08 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.36 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  3.33 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  1.208.173.29  3.52 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.213.104.34  3.67 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  219.158.38.113  26.39 ms  AS4837  China ChinaUnicom
 8  219.158.113.142  26.42 ms  AS4837  China Shanghai ChinaUnicom
 9  219.158.113.105  25.73 ms  AS4837  China Shanghai ChinaUnicom
10  *
11  120.82.0.158  66.34 ms  AS17816  China Guangdong Guangzhou ChinaUnicom
12  120.80.170.254  68.41 ms  AS17622  China Guangdong Guangzhou ChinaUnicom
13  210.21.4.130  65.99 ms  AS17622  China Guangdong Guangzhou ChinaUnicom


Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 60 byte packets
 1  140.91.214.2  0.19 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  0.78 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.32 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.24 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  1.208.173.29  1.38 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.147.118  2.18 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  202.97.5.113  71.95 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
 8  202.97.70.25  24.13 ms  *  China Shanghai ChinaTelecom
 9  202.97.33.133  27.23 ms  AS4134  China Shanghai ChinaTelecom
10  113.108.209.1  78.50 ms  AS58466  China Guangdong Guangzhou ChinaTelecom


Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.139.129.5 (211.139.129.5), 30 hops max, 60 byte packets
 1  140.91.214.7  0.16 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  1.11 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.11 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.26 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  210.120.103.225  3.56 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  61.43.235.22  1.60 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  *
 8  *
 9  *
10  *
11  221.183.25.122  66.10 ms  AS9808  China Guangdong Guangzhou ChinaMobile
12  221.176.24.181  53.21 ms  AS9808  China Guangdong Guangzhou ChinaMobile
13  221.183.13.118  96.41 ms  AS9808  China Guangdong Shenzhen ChinaMobile
14  183.235.226.125  92.33 ms  AS56040  China Guangdong Guangzhou ChinaMobile
15  211.136.208.249  56.76 ms  AS56040  China Guangdong Guangzhou ChinaMobile
16  120.198.206.198  80.26 ms  AS56040  China Guangdong Guangzhou ChinaMobile
17  211.139.129.5  54.39 ms  AS56040  China Guangdong Guangzhou ChinaMobile


Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 60 byte packets
 1  140.91.214.6  0.12 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  1.19 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.26 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.44 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  1.208.105.253  1.90 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.146.130  1.69 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  203.248.132.26  24.14 ms  AS3786  Republic of Korea uplus.co.kr
 8  218.105.2.205  24.18 ms  AS9929  China Shanghai ChinaUnicom
 9  210.78.11.233  23.78 ms  *  China Shanghai ChinaUnicom
10  218.105.2.210  23.62 ms  AS9929  China Shanghai ChinaUnicom
11  210.13.75.138  24.76 ms  AS9929  China Shanghai ChinaUnicom
12  210.13.66.237  30.61 ms  AS9929  China Shanghai ChinaUnicom
13  210.13.66.238  28.73 ms  AS9929  China Shanghai ChinaUnicom


Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 60 byte packets
 1  140.91.214.5  0.16 ms  AS31898  Republic of Korea Seoul oracle.com
 2  1.255.14.55  2.86 ms  AS9318  Republic of Korea Seoul skbroadband.com
 3  1.255.14.54  0.84 ms  AS9318  Republic of Korea Seoul skbroadband.com
 4  *
 5  1.254.241.33  36.72 ms  AS9318  China Hong Kong skbroadband.com
 6  59.43.248.237  61.64 ms  AS4809  China Shanghai ChinaTelecom
 7  *
 8  59.43.138.69  73.79 ms  AS4809  China Shanghai ChinaTelecom
 9  101.95.88.54  46.26 ms  AS4812  China Shanghai ChinaTelecom
10  58.32.0.1  65.61 ms  AS4812  China Shanghai ChinaTelecom


Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 14.131.125.1 (14.131.125.1), 30 hops max, 60 byte packets
 1  140.91.214.7  0.18 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  0.70 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  3.31 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.06 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.213.152.73  1.73 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.213.104.34  2.30 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  211.40.6.110  49.95 ms  AS3786  China Beijing uplus.co.kr
 8  202.97.58.121  46.75 ms  AS4134  China Beijing ChinaTelecom
 9  202.97.94.181  63.70 ms  AS4134  China Beijing ChinaTelecom
10  *
11  *
12  *
13  1.202.252.42  65.27 ms  AS4847  China Beijing ChinaTelecom
14  218.241.255.161  65.97 ms  AS4847  China Beijing DRPENG
15  218.241.255.133  65.37 ms  AS4847  China Beijing DRPENG
16  *
17  218.241.255.186  69.61 ms  AS4847  China Beijing DRPENG
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 60 byte packets
 1  140.91.214.6  0.19 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  0.71 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  1.93 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  134.16 ms  AS6453  Japan Tokyo tatacommunications.com
 5  180.87.181.73  39.02 ms  AS6453  Japan Tokyo tatacommunications.com
 6  120.29.217.67  37.66 ms  AS6453  Japan Tokyo tatacommunications.com
 7  209.58.86.142  135.77 ms  AS6453  United States California Santa Clara tatacommunications.com
 8  63.243.205.130  134.21 ms  AS6453  United States California San Jose tatacommunications.com
 9  63.243.205.94  137.74 ms  AS6453  United States California San Jose tatacommunications.com
10  219.158.96.41  170.11 ms  AS4837  China Beijing ChinaUnicom
11  219.158.3.141  172.95 ms  AS4837  China Beijing ChinaUnicom
12  219.158.5.149  171.67 ms  AS4837  China Beijing ChinaUnicom
13  202.96.12.186  177.42 ms  AS4808  China Beijing ChinaUnicom
14  124.65.61.14  169.22 ms  AS4808  China Beijing ChinaUnicom
15  202.106.37.90  166.80 ms  AS4808  China Beijing ChinaUnicom
16  *
17  *
18  218.241.166.18  168.48 ms  AS4847  China Beijing DRPENG
19  218.241.253.130  171.14 ms  AS4847  China Beijing DRPENG
20  211.167.230.100  166.29 ms  AS4808,AS17964  China Beijing DRPENG


Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 60 byte packets
 1  140.91.214.3  0.15 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  1.14 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  1.76 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  134.46 ms  AS6453  Japan Tokyo tatacommunications.com
 5  180.87.181.73  36.44 ms  AS6453  Japan Tokyo tatacommunications.com
 6  64.86.252.216  134.94 ms  AS6453  United States California Los Angeles tatacommunications.com
 7  66.110.59.1  140.87 ms  AS6453  United States California Los Angeles tatacommunications.com
 8  66.110.59.182  138.53 ms  AS6453  United States California Los Angeles tatacommunications.com
 9  *
10  101.4.117.97  397.90 ms  AS4538  China Beijing CHINAEDU
11  101.4.114.197  374.59 ms  AS4538  China Beijing CHINAEDU
12  *
13  202.112.38.82  392.13 ms  AS4538  China Beijing CHINAEDU
14  202.205.109.205  401.65 ms  AS4538  China Beijing CHINAEDU


Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 60 byte packets
 1  140.91.214.6  0.15 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  2.06 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  2.17 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.02 ms  AS3786  Republic of Korea uplus.co.kr
 5  211.63.36.9  1.47 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.106.22  1.42 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  1.208.150.113  1.98 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 8  63.223.17.38  38.56 ms  AS3491  China Hong Kong pccw.com
 9  63.223.15.142  37.59 ms  AS3491  China Hong Kong pccw.com
10  *
11  159.226.254.5  71.73 ms  AS7497  China Beijing CSTNET
12  159.226.254.1  73.39 ms  AS7497  China Beijing CSTNET


Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 60 byte packets
 1  140.91.214.7  0.22 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  2.90 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.41 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.25 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.104.49  1.71 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.146.118  1.75 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  211.40.6.158  24.83 ms  AS3786  China Shanghai uplus.co.kr
 8  202.97.70.25  24.36 ms  *  China Shanghai ChinaTelecom
 9  202.97.12.193  26.33 ms  AS4134  China ChinaTelecom
10  202.97.61.85  45.00 ms  AS4134  China Shanghai ChinaTelecom
11  202.97.34.189  57.81 ms  AS4134  China Beijing ChinaTelecom
12  *
13  *
14  60.247.93.254  85.40 ms  AS4847  China Beijing uecom.com.cn ChinaTelecom
15  *
16  *
17  211.156.140.17  124.31 ms  AS7641  China Beijing chinabtn.com CATV


Traceroute to China, Hongkong CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.160.95.218 (203.160.95.218), 30 hops max, 60 byte packets
 1  140.91.214.1  0.17 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  2.29 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  2.10 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  116.0.67.37  52.20 ms  AS6453  China Hong Kong tatacommunications.com
 5  180.87.112.142  52.19 ms  AS6453  China Hong Kong tatacommunications.com
 6  180.87.163.6  63.09 ms  AS6453  China Hong Kong tatacommunications.com
 7  43.252.86.65  172.46 ms  AS10099  China Hong Kong ChinaUnicom
 8  119.252.139.14  172.73 ms  AS10099  China Hong Kong ChinaUnicom
 9  202.77.22.89  167.57 ms  AS10099  China Hong Kong ChinaUnicom
10  203.160.95.218  53.45 ms  AS10099  China Hong Kong ChinaUnicom


Traceroute to China, Hongkong CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.232.173 (203.215.232.173), 30 hops max, 60 byte packets
 1  140.91.214.3  0.19 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  0.72 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.21 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  2.23 ms  AS3786  Republic of Korea uplus.co.kr
 5  211.63.38.13  2.15 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.147.118  2.14 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  211.40.6.158  24.69 ms  AS3786  China Shanghai uplus.co.kr
 8  202.97.70.25  24.35 ms  *  China Shanghai ChinaTelecom
 9  203.215.232.173  43.22 ms  AS4134  China Hong Kong ChinaTelecom


Traceroute to China, Hongkong CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.8.25.187 (203.8.25.187), 30 hops max, 60 byte packets
 1  140.91.214.1  0.24 ms  AS31898  Republic of Korea Seoul oracle.com
 2  1.255.14.55  2.75 ms  AS9318  Republic of Korea Seoul skbroadband.com
 3  1.255.14.54  0.73 ms  AS9318  Republic of Korea Seoul skbroadband.com
 4  *
 5  1.254.241.33  36.44 ms  AS9318  China Hong Kong skbroadband.com
 6  59.43.248.146  36.47 ms  AS4809  China Hong Kong ChinaTelecom
 7  203.8.25.187  36.42 ms  AS4809  China Hong Kong ChinaTelecom


Traceroute to China, Hongkong CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.142.105.9 (203.142.105.9), 30 hops max, 60 byte packets
 1  140.91.214.2  0.22 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  2.80 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.32 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  2.25 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.213.152.37  1.20 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.213.104.34  1.46 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  *
 8  *
 9  *
10  *
11  223.118.3.74  42.36 ms  AS58453  China Hong Kong ChinaMobile
12  223.119.0.2  44.30 ms  AS58453  China Hong Kong ChinaMobile
13  203.142.100.165  43.33 ms  AS9231  China Hong Kong ChinaMobile
14  203.142.100.22  43.13 ms  AS9231  China Hong Kong ChinaMobile
15  203.142.105.9  43.60 ms  AS9231  China Hong Kong ChinaMobile


Traceroute to China, Hongkong HGC (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.188.104.30 (218.188.104.30), 30 hops max, 60 byte packets
 1  140.91.214.6  0.18 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  2.38 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  1.81 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  116.0.67.37  52.11 ms  AS6453  China Hong Kong tatacommunications.com
 5  180.87.112.142  52.10 ms  AS6453  China Hong Kong tatacommunications.com
 6  120.29.216.42  44.57 ms  AS6453  China Hong Kong tatacommunications.com
 7  218.189.5.24  45.62 ms  AS9304  China Hong Kong hgc.com.hk
 8  218.188.104.30  45.12 ms  AS9304  China Hong Kong hgc.com.hk


Traceroute to China, Hongkong HKBN (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.6.23.239 (210.6.23.239), 30 hops max, 60 byte packets
 1  140.91.214.3  1.18 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  0.69 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  1.56 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  116.0.67.37  52.79 ms  AS6453  China Hong Kong tatacommunications.com
 5  180.87.160.195  56.17 ms  AS6453  China Hong Kong tatacommunications.com
 6  180.87.160.195  53.08 ms  AS6453  China Hong Kong tatacommunications.com
 7  61.244.225.68  48.98 ms  AS9269  China Hong Kong hkbn.com.hk
 8  203.186.235.137  57.29 ms  AS9269  China Hong Kong hkbn.com.hk
 9  203.80.215.70  45.41 ms  AS9269  China Hong Kong hkbn.com.hk
10  210.6.23.239  46.12 ms  AS9269  China Hong Kong hkbn.com.hk


Traceroute to China, Hongkong PCCW (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.85.125.60 (202.85.125.60), 30 hops max, 60 byte packets
 1  140.91.214.7  0.18 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  2.18 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.14 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.21 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  1.208.144.217  3.84 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.106.22  2.35 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  1.208.150.113  2.20 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 8  63.223.17.38  38.22 ms  AS3491  China Hong Kong pccw.com
 9  63.218.61.174  41.79 ms  AS3491  China Hong Kong pccw.com
10  203.215.255.197  38.70 ms  AS9925  China Hong Kong pbase.net
11  202.153.99.203  42.57 ms  AS9925  China Hong Kong pbase.net
12  203.215.244.33  39.32 ms  AS9925  China Hong Kong pbase.net
13  202.85.125.60  40.69 ms  AS9925  China Hong Kong pccw.com


Traceroute to China, Hongkong TGT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.123.76.58 (202.123.76.58), 30 hops max, 60 byte packets
 1  140.91.214.2  0.20 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  1.17 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  2.14 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  2.12 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.175.29  1.22 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.146.130  11.65 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  129.250.9.137  28.51 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.3.89  61.74 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.7.30  29.54 ms  AS2914  NTT.COM BACKBONE ntt.com
10  129.250.2.43  62.43 ms  AS2914  China Hong Kong ntt.com
11  129.250.6.100  62.59 ms  AS2914  China Hong Kong ntt.com
12  129.250.5.30  65.44 ms  AS2914  NTT.COM BACKBONE ntt.com
13  203.131.254.14  62.48 ms  AS2914  China Hong Kong ntt.com
14  203.78.72.100  186.32 ms  AS10098  China Hong Kong towngastelecom.com
15  203.78.73.75  181.01 ms  AS10098  China Hong Kong towngastelecom.com
16  203.78.72.181  187.45 ms  AS10098  China Hong Kong towngastelecom.com
17  202.123.74.34  56.25 ms  AS10098  China Hong Kong towngastelecom.com
18  202.123.74.58  55.81 ms  AS10098  China Hong Kong towngastelecom.com
19  202.123.74.66  57.10 ms  AS10098  China Hong Kong towngastelecom.com
20  202.123.76.58  179.20 ms  AS10098  China Hong Kong towngastelecom.com


Traceroute to China, Hongkong WTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 59.152.252.242 (59.152.252.242), 30 hops max, 60 byte packets
 1  140.91.214.1  2.30 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  2.82 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  1.91 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  116.0.67.37  52.12 ms  AS6453  China Hong Kong tatacommunications.com
 5  116.0.93.146  52.39 ms  AS6453  China Hong Kong tatacommunications.com
 6  116.0.93.245  53.62 ms  AS6453  China Hong Kong tatacommunications.com
 7  115.160.187.54  52.77 ms  AS9381  China Hong Kong hkbn.com.hk
 8  *
 9  59.152.252.196  52.68 ms  AS9381  China Hong Kong hkbn.com.hk
10  59.152.252.242  52.67 ms  AS9381  China Hong Kong hkbn.com.hk


Traceroute to Singapore, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.233.1 (203.215.233.1), 30 hops max, 60 byte packets
 1  140.91.214.3  0.20 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  0.73 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.34 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  3.28 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  1.208.148.105  1.52 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.147.118  11.89 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  1.213.105.46  26.77 ms  AS3786  China Shanghai uplus.co.kr
 8  202.97.17.54  100.75 ms  AS4134  Singapore ChinaTelecom
 9  203.215.233.1  80.12 ms  AS4134  Singapore ChinaTelecom


Traceroute to Singapore, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 183.91.61.1 (183.91.61.1), 30 hops max, 60 byte packets
 1  140.91.214.2  0.19 ms  AS31898  Republic of Korea Seoul oracle.com
 2  1.255.14.55  0.83 ms  AS9318  Republic of Korea Seoul skbroadband.com
 3  1.255.14.54  1.11 ms  AS9318  Republic of Korea Seoul skbroadband.com
 4  *
 5  1.254.241.33  36.40 ms  AS9318  China Hong Kong skbroadband.com
 6  59.43.249.190  70.77 ms  AS4809  Singapore ChinaTelecom
 7  183.91.61.1  70.67 ms  AS4809  Singapore ChinaTelecom


Traceroute to Singapore, Singtel (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.201.1.11 (118.201.1.11), 30 hops max, 60 byte packets
 1  140.91.214.5  0.15 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  3.05 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  14.43 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.07 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  211.40.6.9  1.69 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.107.34  1.71 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  61.42.201.114  53.01 ms  AS3786  Republic of Korea uplus.co.kr
 8  203.208.183.250  85.47 ms  AS7473  Singapore singtel.com
 9  203.208.158.17  89.35 ms  AS7473  Singapore singtel.com
10  203.208.190.254  86.90 ms  AS7473  Singapore singtel.com
11  *
12  165.21.49.126  86.24 ms  AS3758  Singapore singtel.com
13  203.125.232.130  83.58 ms  AS3758  Singapore singtel.com
14  118.201.1.11  86.49 ms  AS3758  Singapore singtel.com


Traceroute to Singapore, StarHub (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.116.46.162 (203.116.46.162), 30 hops max, 60 byte packets
 1  140.91.214.7  0.15 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  6.56 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.28 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.22 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.213.148.81  1.44 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  61.43.235.22  1.49 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  1.208.150.214  85.07 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 8  203.118.15.182  77.99 ms  AS4657  Singapore starhub.com
 9  203.117.35.78  76.12 ms  AS38861  Singapore starhub.com
10  203.118.6.29  79.73 ms  AS4657  Singapore starhub.com
11  203.118.12.2  78.42 ms  AS4657  Singapore starhub.com
12  203.117.188.42  79.72 ms  AS4657  Singapore starhub.com
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Singapore, M1 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.123.8.123 (203.123.8.123), 30 hops max, 60 byte packets
 1  140.91.214.1  0.16 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  1.17 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  3.91 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  90.12 ms  AS6453  Japan Tokyo tatacommunications.com
 5  180.87.181.165  104.04 ms  AS6453  Japan Tokyo tatacommunications.com
 6  *
 7  180.87.12.210  95.59 ms  AS6453  Singapore tatacommunications.com
 8  203.211.158.78  90.19 ms  AS17547  Singapore m1.com.sg
 9  203.211.159.50  338.85 ms  AS17547  Singapore m1.com.sg
10  203.123.8.123  92.32 ms  AS17547  Singapore m1.com.sg


Traceroute to Singapore, AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.228.0.251 (13.228.0.251), 50 hops max, 60 byte packets
 1  140.91.214.7  0.15 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  1.15 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  2.99 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.05 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  1.208.144.217  14.66 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.145.118  35.50 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  203.233.15.234  36.90 ms  AS3786  Republic of Korea uplus.co.kr
 8  99.82.178.138  33.44 ms  *  AMAZON.COM BACKBONE amazon.com
 9  *
10  *
11  54.239.52.105  34.25 ms  AS16509  Japan Tokyo amazon.com
12  52.95.30.62  34.05 ms  AS16509  Japan Tokyo amazon.com
13  *
14  *
15  *
16  52.93.128.16  100.70 ms  *  Singapore amazon.com
17  *
18  52.93.11.40  101.45 ms  *  Singapore amazon.com
19  52.93.11.25  93.70 ms  *  Singapore amazon.com
20  203.83.223.194  100.35 ms  AS16509,AS38895  Singapore amazon.com
21  52.93.8.49  100.37 ms  *  Singapore amazon.com
22  *
23  *
24  *
25  *
26  *
27  13.228.0.251  99.09 ms  AS16509  Singapore amazon.com


Traceroute to Japan, NTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 61.213.155.84 (61.213.155.84), 30 hops max, 60 byte packets
 1  140.91.214.5  0.17 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  1.10 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.28 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.23 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.175.29  1.37 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  61.40.251.162  1.47 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  129.250.9.137  29.54 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.3.211  35.97 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.41  28.53 ms  AS2914  NTT.COM BACKBONE ntt.com
10  129.250.7.80  34.39 ms  AS2914  Japan Tokyo ntt.com
11  129.250.3.28  34.15 ms  AS2914  Japan Tokyo ntt.com
12  61.213.179.34  37.48 ms  AS2914  Japan Tokyo ntt.com
13  *
14  *
15  61.213.155.84  54.71 ms  AS2914  Japan Tokyo ntt.com


Traceroute to Japan, IIJ (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.232.15.70 (202.232.15.70), 30 hops max, 60 byte packets
 1  140.91.214.7  0.16 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  20.02 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.32 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.28 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.174.93  1.66 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.172.70  33.97 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  1.213.150.190  36.12 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 8  1.208.172.158  35.61 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 9  58.138.104.25  34.69 ms  AS2497  Japan Tokyo iij.ad.jp
10  58.138.88.5  31.88 ms  AS2497  Japan Tokyo iij.ad.jp
11  58.138.101.10  32.32 ms  AS2497  Japan Tokyo iij.ad.jp
12  210.130.142.114  32.67 ms  AS2497  Japan Tokyo iij.ad.jp
13  202.232.15.70  33.98 ms  AS2497  Japan iij.ad.jp


Traceroute to Japan, SoftBank (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.175.32.26 (210.175.32.26), 30 hops max, 60 byte packets
 1  140.91.214.7  1.11 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  31.56 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.29 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.14 ms  AS3786  Republic of Korea uplus.co.kr
 5  211.63.36.9  3.29 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.146.118  2.05 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  221.110.131.205  47.63 ms  AS17676  Japan bbtec.net
 8  *
 9  143.90.232.241  40.07 ms  AS4725  Japan Tokyo odn.ne.jp
10  143.90.47.9  37.72 ms  AS4725  Japan odn.ne.jp
11  143.90.26.226  37.44 ms  AS4725  Japan odn.ne.jp
12  143.90.54.30  38.14 ms  AS4725  Japan odn.ne.jp
13  210.175.32.123  38.36 ms  AS4725  Japan odn.ne.jp
14  210.175.32.26  38.11 ms  AS4725  Japan odn.ne.jp


Traceroute to Japan, KDDI (TCP Mode, Max 30 Hop)
============================================================
traceroute to 106.162.242.108 (106.162.242.108), 30 hops max, 60 byte packets
 1  140.91.214.7  0.19 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  0.72 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.22 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.26 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.144.117  1.55 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.107.34  1.55 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  61.43.235.126  52.95 ms  AS3786  Republic of Korea uplus.co.kr
 8  106.187.6.141  144.62 ms  AS2516  Japan kddi.com
 9  27.86.41.37  150.41 ms  AS2516  Japan kddi.com
10  *
11  111.107.101.94  38.88 ms  AS2516  Japan kddi.com
12  59.128.99.97  47.89 ms  AS2516  Japan kddi.com
13  106.162.242.108  142.69 ms  AS2516  Japan kddi.com


Traceroute to Japan, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.236.3 (203.215.236.3), 30 hops max, 60 byte packets
 1  140.91.214.6  0.20 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  1.21 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.97 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.23 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  211.40.6.9  12.62 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.147.118  2.11 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  202.97.5.113  70.75 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
 8  202.97.70.21  29.73 ms  *  China Shanghai ChinaTelecom
 9  202.97.19.94  119.77 ms  AS4134  Japan Tokyo ChinaTelecom
10  203.215.236.3  73.02 ms  AS4134  Japan Tokyo ChinaTelecom


Traceroute to Japan, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.55.27.4 (202.55.27.4), 30 hops max, 60 byte packets
 1  140.91.214.7  0.20 ms  AS31898  Republic of Korea Seoul oracle.com
 2  1.255.14.55  1.13 ms  AS9318  Republic of Korea Seoul skbroadband.com
 3  1.255.14.54  0.77 ms  AS9318  Republic of Korea Seoul skbroadband.com
 4  *
 5  1.254.241.33  36.51 ms  AS9318  China Hong Kong skbroadband.com
 6  59.43.184.198  61.62 ms  AS4809  Japan Tokyo ChinaTelecom
 7  202.55.27.4  60.83 ms  AS4809  Japan Tokyo ChinaTelecom


Traceroute to Japan, Amazon AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.112.63.251 (13.112.63.251), 50 hops max, 60 byte packets
 1  140.91.214.6  0.18 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  1.16 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.16 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.05 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  1.208.107.121  3.44 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.213.107.190  1.36 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  211.60.88.170  1.89 ms  AS3786  Republic of Korea uplus.co.kr
 8  *
 9  *
10  *
11  54.239.45.185  33.39 ms  *  Japan Tokyo amazon.com
12  52.93.135.217  33.50 ms  *  United States amazon.com
13  *
14  52.95.31.67  34.13 ms  AS16509  Japan Tokyo amazon.com
15  52.95.31.51  35.96 ms  AS16509  Japan Tokyo amazon.com
16  52.95.31.169  36.73 ms  AS16509  Japan Tokyo amazon.com
17  52.95.31.88  34.63 ms  AS16509  Japan Tokyo amazon.com
18  52.95.31.94  35.63 ms  AS16509  Japan Tokyo amazon.com
19  54.239.52.187  36.04 ms  AS16509  Japan Tokyo amazon.com
20  *
21  *
22  *
23  *
24  *
25  13.112.63.251  32.95 ms  AS16509  Japan Tokyo amazon.com


Traceroute to South Korea, KT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.114.41.101 (210.114.41.101), 30 hops max, 60 byte packets
 1  140.91.214.6  0.29 ms  AS31898  Republic of Korea Seoul oracle.com
 2  121.189.3.238  3.18 ms  AS4766  Republic of Korea Seoul kt.com
 3  121.189.3.237  0.87 ms  AS4766  Republic of Korea Seoul kt.com
 4  *
 5  112.174.21.22  4.64 ms  AS4766  Republic of Korea Seoul kt.com
 6  112.188.246.210  1.69 ms  AS4766  Republic of Korea Seoul kt.com
 7  220.90.203.2  9.70 ms  AS4766  Republic of Korea Seoul kt.com
 8  211.37.137.22  1.79 ms  AS4766  Republic of Korea Seoul kt.com
 9  210.114.41.101  3.17 ms  AS4766  Republic of Korea Seoul kt.com


Traceroute to South Korea, SK (TCP Mode, Max 30 Hop)
============================================================
traceroute to 175.122.253.62 (175.122.253.62), 30 hops max, 60 byte packets
 1  140.91.214.3  0.21 ms  AS31898  Republic of Korea Seoul oracle.com
 2  1.255.14.55  1.09 ms  AS9318  Republic of Korea Seoul skbroadband.com
 3  1.255.14.54  0.72 ms  AS9318  Republic of Korea Seoul skbroadband.com
 4  *
 5  *
 6  175.122.253.62  1.03 ms  AS9318  Republic of Korea skbroadband.com


Traceroute to South Korea, LG (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.174.62.44 (211.174.62.44), 30 hops max, 60 byte packets
 1  140.91.214.7  0.21 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  3.33 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  2.14 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.35 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  210.120.105.162  3.40 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.213.150.77  4.21 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  1.208.104.110  1.68 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 8  117.52.240.78  3.39 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 9  114.108.170.50  3.39 ms  AS3786  Republic of Korea Seoul uplus.co.kr
10  211.174.62.44  2.29 ms  AS3786  Republic of Korea Seoul uplus.co.kr


Traceroute to South Korea, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.185.246.12 (218.185.246.12), 30 hops max, 60 byte packets
 1  140.91.214.5  1.19 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  3.85 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.36 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.04 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  58.229.11.206  1.98 ms  AS9318  Republic of Korea Seoul skbroadband.com
 6  1.208.148.142  7.62 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  59.43.184.10  44.61 ms  AS4809  Republic of Korea Seoul ChinaTelecom
 8  *
 9  *
10  59.43.184.10  45.09 ms  AS4809  Republic of Korea Seoul ChinaTelecom
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to South Korea, Amazon AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.124.63.251 (13.124.63.251), 50 hops max, 60 byte packets
 1  140.91.214.5  0.25 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  3.25 ms  AS3786  Republic of Korea uplus.co.kr
 3  1.255.14.54  0.77 ms  AS9318  Republic of Korea Seoul skbroadband.com
 4  *
 5  1.208.167.142  1.42 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  211.210.54.34  1.78 ms  AS9318  Republic of Korea Seoul skbroadband.com
 7  *
 8  *
 9  52.93.46.57  2.73 ms  *  Republic of Korea Seoul amazon.com
10  *
11  *
12  52.93.248.161  4.08 ms  *  Republic of Korea Seoul amazon.com
13  54.239.123.31  3.13 ms  AS16509  Republic of Korea Seoul amazon.com
14  *
15  *
16  *
17  *
18  13.124.63.251  2.88 ms  AS16509  Republic of Korea Seoul amazon.com


Traceroute to China, Taiwan Chief (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.133.242.116 (202.133.242.116), 30 hops max, 60 byte packets
 1  140.91.214.3  0.25 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  0.79 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  7.16 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.06 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.104.53  1.47 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.147.118  2.07 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  211.22.33.126  52.36 ms  AS3462  China Taiwan Taipei City cht.com.tw
 8  220.128.10.234  52.33 ms  AS3462  China Taiwan Taipei City cht.com.tw
 9  220.128.2.170  54.48 ms  AS3462  China Taiwan Taipei City cht.com.tw
10  220.128.2.237  54.53 ms  AS3462  China Taiwan Taipei City cht.com.tw
11  203.75.228.153  53.76 ms  AS3462  China Taiwan Taipei City cht.com.tw
12  103.123.253.9  53.10 ms  *  China Taiwan Taipei City chief.com.tw
13  113.21.95.72  53.78 ms  AS17408  China Taiwan Taipei City chief.com.tw
14  103.123.254.38  57.25 ms  *  China Taiwan Taipei City chief.com.tw
15  202.133.242.114  53.68 ms  AS17408  China Taiwan Taipei City chief.com.tw
16  202.133.242.116  53.93 ms  AS17408  China Taiwan Taipei City chief.com.tw


Traceroute to China, Taiwan APTG (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.200.69.90 (210.200.69.90), 30 hops max, 60 byte packets
 1  140.91.214.1  0.37 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  2.88 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.12 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.06 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.144.117  1.64 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.213.104.34  1.59 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  210.108.16.150  32.85 ms  AS3786  Republic of Korea uplus.co.kr
 8  202.84.149.97  4.54 ms  AS4637,AS10026  Republic of Korea Seoul telstra.com
 9  202.84.137.26  33.25 ms  AS4637,AS10026  Japan Tokyo telstra.com
10  202.84.140.202  70.99 ms  AS4637,AS10026  China Taiwan Taipei City telstra.com
11  202.84.137.250  65.59 ms  AS4637,AS10026  China Taiwan Taipei City telstra.com
12  210.176.44.78  66.95 ms  AS4637,AS10026  China Taiwan Taipei City telstra.com
13  211.76.96.76  94.41 ms  AS17709  China Taiwan Taipei City aptg.com.tw
14  211.76.100.53  65.10 ms  AS17709  China Taiwan Taipei City aptg.com.tw
15  210.200.80.254  65.44 ms  AS131142  China Taiwan Taipei City aptg.com.tw
16  *
17  210.200.69.90  65.76 ms  AS131142  China Taiwan Taipei City aptg.com.tw


Traceroute to China, Taiwan CHT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.75.129.162 (203.75.129.162), 30 hops max, 60 byte packets
 1  140.91.214.1  0.24 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  2.83 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.22 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.17 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  210.120.117.113  1.41 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.146.118  1.84 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  1.208.105.38  52.58 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 8  220.128.4.38  52.38 ms  AS3462  China Taiwan Taipei City cht.com.tw
 9  220.128.1.170  52.83 ms  AS3462  China Taiwan Taipei City cht.com.tw
10  220.128.2.5  53.75 ms  AS3462  China Taiwan Taipei City cht.com.tw
11  211.22.229.45  52.76 ms  AS3462  China Taiwan Taipei City cht.com.tw
12  1.1.1.2  54.21 ms  AS12445  CLOUDFLARE.COM apnic.net
13  *
14  203.75.129.162  52.73 ms  AS3462  China Taiwan Taipei City cht.com.tw


Traceroute to China, Taiwan TFN (TCP Mode, Max 30 Hop)
============================================================
traceroute to 219.87.66.3 (219.87.66.3), 30 hops max, 60 byte packets
 1  140.91.214.3  0.23 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  0.74 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  2.29 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  3.30 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.175.29  1.45 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.106.22  1.26 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  1.208.150.113  2.02 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 8  63.223.9.198  70.30 ms  AS3491  China Taiwan Taipei City pccw.com
 9  *
10  60.199.14.242  155.94 ms  AS9924  China Taiwan Taipei City twmbroadband.com
11  60.199.16.206  61.57 ms  AS9924  China Taiwan Taipei City twmbroadband.com
12  219.87.66.3  60.72 ms  AS9924  China Taiwan Taipei City twmbroadband.com


Traceroute to China,Taiwan FET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.73.144.38 (211.73.144.38), 30 hops max, 60 byte packets
 1  140.91.214.5  0.26 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  2.79 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.20 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.06 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  1.208.174.29  1.63 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.106.2  1.36 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  129.250.9.137  31.54 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.3.211  68.82 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.129  28.30 ms  AS2914  NTT.COM BACKBONE ntt.com
10  129.250.4.182  64.25 ms  AS2914  NTT.COM BACKBONE ntt.com
11  199.245.16.34  69.96 ms  AS2914  China Taiwan Taipei City ntt.com
12  192.72.155.209  59.66 ms  AS4780  China Taiwan Taipei City fetnet.net
13  192.72.155.98  50.17 ms  AS4780  China Taiwan Taipei City fetnet.net
14  *
15  *
16  *
17  211.73.144.38  55.94 ms  AS9674  China Taiwan fetnet.net


Traceroute to China, Taiwan KBT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 61.63.0.102 (61.63.0.102), 30 hops max, 60 byte packets
 1  140.91.214.2  1.22 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  2.92 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.33 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.08 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  1.208.105.253  22.02 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.147.118  37.03 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  203.160.225.41  54.92 ms  AS9505  China Taiwan Taipei City twgate.net
 8  175.41.60.113  57.55 ms  AS9505  China Taiwan Taipei City twgate.net
 9  175.41.61.174  86.09 ms  AS9505  China Taiwan Taipei City twgate.net
10  *
11  203.187.9.241  79.56 ms  AS9416  China Taiwan Taipei City kbtelecom.net
12  203.187.9.238  53.26 ms  AS9416  China Taiwan Taipei City kbtelecom.net
13  58.86.1.174  53.88 ms  AS18042  China Taiwan Taipei City kbtelecom.net
14  58.86.0.94  51.96 ms  AS18042  China Taiwan Taipei City kbtelecom.net
15  58.86.0.26  51.95 ms  AS18042  China Taiwan Taipei City kbtelecom.net
16  61.63.0.102  53.41 ms  AS18042  China Taiwan Taipei City kbtelecom.net


Traceroute to China, Taiwan TAIFO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 103.31.196.203 (103.31.196.203), 30 hops max, 60 byte packets
 1  140.91.214.6  3.26 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  0.81 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.43 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.05 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.145.189  1.85 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.107.34  1.76 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  62.216.147.209  1.67 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
 8  62.216.129.170  31.95 ms  AS15412  Japan Tokyo globalcloudxchange.com
 9  85.95.27.102  58.92 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
10  80.77.2.202  46.68 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
11  103.123.252.13  48.64 ms  *  China Taiwan Taipei City chief.com.tw
12  113.21.95.123  78.60 ms  AS17408  China Taiwan Taipei City chief.com.tw
13  113.21.84.210  46.53 ms  *  China Taiwan Taipei City chief.com.tw
14  103.31.197.122  47.49 ms  AS131584  China Taiwan Taipei City taifo.com.tw
15  *
16  103.31.197.70  47.17 ms  AS131584  China Taiwan Taipei City taifo.com.tw
17  103.31.196.203  46.45 ms  AS131584  China Taiwan Taipei City taifo.com.tw


Traceroute to United States, Los Angeles China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  140.91.214.6  0.22 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  0.80 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.15 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.04 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.145.153  1.34 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.147.118  4.19 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  211.40.6.158  24.76 ms  AS3786  China Shanghai uplus.co.kr
 8  202.97.55.201  26.21 ms  AS4134  China Shanghai ChinaTelecom
 9  218.30.33.17  268.90 ms  AS4134  United States ctamericas.com


Traceroute to United States, Los Angeles China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.102.252.100 (66.102.252.100), 30 hops max, 60 byte packets
 1  140.91.214.6  0.15 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  0.82 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  3.23 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.27 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.104.57  1.52 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.104.214  162.14 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  203.255.234.142  130.36 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 8  61.42.234.6  125.55 ms  AS3786  United States California Los Angeles uplus.co.kr
 9  *
10  4.71.136.202  140.31 ms  AS3356  United States California Los Angeles level3.com
11  66.102.252.100  138.88 ms  AS4809  United States ctamericas.com


Traceroute to United States, Los Angeles PCCW (TCP Mode, Max 30 Hop)
============================================================
traceroute to 63.218.42.81 (63.218.42.81), 30 hops max, 60 byte packets
 1  140.91.214.5  0.24 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  3.28 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.92 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.06 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  1.208.175.93  1.62 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  61.40.251.158  1.68 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  203.233.17.118  125.86 ms  AS3786  United States California Los Angeles uplus.co.kr
 8  63.218.51.141  134.08 ms  AS3491  United States California Los Angeles pccw.com
 9  63.218.42.81  133.71 ms  AS3491  United States California Los Angeles pccw.com


Traceroute to United States, Los Angeles HE (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.220.18.42 (66.220.18.42), 30 hops max, 60 byte packets
 1  140.91.214.7  0.15 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  3.31 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.25 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.12 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  210.120.103.225  2.53 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.104.34  38.66 ms  AS3786  China Hong Kong uplus.co.kr
 7  1.208.148.206  35.62 ms  AS3786  China Hong Kong uplus.co.kr
 8  123.255.91.158  52.78 ms  AS64050,AS135423  China Hong Kong hkix.net
 9  184.105.64.125  163.58 ms  AS6939  United States California Los Angeles he.net
10  72.52.92.121  170.86 ms  AS6939  United States California Los Angeles he.net
11  66.220.18.42  170.85 ms  AS6939  United States California Los Angeles he.net


Traceroute to United States, Los Angeles GTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 173.205.77.98 (173.205.77.98), 30 hops max, 60 byte packets
 1  140.91.214.5  0.14 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  3.35 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  1.90 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  135.28 ms  AS6453  Japan Tokyo tatacommunications.com
 5  180.87.181.73  93.10 ms  AS6453  Japan Tokyo tatacommunications.com
 6  64.86.252.60  141.15 ms  AS6453  United States California Los Angeles tatacommunications.com
 7  66.110.59.1  142.93 ms  AS6453  United States California Los Angeles tatacommunications.com
 8  64.86.197.99  141.45 ms  AS6453  United States California Los Angeles tatacommunications.com
 9  89.149.181.102  141.19 ms  AS3257,AS8928  United States California Los Angeles gtt.net
10  173.205.77.98  144.25 ms  AS3257,AS8928  United States California Los Angeles gtt.net


Traceroute to United States, San Fransico ATT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 12.169.215.33 (12.169.215.33), 30 hops max, 60 byte packets
 1  140.91.214.5  0.20 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  2.25 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  1.76 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  133.45 ms  AS6453  Japan Tokyo tatacommunications.com
 5  180.87.181.73  37.63 ms  AS6453  Japan Tokyo tatacommunications.com
 6  120.29.217.67  35.62 ms  AS6453  Japan Tokyo tatacommunications.com
 7  209.58.86.142  135.85 ms  AS6453  United States California Santa Clara tatacommunications.com
 8  63.243.205.74  133.10 ms  AS6453  United States California San Jose tatacommunications.com
 9  192.205.37.69  144.95 ms  AS7018  United States California att.com
10  12.122.114.6  141.44 ms  AS7018  United States California San Francisco att.com
11  12.122.110.13  137.90 ms  AS7018  United States California att.com
12  12.244.156.30  140.58 ms  AS7018  United States California att.com
13  12.169.215.33  147.23 ms  AS7018  United States California att.com


Traceroute to United States, New York TATA (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.198.181.100 (66.198.181.100), 30 hops max, 60 byte packets
 1  140.91.214.6  1.22 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  6.23 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  1.75 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  203.57 ms  AS6453  Japan Tokyo tatacommunications.com
 5  180.87.180.1  207.84 ms  AS6453  Japan Tokyo tatacommunications.com
 6  *
 7  209.58.86.142  202.73 ms  AS6453  United States California Santa Clara tatacommunications.com
 8  63.243.205.12  207.39 ms  AS6453  United States California San Jose tatacommunications.com
 9  63.243.128.30  203.44 ms  AS6453  United States New York New York City tatacommunications.com
10  63.243.128.26  202.84 ms  AS6453  United States New York New York City tatacommunications.com
11  216.6.90.73  202.18 ms  AS6453  United States New York New York City tatacommunications.com
12  209.58.75.198  202.92 ms  AS6453  United States New York New York City tatacommunications.com
13  66.198.181.100  204.62 ms  AS6453  United States New York New York City tatacommunications.com


Traceroute to United States, San Jose China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  140.91.214.3  0.47 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  3.47 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.34 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.21 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.175.29  1.42 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.147.118  2.09 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  211.40.6.158  24.62 ms  AS3786  China Shanghai uplus.co.kr
 8  202.97.99.218  198.17 ms  AS4134  United States California Los Angeles ChinaTelecom
 9  202.97.6.2  168.53 ms  AS4134  China Shanghai ChinaTelecom
10  218.30.33.17  269.04 ms  AS4134  United States ctamericas.com


Traceroute to United States, San Jose NTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 23.11.26.62 (23.11.26.62), 30 hops max, 60 byte packets
 1  140.91.214.3  0.15 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  2.85 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  3.21 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  116.0.67.37  52.25 ms  AS6453  China Hong Kong tatacommunications.com
 5  116.0.93.136  52.49 ms  AS6453  China Hong Kong tatacommunications.com
 6  116.0.93.211  53.01 ms  AS6453  China Hong Kong tatacommunications.com
 7  129.250.6.93  53.10 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.2.50  67.90 ms  AS2914  Japan Tokyo ntt.com
 9  129.250.5.78  170.31 ms  AS2914  NTT.COM BACKBONE ntt.com
10  129.250.6.119  166.63 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.2.48  171.74 ms  AS2914  NTT.COM BACKBONE ntt.com
12  23.11.26.62  174.26 ms  AS2914  United States California San Jose akamai.com


Traceroute to United States, Fremont HE (TCP Mode, Max 30 Hop)
============================================================
traceroute to 72.52.104.74 (72.52.104.74), 30 hops max, 60 byte packets
 1  140.91.214.5  0.15 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  0.74 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.17 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.08 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  211.63.37.13  1.46 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.107.78  39.51 ms  AS3786  China Hong Kong uplus.co.kr
 7  1.208.148.206  39.07 ms  AS3786  China Hong Kong uplus.co.kr
 8  123.255.91.158  41.24 ms  AS64050,AS135423  China Hong Kong hkix.net
 9  184.105.64.130  62.92 ms  AS6939  Japan Tokyo he.net
10  184.105.213.117  142.50 ms  AS6939  United States Washington Seattle he.net
11  184.105.223.217  167.10 ms  AS6939  HE.NET BACKBONE he.net
12  184.105.213.158  164.81 ms  AS6939  United States California Fremont he.net
13  72.52.104.74  165.22 ms  AS6939  United States California Fremont he.net


Traceroute to United States, Las Vegas Level3 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 205.216.62.38 (205.216.62.38), 30 hops max, 60 byte packets
 1  140.91.214.3  2.17 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  3.07 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  1.59 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  134.50 ms  AS6453  Japan Tokyo tatacommunications.com
 5  180.87.181.73  284.46 ms  AS6453  Japan Tokyo tatacommunications.com
 6  64.86.252.56  141.20 ms  AS6453  United States California Los Angeles tatacommunications.com
 7  66.110.59.1  140.89 ms  AS6453  United States California Los Angeles tatacommunications.com
 8  63.146.26.145  138.85 ms  AS209  United States California Los Angeles centurylink.com
 9  208.168.142.98  170.17 ms  AS3561  United States Texas centurylink.com
10  216.34.172.42  168.73 ms  AS3561  United States Texas Dallas centurylink.com
11  216.34.164.86  178.02 ms  AS3561  United States Texas Dallas centurylink.com
12  205.216.7.204  197.51 ms  AS3561  United States Texas Dallas centurylink.com
13  *
14  205.216.62.38  198.01 ms  AS3561  United States Texas Dallas centurylink.com


Traceroute to United States, Miami ZAYO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 64.125.191.144 (64.125.191.144), 30 hops max, 60 byte packets
 1  140.91.214.1  0.14 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  0.83 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  1.53 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  133.46 ms  AS6453  Japan Tokyo tatacommunications.com
 5  180.87.181.73  37.10 ms  AS6453  Japan Tokyo tatacommunications.com
 6  120.29.211.2  35.90 ms  AS6453  Japan Chiba tatacommunications.com
 7  209.58.86.142  137.38 ms  AS6453  United States California Santa Clara tatacommunications.com
 8  63.243.205.74  133.06 ms  AS6453  United States California San Jose tatacommunications.com
 9  63.243.205.10  135.56 ms  AS6453  United States California San Jose tatacommunications.com
10  64.125.31.12  132.91 ms  AS6461  United States California San Jose zayo.com
11  64.125.30.230  194.23 ms  AS6461  United States California San Jose zayo.com
12  64.125.28.145  205.88 ms  AS6461  ZAYO.COM BACKBONE zayo.com
13  64.125.29.52  214.85 ms  AS6461  United States Texas Dallas zayo.com
14  64.125.26.35  200.69 ms  AS6461  United States Florida Miami zayo.com
15  64.125.28.10  197.14 ms  AS6461  United States Florida Miami zayo.com
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to United States, Ashburn Cogentco (TCP Mode, Max 30 Hop)
============================================================
traceroute to 149.127.109.166 (149.127.109.166), 30 hops max, 60 byte packets
 1  140.91.214.5  0.14 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  2.98 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  1.75 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  133.44 ms  AS6453  Japan Tokyo tatacommunications.com
 5  180.87.180.1  139.06 ms  AS6453  Japan Tokyo tatacommunications.com
 6  120.29.217.67  40.90 ms  AS6453  Japan Tokyo tatacommunications.com
 7  209.58.86.142  141.30 ms  AS6453  United States California Santa Clara tatacommunications.com
 8  63.243.205.12  133.63 ms  AS6453  United States California San Jose tatacommunications.com
 9  154.54.12.141  135.69 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
10  154.54.43.13  141.02 ms  AS174  United States California San Jose cogentco.com
11  154.54.44.142  154.24 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
12  154.54.41.146  162.37 ms  AS174  United States Colorado Denver cogentco.com
13  154.54.31.90  170.50 ms  AS174  United States Missouri Kansas City cogentco.com
14  154.54.44.170  186.97 ms  AS174  United States Illinois Chicago cogentco.com
15  154.54.6.222  190.50 ms  AS174  United States Ohio Cleveland cogentco.com
16  154.54.82.254  193.84 ms  AS174  United States Virginia Arlington cogentco.com
17  154.54.46.190  200.81 ms  AS174  United States Virginia Herndon cogentco.com
18  38.140.164.58  198.90 ms  AS174  United States Virginia Herndon cogentco.com
19  149.127.109.2  197.30 ms  AS174  United States Virginia Ashburn cogentco.com
20  149.127.109.166  198.44 ms  AS174  United States Virginia Ashburn cogentco.com


Traceroute to German, Telekom (TCP Mode, Max 30 Hop)
============================================================
traceroute to 80.146.191.1 (80.146.191.1), 30 hops max, 60 byte packets
 1  140.91.214.6  0.17 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  0.83 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  2.08 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  136.20 ms  AS6453  Japan Tokyo tatacommunications.com
 5  180.87.181.73  156.84 ms  AS6453  Japan Tokyo tatacommunications.com
 6  64.86.252.58  141.43 ms  AS6453  United States California Los Angeles tatacommunications.com
 7  64.86.252.66  141.19 ms  AS6453  United States California Los Angeles tatacommunications.com
 8  80.150.168.245  140.77 ms  AS3320  United States California Los Angeles telekom.de
 9  91.23.217.165  291.19 ms  AS3320  Germany North Rhine-Westphalia telekom.de
10  80.146.191.1  314.76 ms  AS3320  Germany North Rhine-Westphalia telekom.de


Traceroute to German, Frankfurt O2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 82.113.108.25 (82.113.108.25), 30 hops max, 60 byte packets
 1  140.91.214.1  0.22 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  1.10 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.29 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.06 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.144.117  3.89 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.106.17  35.91 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  1.208.104.218  227.02 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 8  203.252.12.201  238.65 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 9  80.81.193.89  220.77 ms  AS28634,AS29686,AS61568  Germany Hesse Frankfurt de-cix.net
10  62.53.28.170  225.02 ms  AS6805  Germany telefonica.de
11  62.53.0.208  226.08 ms  AS6805  Germany telefonica.de
12  62.53.28.149  221.54 ms  AS6805  Germany telefonica.de
13  82.113.108.25  231.18 ms  AS39706  Germany Hesse Frankfurt o2online.de


Traceroute to German, Frankfurt Vodafone (TCP Mode, Max 50 Hop)
============================================================
traceroute to 139.7.146.11 (139.7.146.11), 50 hops max, 60 byte packets
 1  140.91.214.1  0.24 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  0.94 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  1.68 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  267.91 ms  AS6453  Japan Tokyo tatacommunications.com
 5  180.87.181.73  45.03 ms  AS6453  Japan Tokyo tatacommunications.com
 6  120.29.211.2  96.06 ms  AS6453  Japan Chiba tatacommunications.com
 7  209.58.86.142  270.67 ms  AS6453  United States California Santa Clara tatacommunications.com
 8  63.243.205.130  261.42 ms  AS6453  United States California San Jose tatacommunications.com
 9  63.243.128.30  266.54 ms  AS6453  United States New York New York City tatacommunications.com
10  63.243.128.70  257.92 ms  AS6453  United States New York New York City tatacommunications.com
11  80.231.20.106  262.24 ms  AS6453  United Kingdom London tatacommunications.com
12  195.2.21.41  274.22 ms  AS1273  United Kingdom London vodafone.com
13  195.2.24.125  273.92 ms  AS1273  United Kingdom London vodafone.com
14  195.2.31.14  284.14 ms  AS1273  Netherlands North Holland Amsterdam vodafone.com
15  195.2.2.242  263.37 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
16  *
17  145.253.5.57  272.90 ms  AS3209  Germany vodafone.de
18  92.79.230.2  273.62 ms  AS3209  Germany vodafone.de
19  139.7.148.84  280.97 ms  AS3209  Germany vodafone.de
20  *
21  *
22  *
23  *
24  139.7.146.11  310.55 ms  AS3209  Germany vodafone.de


Traceroute to German, Frankfurt China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.85.205.101 (118.85.205.101), 30 hops max, 60 byte packets
 1  140.91.214.3  0.45 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  4.54 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.26 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  2.21 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.173.93  1.71 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.147.118  1.99 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  202.97.5.113  72.12 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
 8  202.97.70.17  29.08 ms  *  China Shanghai ChinaTelecom
 9  118.85.205.101  249.77 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom


Traceroute to German, Frankfurt China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 5.10.138.33 (5.10.138.33), 30 hops max, 60 byte packets
 1  140.91.214.5  0.17 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  3.28 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  3.42 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.22 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  210.120.103.225  1.39 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.107.90  137.34 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  203.233.17.118  141.94 ms  AS3786  United States California Los Angeles uplus.co.kr
 8  61.42.234.6  146.04 ms  AS3786  United States California Los Angeles uplus.co.kr
 9  *
10  *
11  212.187.165.22  267.02 ms  AS3356  United Kingdom London level3.com
12  59.43.180.113  291.66 ms  AS4809  Europe Regions ChinaTelecom
13  5.10.138.33  288.09 ms  AS4809  Germany cteurope.net


Traceroute to German, Frankfurt GTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 213.200.65.70 (213.200.65.70), 30 hops max, 60 byte packets
 1  140.91.214.6  1.25 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  0.77 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  1.79 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  133.07 ms  AS6453  Japan Tokyo tatacommunications.com
 5  180.87.180.1  138.84 ms  AS6453  Japan Tokyo tatacommunications.com
 6  120.29.211.2  39.61 ms  AS6453  Japan Chiba tatacommunications.com
 7  209.58.86.142  135.03 ms  AS6453  United States California Santa Clara tatacommunications.com
 8  63.243.205.12  132.11 ms  AS6453  United States California San Jose tatacommunications.com
 9  63.243.205.2  132.66 ms  AS6453  United States California San Jose tatacommunications.com
10  64.86.21.62  136.08 ms  AS6453  United States California San Jose tatacommunications.com
11  213.200.115.161  282.94 ms  AS3257,AS8928  Germany Hesse Frankfurt gtt.net
12  213.200.65.70  283.56 ms  AS3257,AS8928  GTT.NET BACKBONE gtt.net


Traceroute to German, FrankfurtCogentco (TCP Mode, Max 30 Hop)
============================================================
traceroute to 212.20.150.5 (212.20.150.5), 30 hops max, 60 byte packets
 1  140.91.214.5  0.16 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  3.04 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  3.75 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  134.02 ms  AS6453  Japan Tokyo tatacommunications.com
 5  *
 6  120.29.211.2  37.43 ms  AS6453  Japan Chiba tatacommunications.com
 7  209.58.86.142  137.21 ms  AS6453  United States California Santa Clara tatacommunications.com
 8  63.243.205.130  134.18 ms  AS6453  United States California San Jose tatacommunications.com
 9  154.54.12.141  134.30 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
10  154.54.43.9  141.70 ms  AS174  United States California San Jose cogentco.com
11  154.54.44.142  154.36 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
12  154.54.42.98  161.75 ms  AS174  United States Colorado Denver cogentco.com
13  154.54.31.90  169.74 ms  AS174  United States Missouri Kansas City cogentco.com
14  154.54.42.166  185.19 ms  AS174  United States Illinois Chicago cogentco.com
15  154.54.6.222  189.58 ms  AS174  United States Ohio Cleveland cogentco.com
16  154.54.31.226  200.02 ms  AS174  Canada Ontario Toronto cogentco.com
17  154.54.41.206  204.79 ms  AS174  Canada Quebec Montreal cogentco.com
18  154.54.44.161  276.41 ms  AS174  United Kingdom Merseyside County Southport cogentco.com
19  154.54.58.70  277.79 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
20  130.117.0.142  286.05 ms  AS174  Germany Hesse Frankfurt cogentco.com
21  130.117.48.94  288.22 ms  AS174  Germany Hesse Frankfurt cogentco.com
22  212.20.150.5  282.78 ms  AS174  Germany Hesse Frankfurt cogentco.com


Traceroute to United Kingdom, Vodafone (TCP Mode, Max 30 Hop)
============================================================
traceroute to 194.62.232.211 (194.62.232.211), 30 hops max, 60 byte packets
 1  140.91.214.6  0.14 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  1.29 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  2.76 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  268.66 ms  AS6453  Japan Tokyo tatacommunications.com
 5  180.87.181.73  1316.01 ms  AS6453  Japan Tokyo tatacommunications.com
 6  120.29.217.67  214.12 ms  AS6453  Japan Tokyo tatacommunications.com
 7  209.58.86.142  271.47 ms  AS6453  United States California Santa Clara tatacommunications.com
 8  63.243.205.74  259.53 ms  AS6453  United States California San Jose tatacommunications.com
 9  63.243.128.30  268.89 ms  AS6453  United States New York New York City tatacommunications.com
10  63.243.128.135  268.42 ms  AS6453  United States New York New York City tatacommunications.com
11  80.231.20.106  280.60 ms  AS6453  United Kingdom London tatacommunications.com
12  195.2.21.41  276.02 ms  AS1273  United Kingdom London vodafone.com
13  195.2.25.169  276.47 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
14  *
15  *
16  194.62.232.211  272.23 ms  AS25135  United Kingdom vodafone.com


Traceroute to United Kingdom， BT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 213.121.43.24 (213.121.43.24), 30 hops max, 60 byte packets
 1  140.91.214.6  0.25 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  2.88 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  1.69 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  267.91 ms  AS6453  Japan Tokyo tatacommunications.com
 5  180.87.180.1  266.72 ms  AS6453  Japan Tokyo tatacommunications.com
 6  120.29.211.2  45.36 ms  AS6453  Japan Chiba tatacommunications.com
 7  209.58.86.142  272.88 ms  AS6453  United States California Santa Clara tatacommunications.com
 8  63.243.205.72  268.35 ms  AS6453  United States California San Jose tatacommunications.com
 9  63.243.128.28  262.69 ms  AS6453  United States New York New York City tatacommunications.com
10  63.243.128.59  258.39 ms  AS6453  United States New York New York City tatacommunications.com
11  63.243.216.23  260.58 ms  AS6453  United States New York New York City tatacommunications.com
12  80.231.20.2  268.03 ms  AS6453  United Kingdom London tatacommunications.com
13  166.49.129.39  258.08 ms  AS5400  United Kingdom bt.com
14  62.6.201.221  262.63 ms  AS2856  United Kingdom London bt.com
15  109.159.249.32  262.53 ms  AS2856  United Kingdom bt.com
16  194.72.7.69  262.57 ms  AS2856  United Kingdom London bt.com
17  *
18  *
19  *
20  *
21  *
22  213.121.43.24  275.65 ms  AS2856  United Kingdom bt.com


Traceroute to United Kingdom, London TATA (TCP Mode, Max 30 Hop)
============================================================
traceroute to 80.231.60.38 (80.231.60.38), 30 hops max, 60 byte packets
 1  140.91.214.5  0.17 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  0.80 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  3.29 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  269.00 ms  AS6453  Japan Tokyo tatacommunications.com
 5  180.87.180.1  273.83 ms  AS6453  Japan Tokyo tatacommunications.com
 6  120.29.211.2  151.37 ms  AS6453  Japan Chiba tatacommunications.com
 7  209.58.86.142  271.03 ms  AS6453  United States California Santa Clara tatacommunications.com
 8  63.243.205.74  267.93 ms  AS6453  United States California San Jose tatacommunications.com
 9  63.243.128.30  267.95 ms  AS6453  United States New York New York City tatacommunications.com
10  63.243.128.59  258.68 ms  AS6453  United States New York New York City tatacommunications.com
11  80.231.20.106  278.21 ms  AS6453  United Kingdom London tatacommunications.com
12  80.231.62.58  260.03 ms  AS6453  United Kingdom London tatacommunications.com
13  80.231.60.38  266.98 ms  AS6453  United Kingdom London tatacommunications.com


Traceroute to Russia, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.85.205.180 (118.85.205.180), 30 hops max, 60 byte packets
 1  140.91.214.2  0.16 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  1.09 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.15 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.06 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  210.120.103.225  12.52 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.147.118  2.03 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 7  202.97.5.113  71.95 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
 8  202.97.70.25  24.44 ms  *  China Shanghai ChinaTelecom
 9  202.97.41.14  50.42 ms  AS4134  China Beijing ChinaTelecom
10  202.97.30.230  79.20 ms  AS4134  Russian Federation Primorsky Krai Vladivostok ChinaTelecom
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Russia, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 185.75.173.17 (185.75.173.17), 30 hops max, 60 byte packets
 1  140.91.214.7  0.28 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  1.14 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.14 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.150.113  1.21 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 5  1.208.174.29  31.19 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.208.104.90  133.74 ms  AS3786  United States California Los Angeles uplus.co.kr
 7  203.255.234.134  137.34 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 8  61.42.234.6  133.90 ms  AS3786  United States California Los Angeles uplus.co.kr
 9  *
10  *
11  212.187.165.22  268.34 ms  AS3356  United Kingdom London level3.com
12  59.43.180.113  288.23 ms  AS4809  Europe Regions ChinaTelecom
13  185.75.173.17  331.14 ms  AS4809  Russian Federation Moscow cteurope.net


Traceroute to Russia, Moscow RT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 87.226.162.77 (87.226.162.77), 30 hops max, 60 byte packets
 1  140.91.214.6  0.21 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  0.72 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  1.19 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.25 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.104.53  24.70 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.213.104.86  31.80 ms  AS3786  Japan Tokyo uplus.co.kr
 7  203.233.15.186  31.89 ms  AS3786  Republic of Korea uplus.co.kr
 8  87.226.221.24  33.27 ms  AS12389  Russian Federation rt.ru
 9  213.59.211.241  158.98 ms  AS12389  Russian Federation Moscow rt.ru
10  87.226.140.2  153.74 ms  AS12389  Russian Federation Moscow rt.ru
11  *
12  87.226.162.77  151.58 ms  AS12389  Russian Federation Moscow rt.ru


Traceroute to Russia, Moscow TTK (TCP Mode, Max 30 Hop)
============================================================
traceroute to 217.150.32.2 (217.150.32.2), 30 hops max, 60 byte packets
 1  140.91.214.6  3.28 ms  AS31898  Republic of Korea Seoul oracle.com
 2  116.0.77.10  2.87 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 3  116.0.77.9  3.76 ms  AS6453  Republic of Korea Seoul tatacommunications.com
 4  180.87.181.92  282.50 ms  AS6453  Japan Tokyo tatacommunications.com
 5  180.87.180.1  277.46 ms  AS6453  Japan Tokyo tatacommunications.com
 6  120.29.217.67  36.37 ms  AS6453  Japan Tokyo tatacommunications.com
 7  209.58.86.142  287.67 ms  AS6453  United States California Santa Clara tatacommunications.com
 8  63.243.205.72  286.80 ms  AS6453  United States California San Jose tatacommunications.com
 9  63.243.128.30  271.67 ms  AS6453  United States New York New York City tatacommunications.com
10  80.231.131.220  283.99 ms  AS6453  United Kingdom London tatacommunications.com
11  216.6.90.22  280.36 ms  AS6453  United States New York New York City tatacommunications.com
12  80.231.131.157  277.38 ms  AS6453  United Kingdom London tatacommunications.com
13  80.231.131.161  287.43 ms  AS6453  United Kingdom London tatacommunications.com
14  195.219.156.146  263.08 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
15  217.150.55.21  299.51 ms  AS20485  Russian Federation Moscow ttk.ru
16  195.219.156.146  270.18 ms  AS6453  Germany Hesse Frankfurt tatacommunications.com
17  *
18  62.33.207.217  308.60 ms  AS20485  Russian Federation Moscow ttk.ru
19  *
20  217.150.32.2  304.98 ms  AS20485  Russian Federation Moscow ttk.ru


Traceroute to Russia, Moscow MTS (TCP Mode, Max 30 Hop)
============================================================
traceroute to 195.34.32.71 (195.34.32.71), 30 hops max, 60 byte packets
 1  140.91.214.7  1.20 ms  AS31898  Republic of Korea Seoul oracle.com
 2  115.92.252.66  1.16 ms  AS3786  Republic of Korea uplus.co.kr
 3  115.92.252.65  3.32 ms  AS3786  Republic of Korea uplus.co.kr
 4  1.213.151.113  1.27 ms  AS3786  Republic of Korea uplus.co.kr
 5  1.208.175.29  1.35 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 6  1.213.105.38  142.10 ms  AS3786  United States California Los Angeles uplus.co.kr
 7  203.255.234.142  135.05 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 8  61.42.234.6  125.91 ms  AS3786  United States California Los Angeles uplus.co.kr
 9  4.69.162.146  323.62 ms  AS3356  Finland Uusimaa Helsinki level3.com
10  4.69.162.146  324.61 ms  AS3356  Finland Uusimaa Helsinki level3.com
11  62.67.19.238  286.22 ms  AS3356  Europe Regions level3.com
12  212.188.29.110  283.59 ms  AS8359  Russian Federation Saint Petersburg mts.ru
13  212.188.2.54  364.23 ms  AS8359  Russian Federation Moscow mts.ru
14  212.188.28.149  286.53 ms  AS8359  Russian Federation Moscow mts.ru
15  195.34.53.5  305.47 ms  AS8359  Russian Federation Moscow mts.ru
16  195.34.53.213  307.81 ms  AS8359  Russian Federation Moscow mts.ru
17  195.34.32.71  364.42 ms  AS8359  Russian Federation Moscow mts.ru
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;虽然CPU只有1/8核，但是总体而言还是很不错的，尤其是现在电信改成了GIA CN2线路，科学上网和建面向国内用户的小站必备，性价比可以说是无穷高了。&lt;/p&gt;
</content:encoded></item><item><title>Alibabacloud评测：轻量云香港</title><link>https://yushum.com/posts/alibabacloud%E8%AF%84%E6%B5%8B%E8%BD%BB%E9%87%8F%E4%BA%91%E9%A6%99%E6%B8%AF/</link><guid isPermaLink="true">https://yushum.com/posts/alibabacloud%E8%AF%84%E6%B5%8B%E8%BD%BB%E9%87%8F%E4%BA%91%E9%A6%99%E6%B8%AF/</guid><pubDate>Sun, 22 Dec 2019 18:37:00 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;要在国内选择主机建站的话，肯定是绕不开阿里云的VPS了。阿里云现在的产品非常地丰富，阿里云的VPS主机最大的吸引力就是CN2线路，速度快。阿里云VPS目前在世界范围部署机房，常用的有美国、日本、新加坡、韩国以及欧洲一些国家。另外，阿里云VPS还分成了国际版和国内版，早期国际版的价格要比国内版本的价格偏低一些，且性价比要高不少。不过，这种差距已经不断缩小，现在买国内与国际基本是一样的。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/image-2-1024x484.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;配置信息&lt;/h2&gt;
&lt;h3&gt;系统信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;OS Release:		Debian GNU/Linux &quot;Buster&quot; 10.2 (x86_64)
 CPU Model:		Intel(R) Xeon(R) Platinum 8163 CPU @ 2.50GHz
 CPU Cache Size:	33792 KB
 CPU Number:		1 vCPU
 Virt Type:		KVM
 Memory Usage:		70.96 MB / 987.22 MB
 Swap Usage:		0 KB / 1022.00 MB
 Disk Usage:		934.07 MB / 24638.80 MB
 Boot Device:		/dev/vda1
 Load (1/5/15min):	0.90 0.23 0.08
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;网络信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;IPV4 - IP Address:	[CN] 47.240.74.*
 IPV4 - ASN Info:	AS45102 (Alibaba (US) Technology Co., Ltd.)
 IPV4 - Region:		null
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;流媒体解锁&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;HBO Now:				No
 Bahamut Anime:				No
 Abema.TV:				No
 Bilibili Hongkong/Macau/Taiwan:	Yes
 Bilibili TaiwanOnly:			No
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;CPU性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread Test:			898 Scores
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;内存性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread - Read Test :		17710.97 MB/s
 1 Thread - Write Test:		12263.09 MB/s
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;磁盘性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Test Name		Write Speed				Read Speed
 10MB-4K Block		7.3 MB/s (1791 IOPS, 1.43 s)		8.2 MB/s (1991 IOPS, 1.29 s)
 10MB-1M Block		157 MB/s (149 IOPS, 0.07 s)		223 MB/s (212 IOPS, 0.05 s)
 100MB-4K Block		7.3 MB/s (1776 IOPS, 14.41 s)		8.8 MB/s (2136 IOPS, 11.98 s)
 100MB-1M Block		142 MB/s (135 IOPS, 0.74 s)		144 MB/s (137 IOPS, 0.73 s)
 1GB-4K Block		8.5 MB/s (2065 IOPS, 123.92 s)		9.4 MB/s (2284 IOPS, 112.04 s)
 1GB-1M Block		140 MB/s (133 IOPS, 7.51 s)		140 MB/s (133 IOPS, 7.51 s)
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;网速测试&lt;/h2&gt;
&lt;h3&gt;Speedtest.net网速测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Node Name			Upload Speed	Download Speed	Ping Latency
 Speedtest Default		3.84 MB/s	12.31 MB/s	1.32 ms
 China, Jilin CU		3.98 MB/s	12.55 MB/s	54.84 ms
 China, Shandong CU		3.92 MB/s	12.49 MB/s	70.95 ms
 China, Nanjing CU		3.90 MB/s	13.64 MB/s	31.35 ms
 China, Shanghai CU		3.88 MB/s	12.47 MB/s	31.52 ms
 China, Guangxi CU		3.84 MB/s	12.78 MB/s	17.57 ms
 China, Lanzhou CU		3.89 MB/s	13.25 MB/s	60.56 ms
 China, Beijing CT		Fail: Unknown Error
 China, Hangzhou CT		3.72 MB/s	7.32 MB/s	43.45 ms
 China, Nanjing CT		2.99 MB/s	12.36 MB/s	44.24 ms
 China, Guangzhou CT		0.39 MB/s	6.27 MB/s	14.94 ms
 China, Wuhan CT		3.22 MB/s	12.64 MB/s	31.97 ms
 China, Shenyang CM		3.83 MB/s	13.73 MB/s	61.87 ms
 China, Hangzhou CM		3.80 MB/s	12.51 MB/s	64.92 ms
 China, Shanghai CM		Fail: Unknown Error
 China, Nanning CM		3.07 MB/s	12.53 MB/s	38.07 ms
 China, Lanzhou CM		Fail: Unknown Error
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;IPv4路由测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.77  0.27 ms  *  United States defense.gov
 3  *
 4  11.131.180.218  1.19 ms  *  United States defense.gov
 5  116.251.82.178  1.31 ms  AS45102  China Hong Kong ALIYUN
 6  162.245.125.109  1.65 ms  AS10099  China Hong Kong ChinaUnicom
 7  202.77.18.194  5.65 ms  AS10099  China Hong Kong ChinaUnicom
 8  202.77.23.29  6.27 ms  AS10099  China Hong Kong ChinaUnicom
 9  202.77.23.29  3.92 ms  AS10099  China Hong Kong ChinaUnicom
10  219.158.10.61  5.65 ms  AS4837  China Hong Kong ChinaUnicom
11  219.158.103.217  16.55 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
12  219.158.8.81  39.43 ms  AS4837  China Beijing ChinaUnicom
13  219.158.8.81  44.96 ms  AS4837  China Beijing ChinaUnicom
14  61.49.214.2  39.91 ms  AS4808  China Beijing ChinaUnicom
15  124.65.194.134  41.03 ms  AS4808  China Beijing ChinaUnicom
16  61.135.113.154  40.05 ms  AS4808  China Beijing ChinaUnicom
17  *
18  *
19  123.125.99.1  37.32 ms  AS4808  China Beijing ChinaUnicom


Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.23 ms  *  United States defense.gov
 3  11.52.252.10  55.73 ms  *  United States defense.gov
 4  11.131.180.246  1.08 ms  *  United States defense.gov
 5  103.52.74.250  1.24 ms  *  China Hong Kong youku.com
 6  203.12.205.249  7.31 ms  AS4809  China Hong Kong ChinaTelecom
 7  59.43.187.25  15.75 ms  AS4809  China Hong Kong ChinaTelecom
 8  59.43.246.225  41.77 ms  AS4809  China Guangdong Guangzhou ChinaTelecom
 9  59.43.246.162  45.81 ms  AS4809  China Guangdong Guangzhou ChinaTelecom
10  *
11  *
12  180.149.128.1  60.56 ms  AS23724  China Beijing ChinaTelecom


Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.88.117 (211.136.88.117), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.26 ms  *  United States defense.gov
 3  11.52.252.10  3.76 ms  *  United States defense.gov
 4  11.131.180.210  1.11 ms  *  United States defense.gov
 5  116.251.82.178  1.23 ms  AS45102  China Hong Kong ALIYUN
 6  *
 7  *
 8  *
 9  221.183.21.57  9.08 ms  AS9808  China Hong Kong ChinaMobile
10  *
11  221.176.24.9  6.41 ms  AS9808  China Guangdong Guangzhou ChinaMobile
12  221.176.21.229  116.66 ms  AS9808  China Beijing ChinaMobile
13  *
14  211.136.67.190  56.93 ms  AS56048  China Beijing ChinaMobile
15  *
16  211.136.88.117  39.60 ms  AS56048  China Beijing ChinaMobile


Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.0.49 (58.247.0.49), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.27 ms  *  United States defense.gov
 3  11.56.8.22  5.08 ms  *  United States defense.gov
 4  11.131.180.214  1.18 ms  *  United States defense.gov
 5  103.52.74.246  1.26 ms  *  China Hong Kong youku.com
 6  202.77.19.37  2.18 ms  AS10099  China Hong Kong ChinaUnicom
 7  202.77.18.194  5.37 ms  AS10099  China Hong Kong ChinaUnicom
 8  202.77.23.29  5.91 ms  AS10099  China Hong Kong ChinaUnicom
 9  219.158.10.61  11.49 ms  AS4837  China Hong Kong ChinaUnicom
10  219.158.10.61  8.95 ms  AS4837  China Hong Kong ChinaUnicom
11  219.158.97.1  5.47 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
12  219.158.111.253  33.08 ms  AS4837  China Shanghai ChinaUnicom
13  219.158.111.253  32.29 ms  AS4837  China Shanghai ChinaUnicom
14  *
15  112.64.249.125  31.90 ms  AS17621  China Shanghai ChinaUnicom
16  58.247.0.49  35.03 ms  AS17621  China Shanghai ChinaUnicom


Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.1 (180.153.28.1), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.24 ms  *  United States defense.gov
 3  11.56.8.2  6.04 ms  *  United States defense.gov
 4  11.131.180.250  1.28 ms  *  United States defense.gov
 5  47.246.113.178  12.21 ms  *  United States ALIYUN
 6  203.100.48.253  17.21 ms  *  China Hong Kong ChinaTelecom
 7  59.43.181.189  16.48 ms  AS4809  China Hong Kong ChinaTelecom
 8  59.43.187.181  42.44 ms  AS4809  China Guangdong Guangzhou ChinaTelecom
 9  59.43.244.134  19.46 ms  AS4809  China Guangdong Guangzhou ChinaTelecom
10  202.97.12.6  9.94 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
11  202.97.94.121  20.38 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
12  202.101.63.49  44.54 ms  AS4812  China Shanghai ChinaTelecom
13  101.95.207.230  310.10 ms  AS4812  China Shanghai ChinaTelecom
14  *
15  101.227.255.34  43.31 ms  AS4812  China Shanghai ChinaTelecom
16  *
17  180.153.28.1  41.82 ms  AS4812  China Shanghai ChinaTelecom


Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.77  0.25 ms  *  United States defense.gov
 3  11.56.8.22  3.45 ms  *  United States defense.gov
 4  11.131.180.214  1.31 ms  *  United States defense.gov
 5  47.246.113.178  1.25 ms  *  United States ALIYUN
 6  *
 7  223.118.3.197  2.13 ms  AS58453  China Hong Kong ChinaMobile
 8  223.118.3.125  1.93 ms  AS58453  China Hong Kong ChinaMobile
 9  221.176.24.61  23.69 ms  AS9808  China Guangdong Guangzhou ChinaMobile
10  221.176.24.205  29.95 ms  AS9808  China Guangdong Guangzhou ChinaMobile
11  221.176.24.157  22.39 ms  AS9808  China Guangdong Guangzhou ChinaMobile
12  221.176.17.93  60.45 ms  AS9808  China Shanghai ChinaMobile
13  221.176.17.218  60.60 ms  AS9808  China Shanghai ChinaMobile
14  221.183.55.22  60.17 ms  AS9808  China Shanghai ChinaMobile


Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.25 ms  *  United States defense.gov
 3  *
 4  11.131.180.250  1.24 ms  *  United States defense.gov
 5  47.246.113.170  1.32 ms  *  United States ALIYUN
 6  162.245.125.117  1.98 ms  AS10099  China Hong Kong ChinaUnicom
 7  202.77.18.194  6.14 ms  AS10099  China Hong Kong ChinaUnicom
 8  43.252.86.66  2.25 ms  AS10099  China Hong Kong ChinaUnicom
 9  202.77.23.29  8.03 ms  AS10099  China Hong Kong ChinaUnicom
10  219.158.10.29  12.78 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
11  219.158.103.217  16.90 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
12  219.158.103.217  14.72 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
13  120.80.175.70  9.80 ms  AS17622  China Guangdong Guangzhou ChinaUnicom
14  120.80.175.70  9.35 ms  AS17622  China Guangdong Guangzhou ChinaUnicom
15  210.21.4.130  9.86 ms  AS17622  China Guangdong Guangzhou ChinaUnicom


Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.77  0.25 ms  *  United States defense.gov
 3  11.52.252.30  3.71 ms  *  United States defense.gov
 4  11.131.180.214  1.01 ms  *  United States defense.gov
 5  47.246.113.178  1.23 ms  *  United States ALIYUN
 6  203.100.49.217  16.97 ms  *  China Hong Kong ChinaTelecom
 7  59.43.248.113  20.39 ms  AS4809  China Hong Kong ChinaTelecom
 8  59.43.188.125  15.07 ms  AS4809  China Guangdong Guangzhou ChinaTelecom
 9  *
10  202.97.12.10  10.87 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
11  202.97.94.145  23.14 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
12  *
13  113.108.209.1  15.42 ms  AS58466  China Guangdong Guangzhou ChinaTelecom


Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.139.129.5 (211.139.129.5), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.77  0.32 ms  *  United States defense.gov
 3  11.56.8.6  4.41 ms  *  United States defense.gov
 4  11.131.180.218  1.66 ms  *  United States defense.gov
 5  47.246.113.170  1.29 ms  *  United States ALIYUN
 6  223.119.17.110  1.51 ms  AS58453  China Hong Kong ChinaMobile
 7  *
 8  221.183.55.74  9.37 ms  AS9808  China Guangdong Guangzhou ChinaMobile
 9  221.183.55.98  5.87 ms  AS9808  China Guangdong Guangzhou ChinaMobile
10  221.183.25.118  21.72 ms  AS9808  China Guangdong Guangzhou ChinaMobile
11  *
12  221.183.14.146  8.83 ms  AS9808  China Guangdong Shenzhen ChinaMobile
13  *
14  211.139.129.5  24.54 ms  AS56040  China Guangdong Guangzhou ChinaMobile


Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.77  0.36 ms  *  United States defense.gov
 3  *
 4  11.131.180.222  1.88 ms  *  United States defense.gov
 5  47.246.113.178  1.25 ms  *  United States ALIYUN
 6  162.245.125.105  1.57 ms  AS10099  China Hong Kong ChinaUnicom
 7  162.245.124.9  4.42 ms  AS10099  China Hong Kong ChinaUnicom
 8  *
 9  218.105.7.217  11.80 ms  AS9929  China Guangdong Guangzhou ChinaUnicom
10  218.105.2.133  11.90 ms  AS9929  China Guangdong Guangzhou ChinaUnicom
11  218.105.2.210  39.45 ms  AS9929  China Shanghai ChinaUnicom
12  210.13.112.254  36.73 ms  AS9929  China Shanghai ChinaUnicom
13  210.13.66.237  78.65 ms  AS9929  China Shanghai ChinaUnicom
14  210.13.66.238  41.68 ms  AS9929  China Shanghai ChinaUnicom


Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.28 ms  *  United States defense.gov
 3  *
 4  11.131.180.222  1.15 ms  *  United States defense.gov
 5  47.246.113.182  1.15 ms  *  United States ALIYUN
 6  203.100.54.149  7.45 ms  AS4809  China Hong Kong ChinaTelecom
 7  59.43.186.125  9.18 ms  AS4809  China Hong Kong ChinaTelecom
 8  59.43.188.229  47.07 ms  AS4809  China Shanghai ChinaTelecom
 9  59.43.247.57  29.14 ms  AS4809  China Shanghai ChinaTelecom
10  59.43.130.197  35.19 ms  AS4809  China Shanghai ChinaTelecom
11  61.152.24.198  34.81 ms  AS4812  China Shanghai ChinaTelecom
12  58.32.0.1  33.94 ms  AS4812  China Shanghai ChinaTelecom


Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 14.131.125.1 (14.131.125.1), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.77  0.26 ms  *  United States defense.gov
 3  11.52.252.10  4.67 ms  *  United States defense.gov
 4  11.131.180.250  1.17 ms  *  United States defense.gov
 5  116.251.82.174  1.09 ms  AS45102  China Hong Kong ALIYUN
 6  203.100.48.253  17.09 ms  *  China Hong Kong ChinaTelecom
 7  59.43.247.21  15.98 ms  AS4809  China Hong Kong ChinaTelecom
 8  59.43.248.1  38.50 ms  AS4809  China Beijing ChinaTelecom
 9  *
10  202.97.12.57  40.24 ms  AS4134  China Beijing ChinaTelecom
11  202.97.18.213  47.43 ms  AS4134  China Beijing ChinaTelecom
12  *
13  *
14  *
15  218.241.255.161  56.52 ms  AS4847  China Beijing DRPENG
16  218.241.255.133  53.02 ms  AS4847  China Beijing DRPENG
17  124.205.97.138  49.44 ms  AS4847,AS17816  China Beijing DRPENG
18  218.241.254.230  48.11 ms  AS4847  China Beijing DRPENG
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.26 ms  *  United States defense.gov
 3  *
 4  11.131.180.246  1.29 ms  *  United States defense.gov
 5  116.251.82.174  1.19 ms  AS45102  China Hong Kong ALIYUN
 6  162.245.125.21  1.54 ms  AS10099  China Hong Kong ChinaUnicom
 7  202.77.18.194  2.77 ms  AS10099  China Hong Kong ChinaUnicom
 8  202.77.23.29  5.76 ms  AS10099  China Hong Kong ChinaUnicom
 9  202.77.23.29  3.37 ms  AS10099  China Hong Kong ChinaUnicom
10  219.158.10.61  8.62 ms  AS4837  China Hong Kong ChinaUnicom
11  219.158.97.1  5.53 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
12  219.158.97.1  5.23 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
13  *
14  61.49.214.6  38.54 ms  AS4808  China Beijing ChinaUnicom
15  61.51.112.254  38.27 ms  AS4808  China Beijing ChinaUnicom
16  202.106.37.90  37.96 ms  AS4808  China Beijing ChinaUnicom
17  124.65.47.202  63.36 ms  AS4808  China Beijing ChinaUnicom
18  202.99.1.238  40.41 ms  AS17964  China Beijing DRPENG
19  218.241.166.18  42.69 ms  AS4847  China Beijing DRPENG
20  218.241.253.134  39.22 ms  AS4847  China Beijing DRPENG
21  211.167.230.100  43.04 ms  AS4808,AS17964  China Beijing DRPENG


Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.36 ms  *  United States defense.gov
 3  11.52.252.26  4.26 ms  *  United States defense.gov
 4  11.131.180.222  1.23 ms  *  United States defense.gov
 5  103.52.74.250  1.17 ms  *  China Hong Kong youku.com
 6  203.100.48.129  15.64 ms  *  China Hong Kong ChinaTelecom
 7  59.43.248.5  10.12 ms  AS4809  China Hong Kong ChinaTelecom
 8  *
 9  59.43.244.138  8.16 ms  AS4809  China Guangdong Guangzhou ChinaTelecom
10  202.97.94.113  10.07 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
11  202.97.94.133  16.30 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
12  202.97.63.210  17.80 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
13  *
14  202.105.95.18  84.37 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
15  202.112.46.29  117.13 ms  AS4538  China Guangdong Guangzhou CHINAEDU
16  *
17  101.4.117.33  116.89 ms  AS4538  China Hunan Changsha CHINAEDU
18  101.4.112.38  112.50 ms  AS4538  China Hubei Wuhan CHINAEDU
19  101.4.117.38  130.05 ms  AS4538  China Henan Zhengzhou CHINAEDU
20  101.4.112.1  117.91 ms  AS4538  China Beijing CHINAEDU
21  *
22  202.112.38.82  131.62 ms  AS4538  China Beijing CHINAEDU
23  202.205.109.205  129.51 ms  AS4538  China Beijing CHINAEDU


Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.26 ms  *  United States defense.gov
 3  *
 4  11.131.180.222  1.23 ms  *  United States defense.gov
 5  103.52.74.250  1.22 ms  *  China Hong Kong youku.com
 6  63.218.115.53  1.91 ms  AS3491  China Hong Kong pccw.com
 7  63.223.15.190  2.13 ms  AS3491  China Hong Kong pccw.com
 8  *
 9  *
10  159.226.254.5  39.57 ms  AS7497  China Beijing CSTNET
11  159.226.254.49  38.34 ms  AS7497  China Beijing CSTNET
12  159.226.254.1  36.00 ms  AS7497  China Beijing CSTNET


Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.77  0.26 ms  *  United States defense.gov
 3  11.56.8.2  4.12 ms  *  United States defense.gov
 4  11.131.180.218  8.06 ms  *  United States defense.gov
 5  47.246.113.174  1.15 ms  *  United States ALIYUN
 6  203.131.247.233  1.03 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.70  2.58 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  221.176.22.38  99.50 ms  AS9808  China Shanghai ChinaMobile
16  221.183.65.66  50.79 ms  AS9808  China Shanghai ChinaMobile
17  *
18  211.156.129.110  74.66 ms  AS7641  China Beijing chinabtn.com CATV
19  *
20  *
21  211.156.140.17  77.00 ms  AS7641  China Beijing chinabtn.com CATV


Traceroute to China, Hongkong CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.160.95.218 (203.160.95.218), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.77  0.26 ms  *  United States defense.gov
 3  *
 4  11.131.180.250  2.38 ms  *  United States defense.gov
 5  47.246.113.182  7.91 ms  *  United States ALIYUN
 6  162.245.125.113  2.13 ms  AS10099  China Hong Kong ChinaUnicom
 7  162.245.124.1  4.56 ms  AS10099  China Hong Kong ChinaUnicom
 8  119.252.139.14  3.07 ms  AS10099  China Hong Kong ChinaUnicom
 9  202.77.22.89  2.11 ms  AS10099  China Hong Kong ChinaUnicom
10  203.160.95.218  2.70 ms  AS10099  China Hong Kong ChinaUnicom


Traceroute to China, Hongkong CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.232.173 (203.215.232.173), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.34 ms  *  United States defense.gov
 3  11.52.252.26  3.26 ms  *  United States defense.gov
 4  11.131.180.242  1.11 ms  *  United States defense.gov
 5  103.52.74.250  21.69 ms  *  China Hong Kong youku.com
 6  203.131.247.233  1.24 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.70  50.89 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  2.35 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  48.50 ms  AS2914  Japan Tokyo ntt.com
10  129.250.2.156  51.95 ms  AS2914  Japan Tokyo ntt.com
11  202.97.60.213  66.19 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
12  *
13  *
14  *
15  203.215.232.173  69.03 ms  AS4134  China Hong Kong ChinaTelecom


Traceroute to China, Hongkong CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.8.25.187 (203.8.25.187), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.26 ms  *  United States defense.gov
 3  11.56.8.18  4.13 ms  *  United States defense.gov
 4  11.131.180.246  1.05 ms  *  United States defense.gov
 5  116.251.82.174  1.03 ms  AS45102  China Hong Kong ALIYUN
 6  *
 7  *
 8  *
 9  203.131.241.70  7.12 ms  AS2914  China Hong Kong ntt.com
10  203.8.25.187  9.71 ms  AS4809  China Hong Kong ChinaTelecom


Traceroute to China, Hongkong CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.142.105.9 (203.142.105.9), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.33 ms  *  United States defense.gov
 3  11.52.252.10  4.03 ms  *  United States defense.gov
 4  11.131.180.210  1.21 ms  *  United States defense.gov
 5  47.246.113.174  1.06 ms  *  United States ALIYUN
 6  123.255.91.137  2.63 ms  AS64050,AS135423  China Hong Kong hkix.net
 7  123.255.91.137  2.94 ms  AS64050,AS135423  China Hong Kong hkix.net
 8  203.142.100.22  3.34 ms  AS9231  China Hong Kong ChinaMobile
 9  203.142.105.9  3.40 ms  AS9231  China Hong Kong ChinaMobile


Traceroute to China, Hongkong HGC (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.188.104.30 (218.188.104.30), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.77  0.25 ms  *  United States defense.gov
 3  *
 4  11.131.180.214  1.27 ms  *  United States defense.gov
 5  116.251.82.178  1.31 ms  AS45102  China Hong Kong ALIYUN
 6  203.131.247.233  1.43 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.70  3.28 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.2.254  9.71 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  203.131.248.162  2.38 ms  AS2914  China Hong Kong ntt.com
10  218.189.5.56  2.83 ms  AS9304  China Hong Kong hgc.com.hk
11  218.188.104.30  4.33 ms  AS9304  China Hong Kong hgc.com.hk


Traceroute to China, Hongkong HKBN (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.6.23.239 (210.6.23.239), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.23 ms  *  United States defense.gov
 3  *
 4  11.131.180.214  4.41 ms  *  United States defense.gov
 5  47.246.113.182  10.46 ms  *  United States ALIYUN
 6  36.255.56.17  2.23 ms  AS4323,AS7713  China Hong Kong equinix.com
 7  61.244.225.62  2.27 ms  AS9269  China Hong Kong hkbn.com.hk
 8  203.186.235.137  14.76 ms  AS9269  China Hong Kong hkbn.com.hk
 9  203.80.215.70  1.47 ms  AS9269  China Hong Kong hkbn.com.hk
10  210.6.23.239  1.82 ms  AS9269  China Hong Kong hkbn.com.hk


Traceroute to China, Hongkong PCCW (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.85.125.60 (202.85.125.60), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.27 ms  *  United States defense.gov
 3  11.52.252.10  6.32 ms  *  United States defense.gov
 4  11.131.180.254  1.22 ms  *  United States defense.gov
 5  116.251.82.178  1.73 ms  AS45102  China Hong Kong ALIYUN
 6  63.218.115.53  1.54 ms  AS3491  China Hong Kong pccw.com
 7  63.223.15.174  1.99 ms  AS3491  China Hong Kong pccw.com
 8  63.223.17.94  1.80 ms  AS3491  China Hong Kong pccw.com
 9  63.218.61.174  2.84 ms  AS3491  China Hong Kong pccw.com
10  203.215.254.210  2.88 ms  AS9925  China Hong Kong pbase.net
11  202.153.99.203  2.90 ms  AS9925  China Hong Kong pbase.net
12  203.215.244.33  2.73 ms  AS9925  China Hong Kong pbase.net
13  202.85.125.60  3.07 ms  AS9925  China Hong Kong pccw.com


Traceroute to China, Hongkong TGT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.123.76.58 (202.123.76.58), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.25 ms  *  United States defense.gov
 3  *
 4  11.131.180.242  1.23 ms  *  United States defense.gov
 5  47.246.113.182  1.36 ms  *  United States ALIYUN
 6  123.255.91.105  2.42 ms  AS64050,AS135423  China Hong Kong hkix.net
 7  202.123.74.74  2.40 ms  AS10098  China Hong Kong towngastelecom.com
 8  202.123.74.66  2.43 ms  AS10098  China Hong Kong towngastelecom.com
 9  202.123.76.58  2.77 ms  AS10098  China Hong Kong towngastelecom.com


Traceroute to China, Hongkong WTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 59.152.252.242 (59.152.252.242), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.77  0.35 ms  *  United States defense.gov
 3  11.52.252.26  3.65 ms  *  United States defense.gov
 4  11.131.180.218  1.22 ms  *  United States defense.gov
 5  116.251.82.174  1.27 ms  AS45102  China Hong Kong ALIYUN
 6  36.255.56.80  1.87 ms  AS4323,AS7713  China Hong Kong equinix.com
 7  115.160.187.54  2.63 ms  AS9381  China Hong Kong hkbn.com.hk
 8  *
 9  59.152.252.196  2.18 ms  AS9381  China Hong Kong hkbn.com.hk
10  59.152.252.242  2.84 ms  AS9381  China Hong Kong hkbn.com.hk


Traceroute to Singapore, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.233.1 (203.215.233.1), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.27 ms  *  United States defense.gov
 3  *
 4  11.131.180.254  5.58 ms  *  United States defense.gov
 5  47.246.113.182  1.01 ms  *  United States ALIYUN
 6  203.131.247.233  3.34 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.178  50.07 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  2.41 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  44.68 ms  AS2914  Japan Tokyo ntt.com
10  129.250.2.10  73.63 ms  AS2914  NTT.COM BACKBONE ntt.com
11  *
12  *
13  203.215.233.1  162.43 ms  AS4134  Singapore ChinaTelecom


Traceroute to Singapore, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 183.91.61.1 (183.91.61.1), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.30 ms  *  United States defense.gov
 3  *
 4  11.131.180.250  1.19 ms  *  United States defense.gov
 5  47.246.113.174  1.15 ms  *  United States ALIYUN
 6  203.131.247.233  1.81 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.70  3.50 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.5.161  2.63 ms  AS2914  China Hong Kong ntt.com
 9  203.131.241.70  7.05 ms  AS2914  China Hong Kong ntt.com
10  183.91.61.1  43.70 ms  AS4809  Singapore ChinaTelecom


Traceroute to Singapore, Singtel (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.201.1.11 (118.201.1.11), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.27 ms  *  United States defense.gov
 3  11.52.252.30  4.97 ms  *  United States defense.gov
 4  11.131.180.250  0.90 ms  *  United States defense.gov
 5  47.246.113.174  1.24 ms  *  United States ALIYUN
 6  63.218.115.53  1.67 ms  AS3491  China Hong Kong pccw.com
 7  63.223.29.194  3.61 ms  AS3491  China Hong Kong pccw.com
 8  63.218.205.10  2.15 ms  AS3491  China Hong Kong pccw.com
 9  63.218.211.254  2.17 ms  AS3491  China Hong Kong pccw.com
10  203.208.183.250  36.18 ms  AS7473  Singapore singtel.com
11  203.208.158.17  36.47 ms  AS7473  Singapore singtel.com
12  *
13  *
14  165.21.49.126  37.69 ms  AS3758  Singapore singtel.com
15  118.201.1.11  36.11 ms  AS3758  Singapore singtel.com


Traceroute to Singapore, StarHub (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.116.46.162 (203.116.46.162), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.77  0.27 ms  *  United States defense.gov
 3  *
 4  11.131.180.250  1.04 ms  *  United States defense.gov
 5  116.251.82.174  1.28 ms  AS45102  China Hong Kong ALIYUN
 6  36.255.56.54  32.24 ms  AS4323,AS7713  China Hong Kong equinix.com
 7  203.118.6.82  36.03 ms  AS4657  Singapore starhub.com
 8  203.117.35.74  37.57 ms  AS38861  Singapore starhub.com
 9  203.118.6.29  38.47 ms  AS4657  Singapore starhub.com
10  203.118.16.30  35.05 ms  AS4657  Singapore starhub.com
11  203.117.188.42  35.31 ms  AS4657  Singapore starhub.com
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Singapore, M1 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.123.8.123 (203.123.8.123), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.77  0.27 ms  *  United States defense.gov
 3  11.52.252.10  5.30 ms  *  United States defense.gov
 4  11.131.180.250  1.26 ms  *  United States defense.gov
 5  116.251.82.174  1.04 ms  AS45102  China Hong Kong ALIYUN
 6  63.217.16.213  1.53 ms  AS3491  China Hong Kong pccw.com
 7  63.223.58.78  34.59 ms  AS3491  Singapore pccw.com
 8  63.223.58.78  34.36 ms  AS3491  Singapore pccw.com
 9  63.218.249.254  34.29 ms  AS3491,AS198148  Singapore pccw.com
10  203.211.158.76  36.47 ms  AS17547  Singapore m1.com.sg
11  203.211.158.122  37.00 ms  AS17547  Singapore m1.com.sg
12  203.123.8.123  36.40 ms  AS17547  Singapore m1.com.sg


Traceroute to Singapore, AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.228.0.251 (13.228.0.251), 50 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.26 ms  *  United States defense.gov
 3  11.52.252.14  4.72 ms  *  United States defense.gov
 4  11.131.180.250  1.35 ms  *  United States defense.gov
 5  103.52.74.250  1.31 ms  *  China Hong Kong youku.com
 6  63.217.16.209  1.63 ms  AS3491  China Hong Kong pccw.com
 7  63.218.174.233  1.32 ms  AS3491  China Hong Kong pccw.com
 8  63.218.174.85  1.89 ms  AS3491  China Hong Kong pccw.com
 9  63.217.254.74  1.67 ms  AS3491  China Hong Kong pccw.com
10  *
11  *
12  *
13  *
14  *
15  203.83.223.200  37.52 ms  AS16509,AS38895  Singapore amazon.com
16  52.93.10.73  34.85 ms  *  Singapore amazon.com
17  *
18  *
19  *
20  *
21  *
22  13.228.0.251  34.38 ms  AS16509  Singapore amazon.com


Traceroute to Japan, NTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 61.213.155.84 (61.213.155.84), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.25 ms  *  United States defense.gov
 3  *
 4  11.131.180.254  0.90 ms  *  United States defense.gov
 5  47.246.113.182  42.21 ms  *  United States ALIYUN
 6  203.131.247.233  18.02 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.70  44.86 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  3.87 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  48.54 ms  AS2914  Japan Tokyo ntt.com
10  129.250.3.22  44.73 ms  AS2914  Japan Tokyo ntt.com
11  61.213.179.34  52.70 ms  AS2914  Japan Tokyo ntt.com
12  *
13  *
14  61.213.155.84  68.83 ms  AS2914  Japan Tokyo ntt.com


Traceroute to Japan, IIJ (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.232.15.70 (202.232.15.70), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.77  0.25 ms  *  United States defense.gov
 3  11.52.252.14  4.01 ms  *  United States defense.gov
 4  11.131.180.214  1.22 ms  *  United States defense.gov
 5  47.246.113.182  1.15 ms  *  United States ALIYUN
 6  63.218.175.145  1.63 ms  AS3491  China Hong Kong pccw.com
 7  63.223.15.190  2.13 ms  AS3491  China Hong Kong pccw.com
 8  63.223.15.190  1.98 ms  AS3491  China Hong Kong pccw.com
 9  63.218.211.250  1.59 ms  AS3491  China Hong Kong pccw.com
10  58.138.99.70  1.61 ms  AS2497  China Hong Kong iij.ad.jp
11  58.138.81.173  52.25 ms  AS2497  Japan Tokyo iij.ad.jp
12  58.138.102.214  51.90 ms  AS2497  Japan Tokyo iij.ad.jp
13  210.130.142.114  52.36 ms  AS2497  Japan Tokyo iij.ad.jp
14  202.232.15.70  52.28 ms  AS2497  Japan iij.ad.jp


Traceroute to Japan, SoftBank (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.175.32.26 (210.175.32.26), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.30 ms  *  United States defense.gov
 3  *
 4  11.131.180.222  1.25 ms  *  United States defense.gov
 5  47.246.113.178  1.26 ms  *  United States ALIYUN
 6  103.203.158.97  1.73 ms  AS7713  China Hong Kong bbix.net
 7  *
 8  143.90.232.241  52.70 ms  AS4725  Japan Tokyo odn.ne.jp
 9  143.90.47.9  52.92 ms  AS4725  Japan odn.ne.jp
10  143.90.26.226  52.61 ms  AS4725  Japan odn.ne.jp
11  143.90.54.30  51.70 ms  AS4725  Japan odn.ne.jp
12  210.175.32.123  51.92 ms  AS4725  Japan odn.ne.jp
13  210.175.32.26  53.58 ms  AS4725  Japan odn.ne.jp


Traceroute to Japan, KDDI (TCP Mode, Max 30 Hop)
============================================================
traceroute to 106.162.242.108 (106.162.242.108), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.25 ms  *  United States defense.gov
 3  *
 4  11.131.180.218  1.24 ms  *  United States defense.gov
 5  103.52.74.250  1.18 ms  *  China Hong Kong youku.com
 6  203.131.247.241  1.28 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.70  48.62 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  2.28 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  44.67 ms  AS2914  Japan Tokyo ntt.com
10  129.250.6.131  51.29 ms  AS2914  Japan Tokyo ntt.com
11  106.187.16.1  50.65 ms  AS2516  Japan Tokyo kddi.com
12  27.86.45.245  53.18 ms  AS2516  Japan Tokyo kddi.com
13  27.90.191.230  53.60 ms  AS2516  Japan kddi.com
14  111.107.101.94  48.12 ms  AS2516  Japan kddi.com
15  111.87.220.242  52.10 ms  AS2516  Japan kddi.com
16  106.162.242.108  51.25 ms  AS2516  Japan kddi.com


Traceroute to Japan, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.236.3 (203.215.236.3), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.25 ms  *  United States defense.gov
 3  11.52.252.26  5.10 ms  *  United States defense.gov
 4  11.131.180.246  1.54 ms  *  United States defense.gov
 5  103.52.74.246  2.18 ms  *  China Hong Kong youku.com
 6  203.131.247.241  1.93 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.178  50.69 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  2.44 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  48.69 ms  AS2914  Japan Tokyo ntt.com
10  129.250.2.10  54.41 ms  AS2914  NTT.COM BACKBONE ntt.com
11  *
12  202.97.6.70  158.94 ms  AS4134  Japan Tokyo ChinaTelecom
13  203.215.236.3  155.16 ms  AS4134  Japan Tokyo ChinaTelecom


Traceroute to Japan, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.55.27.4 (202.55.27.4), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.77  0.25 ms  *  United States defense.gov
 3  11.56.8.18  3.51 ms  *  United States defense.gov
 4  11.131.180.242  0.98 ms  *  United States defense.gov
 5  103.52.74.246  1.13 ms  *  China Hong Kong youku.com
 6  203.131.247.241  3.14 ms  AS2914  China Hong Kong ntt.com
 7  203.131.241.66  85.67 ms  AS2914  China Hong Kong ntt.com
 8  59.43.189.198  60.50 ms  AS4809  China ChinaTelecom
 9  203.131.241.70  7.47 ms  AS2914  China Hong Kong ntt.com
10  202.55.27.4  60.73 ms  AS4809  Japan Tokyo ChinaTelecom


Traceroute to Japan, Amazon AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.112.63.251 (13.112.63.251), 50 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.30 ms  *  United States defense.gov
 3  11.52.252.26  3.70 ms  *  United States defense.gov
 4  11.131.180.218  1.12 ms  *  United States defense.gov
 5  116.251.82.178  1.21 ms  AS45102  China Hong Kong ALIYUN
 6  123.255.91.219  4.74 ms  AS64050,AS135423  China Hong Kong hkix.net
 7  54.240.241.36  3.81 ms  *  China Hong Kong amazon.com
 8  52.93.35.29  2.40 ms  *  China Hong Kong amazon.com
 9  52.93.129.99  56.94 ms  *  United States amazon.com
10  *
11  52.93.73.242  55.26 ms  *  Japan Tokyo amazon.com
12  52.95.31.67  56.57 ms  AS16509  Japan Tokyo amazon.com
13  52.95.31.221  60.30 ms  AS16509  Japan Tokyo amazon.com
14  52.95.31.162  52.52 ms  AS16509  Japan Tokyo amazon.com
15  52.95.31.88  54.27 ms  AS16509  Japan Tokyo amazon.com
16  54.239.52.187  57.18 ms  AS16509  Japan Tokyo amazon.com
17  *
18  *
19  *
20  *
21  *
22  13.112.63.251  58.48 ms  AS16509  Japan Tokyo amazon.com


Traceroute to South Korea, KT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.114.41.101 (210.114.41.101), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.77  0.29 ms  *  United States defense.gov
 3  11.52.252.14  5.75 ms  *  United States defense.gov
 4  11.131.180.250  1.14 ms  *  United States defense.gov
 5  47.246.113.182  1.35 ms  *  United States ALIYUN
 6  *
 7  129.250.5.70  47.60 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  2.03 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  48.82 ms  AS2914  Japan Tokyo ntt.com
10  129.250.2.10  51.47 ms  AS2914  NTT.COM BACKBONE ntt.com
11  121.189.3.61  76.31 ms  AS4766  Republic of Korea Seoul kt.com
12  112.174.83.225  78.25 ms  AS4766  Republic of Korea Seoul kt.com
13  *
14  112.174.20.186  80.07 ms  AS4766  Republic of Korea Seoul kt.com
15  112.174.99.14  82.37 ms  AS4766  Republic of Korea Seoul kt.com
16  220.90.203.2  76.61 ms  AS4766  Republic of Korea Seoul kt.com
17  211.37.137.22  77.25 ms  AS4766  Republic of Korea Seoul kt.com
18  210.114.41.101  76.17 ms  AS4766  Republic of Korea Seoul kt.com


Traceroute to South Korea, SK (TCP Mode, Max 30 Hop)
============================================================
traceroute to 175.122.253.62 (175.122.253.62), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.77  0.31 ms  *  United States defense.gov
 3  *
 4  11.131.180.242  1.23 ms  *  United States defense.gov
 5  47.246.113.170  1.23 ms  *  United States ALIYUN
 6  *
 7  129.250.5.178  50.69 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  2.88 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  47.63 ms  AS2914  Japan Tokyo ntt.com
10  129.250.2.156  58.77 ms  AS2914  Japan Tokyo ntt.com
11  129.250.66.158  69.07 ms  AS2914  NTT.COM BACKBONE ntt.com
12  *
13  118.217.96.150  61.12 ms  AS9318  Republic of Korea Seoul skbroadband.com
14  *
15  *
16  175.122.253.62  61.01 ms  AS9318  Republic of Korea skbroadband.com


Traceroute to South Korea, LG (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.174.62.44 (211.174.62.44), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.77  0.25 ms  *  United States defense.gov
 3  11.56.8.2  4.01 ms  *  United States defense.gov
 4  11.131.180.222  20.31 ms  *  United States defense.gov
 5  47.246.113.178  1.19 ms  *  United States ALIYUN
 6  63.218.115.53  1.56 ms  AS3491  China Hong Kong pccw.com
 7  63.223.15.190  2.16 ms  AS3491  China Hong Kong pccw.com
 8  63.218.253.22  1.47 ms  AS3491  China Hong Kong pccw.com
 9  1.208.148.205  1.37 ms  AS3786  China Hong Kong uplus.co.kr
10  1.208.150.181  1.39 ms  AS3786  China Hong Kong uplus.co.kr
11  1.208.106.18  36.52 ms  AS3786  Republic of Korea Seoul uplus.co.kr
12  *
13  1.213.149.13  40.25 ms  AS3786  Republic of Korea Seoul uplus.co.kr
14  1.213.146.130  37.01 ms  AS3786  Republic of Korea Seoul uplus.co.kr
15  114.108.170.54  38.21 ms  AS3786  Republic of Korea Seoul uplus.co.kr
16  61.111.0.158  38.77 ms  AS3786  Republic of Korea Seoul uplus.co.kr
17  211.174.62.44  41.88 ms  AS3786  Republic of Korea Seoul uplus.co.kr


Traceroute to South Korea, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.185.246.12 (218.185.246.12), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.26 ms  *  United States defense.gov
 3  *
 4  11.131.180.222  1.08 ms  *  United States defense.gov
 5  116.251.82.178  1.04 ms  AS45102  China Hong Kong ALIYUN
 6  *
 7  129.250.5.70  3.81 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  59.43.249.17  8.36 ms  AS4809  China Hong Kong ChinaTelecom
 9  203.131.241.70  7.62 ms  AS2914  China Hong Kong ntt.com
10  59.43.184.10  53.70 ms  AS4809  Republic of Korea Seoul ChinaTelecom
11  *
12  59.43.184.10  54.19 ms  AS4809  Republic of Korea Seoul ChinaTelecom
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to South Korea, Amazon AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.124.63.251 (13.124.63.251), 50 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.25 ms  *  United States defense.gov
 3  *
 4  11.131.180.250  1.04 ms  *  United States defense.gov
 5  47.246.113.178  1.23 ms  *  United States ALIYUN
 6  203.131.247.233  1.16 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.70  48.67 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  3.91 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  47.18 ms  AS2914  Japan Tokyo ntt.com
10  129.250.6.127  48.67 ms  AS2914  Japan Tokyo ntt.com
11  61.213.161.50  63.88 ms  AS2914  Japan Tokyo ntt.com
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  54.239.45.186  81.93 ms  *  Republic of Korea Seoul amazon.com
20  54.239.123.2  78.55 ms  AS16509  Republic of Korea Seoul amazon.com
21  52.93.248.236  79.89 ms  *  Republic of Korea Seoul amazon.com
22  54.239.122.22  79.52 ms  AS16509  Republic of Korea Seoul amazon.com
23  54.239.123.119  78.74 ms  AS16509  Republic of Korea Seoul amazon.com
24  54.239.122.28  82.64 ms  AS16509  Republic of Korea Seoul amazon.com
25  *
26  *
27  13.124.63.251  78.42 ms  AS16509  Republic of Korea Seoul amazon.com


Traceroute to China, Taiwan Chief (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.133.242.116 (202.133.242.116), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.77  0.39 ms  *  United States defense.gov
 3  *
 4  11.131.180.246  0.91 ms  *  United States defense.gov
 5  116.251.82.178  1.26 ms  AS45102  China Hong Kong ALIYUN
 6  *
 7  103.123.253.133  28.00 ms  *  China Taiwan Taipei City chief.com.tw
 8  223.26.64.141  27.41 ms  *  China Taiwan Taipei City chief.com.tw
 9  113.21.95.72  27.48 ms  AS17408  China Taiwan Taipei City chief.com.tw
10  103.123.254.38  30.61 ms  *  China Taiwan Taipei City chief.com.tw
11  202.133.242.114  27.74 ms  AS17408  China Taiwan Taipei City chief.com.tw
12  202.133.242.116  27.09 ms  AS17408  China Taiwan Taipei City chief.com.tw


Traceroute to China, Taiwan APTG (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.200.69.90 (210.200.69.90), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.77  0.41 ms  *  United States defense.gov
 3  *
 4  11.131.180.210  1.29 ms  *  United States defense.gov
 5  47.246.113.174  1.76 ms  *  United States ALIYUN
 6  36.255.56.66  1.04 ms  AS4323,AS7713  China Hong Kong equinix.com
 7  175.41.60.217  53.80 ms  AS9505  China Taiwan Taipei City twgate.net
 8  175.41.60.53  50.12 ms  AS9505  China Taiwan Taipei City twgate.net
 9  175.41.61.170  49.60 ms  AS9505  China Taiwan Taipei City twgate.net
10  203.78.187.78  28.25 ms  AS9505  China Taiwan Taipei City twgate.net
11  203.78.187.78  28.55 ms  AS9505  China Taiwan Taipei City twgate.net
12  211.76.100.61  21.09 ms  AS17709  China Taiwan Taipei City aptg.com.tw
13  211.76.100.53  20.52 ms  AS17709  China Taiwan Taipei City aptg.com.tw
14  210.200.80.254  22.11 ms  AS131142  China Taiwan Taipei City aptg.com.tw
15  *
16  210.200.69.90  21.62 ms  AS131142  China Taiwan Taipei City aptg.com.tw


Traceroute to China, Taiwan CHT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.75.129.162 (203.75.129.162), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.77  0.24 ms  *  United States defense.gov
 3  11.52.252.30  4.33 ms  *  United States defense.gov
 4  11.131.180.218  0.99 ms  *  United States defense.gov
 5  47.246.113.182  1.07 ms  *  United States ALIYUN
 6  203.131.247.241  1.43 ms  AS2914  China Hong Kong ntt.com
 7  129.250.6.120  2.05 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.8.66  37.04 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  220.128.3.146  29.03 ms  AS3462  China Taiwan Taipei City cht.com.tw
10  220.128.1.14  27.76 ms  AS3462  China Taiwan Taipei City cht.com.tw
11  220.128.2.5  28.53 ms  AS3462  China Taiwan Taipei City cht.com.tw
12  211.22.229.45  29.93 ms  AS3462  China Taiwan Taipei City cht.com.tw
13  1.1.1.2  31.03 ms  AS12445  CLOUDFLARE.COM apnic.net
14  *
15  203.75.129.162  30.58 ms  AS3462  China Taiwan Taipei City cht.com.tw


Traceroute to China, Taiwan TFN (TCP Mode, Max 30 Hop)
============================================================
traceroute to 219.87.66.3 (219.87.66.3), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.27 ms  *  United States defense.gov
 3  *
 4  11.131.180.218  1.26 ms  *  United States defense.gov
 5  47.246.113.170  1.21 ms  *  United States ALIYUN
 6  103.203.158.19  3.94 ms  AS7713  China Hong Kong bbix.net
 7  60.199.21.9  20.86 ms  AS9924  China Taiwan Taipei City twmbroadband.com
 8  60.199.4.150  21.35 ms  AS9924  China Taiwan Taipei City twmbroadband.com
 9  60.199.3.126  27.08 ms  AS9924  China Taiwan Taipei City twmbroadband.com
10  60.199.16.62  24.64 ms  AS9924  China Taiwan Taipei City twmbroadband.com
11  219.87.66.3  26.93 ms  AS9924  China Taiwan Taipei City twmbroadband.com


Traceroute to China,Taiwan FET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.73.144.38 (211.73.144.38), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.32 ms  *  United States defense.gov
 3  11.56.8.22  3.49 ms  *  United States defense.gov
 4  11.131.180.218  1.06 ms  *  United States defense.gov
 5  103.52.74.250  16.28 ms  *  China Hong Kong youku.com
 6  116.251.83.37  27.20 ms  AS45102  Asia Pacific Regions ALIYUN
 7  210.242.214.134  26.58 ms  AS3462  China Taiwan Taipei City cht.com.tw
 8  220.128.1.238  27.22 ms  AS3462  China Taiwan Taipei City cht.com.tw
 9  *
10  *
11  210.242.214.129  24.19 ms  AS3462  China Taiwan Taipei City cht.com.tw
12  192.72.107.54  25.23 ms  AS4780  China Taiwan Taipei City fetnet.net
13  192.72.155.45  26.93 ms  AS4780  China Taiwan Taipei City fetnet.net
14  139.175.58.166  25.13 ms  AS4780  China Taiwan Taipei City fetnet.net
15  *
16  *
17  211.73.144.38  26.73 ms  AS9674  China Taiwan fetnet.net


Traceroute to China, Taiwan KBT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 61.63.0.102 (61.63.0.102), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.25 ms  *  United States defense.gov
 3  *
 4  11.131.180.214  6.37 ms  *  United States defense.gov
 5  47.246.113.178  1.12 ms  *  United States ALIYUN
 6  36.255.56.174  1.16 ms  AS4323,AS7713  China Hong Kong equinix.com
 7  203.133.92.178  2.27 ms  AS9416  China Hong Kong kbtelecom.net
 8  203.187.9.141  19.46 ms  AS9416  China Taiwan kbtelecom.net
 9  *
10  203.187.3.81  48.25 ms  AS9416  China Taiwan kbtelecom.net
11  203.133.92.90  52.68 ms  AS9416  China Taiwan kbtelecom.net
12  *
13  203.187.26.78  48.58 ms  AS9416  China Taiwan Taipei City kbtelecom.net
14  58.86.0.94  51.55 ms  AS18042  China Taiwan Taipei City kbtelecom.net
15  58.86.0.26  52.50 ms  AS18042  China Taiwan Taipei City kbtelecom.net
16  61.63.0.102  52.41 ms  AS18042  China Taiwan Taipei City kbtelecom.net


Traceroute to China, Taiwan TAIFO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 103.31.196.203 (103.31.196.203), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.26 ms  *  United States defense.gov
 3  *
 4  11.131.180.250  0.95 ms  *  United States defense.gov
 5  47.246.113.178  5.34 ms  *  United States ALIYUN
 6  *
 7  103.123.253.133  27.90 ms  *  China Taiwan Taipei City chief.com.tw
 8  223.26.64.141  28.17 ms  *  China Taiwan Taipei City chief.com.tw
 9  113.21.95.123  27.71 ms  AS17408  China Taiwan Taipei City chief.com.tw
10  113.21.84.210  24.89 ms  *  China Taiwan Taipei City chief.com.tw
11  103.31.197.122  27.45 ms  AS131584  China Taiwan Taipei City taifo.com.tw
12  *
13  103.31.197.70  26.75 ms  AS131584  China Taiwan Taipei City taifo.com.tw
14  103.31.196.203  26.46 ms  AS131584  China Taiwan Taipei City taifo.com.tw


Traceroute to United States, Los Angeles China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.25 ms  *  United States defense.gov
 3  11.56.8.2  4.43 ms  *  United States defense.gov
 4  11.131.180.218  1.24 ms  *  United States defense.gov
 5  47.246.113.170  1.21 ms  *  United States ALIYUN
 6  203.131.247.233  2.91 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.178  50.66 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  1.74 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  44.93 ms  AS2914  Japan Tokyo ntt.com
10  129.250.2.156  50.97 ms  AS2914  Japan Tokyo ntt.com
11  202.97.51.61  113.97 ms  AS4134  China Shanghai ChinaTelecom
12  202.97.25.134  216.95 ms  AS4134  United States California San Jose ChinaTelecom
13  218.30.33.17  288.77 ms  AS4134  United States ctamericas.com


Traceroute to United States, Los Angeles China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.102.252.100 (66.102.252.100), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.62 ms  *  United States defense.gov
 3  11.56.8.22  4.40 ms  *  United States defense.gov
 4  11.131.180.242  1.07 ms  *  United States defense.gov
 5  47.246.113.182  1.11 ms  *  United States ALIYUN
 6  *
 7  129.250.5.178  2.79 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.5.36  2.64 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  *
10  *
11  4.71.136.202  165.38 ms  AS3356  United States California Los Angeles level3.com
12  66.102.252.100  161.20 ms  AS4809  United States ctamericas.com


Traceroute to United States, Los Angeles PCCW (TCP Mode, Max 30 Hop)
============================================================
traceroute to 63.218.42.81 (63.218.42.81), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.77  0.25 ms  *  United States defense.gov
 3  11.56.8.2  4.05 ms  *  United States defense.gov
 4  11.131.180.218  0.85 ms  *  United States defense.gov
 5  47.246.113.174  2.77 ms  *  United States ALIYUN
 6  63.218.175.145  1.57 ms  AS3491  China Hong Kong pccw.com
 7  63.218.42.81  153.09 ms  AS3491  United States California Los Angeles pccw.com


Traceroute to United States, Los Angeles HE (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.220.18.42 (66.220.18.42), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.77  0.25 ms  *  United States defense.gov
 3  11.52.252.26  8.92 ms  *  United States defense.gov
 4  11.131.180.222  1.10 ms  *  United States defense.gov
 5  47.246.113.182  1.07 ms  *  United States ALIYUN
 6  123.255.91.158  7.74 ms  AS64050,AS135423  China Hong Kong hkix.net
 7  184.105.64.125  174.11 ms  AS6939  United States California Los Angeles he.net
 8  72.52.92.121  156.07 ms  AS6939  United States California Los Angeles he.net
 9  66.220.18.42  158.69 ms  AS6939  United States California Los Angeles he.net


Traceroute to United States, Los Angeles GTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 173.205.77.98 (173.205.77.98), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.28 ms  *  United States defense.gov
 3  11.52.252.30  4.12 ms  *  United States defense.gov
 4  11.131.180.254  1.11 ms  *  United States defense.gov
 5  47.246.113.178  1.29 ms  *  United States ALIYUN
 6  *
 7  129.250.5.70  131.69 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  2.46 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  49.23 ms  AS2914  Japan Tokyo ntt.com
10  129.250.4.142  133.08 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.3.175  152.16 ms  AS2914  NTT.COM BACKBONE ntt.com
12  69.174.23.157  155.11 ms  AS3257,AS8928  United States California San Jose gtt.net
13  89.149.182.162  172.35 ms  AS3257,AS8928  United States California Los Angeles gtt.net
14  173.205.77.98  163.91 ms  AS3257,AS8928  United States California Los Angeles gtt.net


Traceroute to United States, San Fransico ATT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 12.169.215.33 (12.169.215.33), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.77  0.30 ms  *  United States defense.gov
 3  11.56.8.2  5.51 ms  *  United States defense.gov
 4  11.131.180.218  1.04 ms  *  United States defense.gov
 5  116.251.82.178  1.34 ms  AS45102  China Hong Kong ALIYUN
 6  203.131.247.233  6.57 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.70  154.11 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  2.34 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  49.16 ms  AS2914  Japan Tokyo ntt.com
10  129.250.5.78  155.00 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.6.119  158.37 ms  AS2914  NTT.COM BACKBONE ntt.com
12  129.250.2.3  147.61 ms  AS2914  NTT.COM BACKBONE ntt.com
13  192.205.37.57  156.38 ms  AS7018  United States California att.com
14  12.122.149.138  159.34 ms  AS7018  United States California San Francisco att.com
15  12.122.110.13  157.96 ms  AS7018  United States California att.com
16  12.244.156.30  164.96 ms  AS7018  United States California att.com
17  12.169.215.33  151.52 ms  AS7018  United States California att.com


Traceroute to United States, New York TATA (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.198.181.100 (66.198.181.100), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.77  0.31 ms  *  United States defense.gov
 3  *
 4  11.131.180.254  1.12 ms  *  United States defense.gov
 5  116.251.82.178  1.30 ms  AS45102  China Hong Kong ALIYUN
 6  *
 7  129.250.6.120  1.79 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  116.0.93.210  2.09 ms  AS6453  China Hong Kong tatacommunications.com
 9  116.0.93.137  237.48 ms  AS6453  China Hong Kong tatacommunications.com
10  116.0.67.34  61.63 ms  AS6453  Japan Chiba tatacommunications.com
11  209.58.86.142  232.79 ms  AS6453  United States California Santa Clara tatacommunications.com
12  63.243.205.12  210.07 ms  AS6453  United States California San Jose tatacommunications.com
13  63.243.128.28  215.45 ms  AS6453  United States New York New York City tatacommunications.com
14  63.243.128.26  217.91 ms  AS6453  United States New York New York City tatacommunications.com
15  216.6.90.73  233.53 ms  AS6453  United States New York New York City tatacommunications.com
16  209.58.75.198  216.27 ms  AS6453  United States New York New York City tatacommunications.com
17  66.198.181.100  227.21 ms  AS6453  United States New York New York City tatacommunications.com


Traceroute to United States, San Jose China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.26 ms  *  United States defense.gov
 3  *
 4  11.131.180.242  1.16 ms  *  United States defense.gov
 5  47.246.113.174  1.09 ms  *  United States ALIYUN
 6  203.131.247.233  1.51 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.178  50.66 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  4.23 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  47.54 ms  AS2914  Japan Tokyo ntt.com
10  129.250.2.156  48.73 ms  AS2914  Japan Tokyo ntt.com
11  *
12  202.97.27.214  262.78 ms  AS4134  United States California San Jose ChinaTelecom
13  218.30.33.17  268.45 ms  AS4134  United States ctamericas.com


Traceroute to United States, San Jose NTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 23.11.26.62 (23.11.26.62), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.27 ms  *  United States defense.gov
 3  *
 4  11.131.180.242  1.00 ms  *  United States defense.gov
 5  47.246.113.178  1.32 ms  *  United States ALIYUN
 6  203.131.247.233  2.24 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.70  154.74 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  1.75 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  44.98 ms  AS2914  Japan Tokyo ntt.com
10  129.250.5.78  154.58 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.6.119  155.00 ms  AS2914  NTT.COM BACKBONE ntt.com
12  129.250.2.48  152.43 ms  AS2914  NTT.COM BACKBONE ntt.com
13  23.11.26.62  151.87 ms  AS2914  United States California San Jose akamai.com


Traceroute to United States, Fremont HE (TCP Mode, Max 30 Hop)
============================================================
traceroute to 72.52.104.74 (72.52.104.74), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.24 ms  *  United States defense.gov
 3  *
 4  11.131.180.214  1.07 ms  *  United States defense.gov
 5  116.251.82.178  1.12 ms  AS45102  China Hong Kong ALIYUN
 6  123.255.91.158  1.88 ms  AS64050,AS135423  China Hong Kong hkix.net
 7  184.105.64.130  52.87 ms  AS6939  Japan Tokyo he.net
 8  184.105.213.117  134.55 ms  AS6939  United States Washington Seattle he.net
 9  184.105.223.217  155.17 ms  AS6939  HE.NET BACKBONE he.net
10  184.105.213.158  149.76 ms  AS6939  United States California Fremont he.net
11  72.52.104.74  155.81 ms  AS6939  United States California Fremont he.net


Traceroute to United States, Las Vegas Level3 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 205.216.62.38 (205.216.62.38), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.25 ms  *  United States defense.gov
 3  11.56.8.22  3.48 ms  *  United States defense.gov
 4  11.131.180.254  1.11 ms  *  United States defense.gov
 5  116.251.82.174  1.05 ms  AS45102  China Hong Kong ALIYUN
 6  63.218.175.145  1.68 ms  AS3491  China Hong Kong pccw.com
 7  63.218.178.50  157.00 ms  AS3491  United States California San Jose pccw.com
 8  *
 9  4.68.73.46  163.80 ms  AS3356  United States California San Jose level3.com
10  208.168.142.98  205.39 ms  AS3561  United States Texas centurylink.com
11  216.34.172.42  218.56 ms  AS3561  United States Texas Dallas centurylink.com
12  216.34.164.82  232.64 ms  AS3561  United States Texas Dallas centurylink.com
13  205.216.7.204  229.61 ms  AS3561  United States Texas Dallas centurylink.com
14  *
15  205.216.62.38  234.36 ms  AS3561  United States Texas Dallas centurylink.com


Traceroute to United States, Miami ZAYO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 64.125.191.144 (64.125.191.144), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.77  0.27 ms  *  United States defense.gov
 3  *
 4  11.131.180.218  1.19 ms  *  United States defense.gov
 5  47.246.113.174  1.20 ms  *  United States ALIYUN
 6  203.131.247.233  1.76 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.70  132.97 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  5.67 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  47.82 ms  AS2914  Japan Tokyo ntt.com
10  129.250.5.78  158.27 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.6.119  158.42 ms  AS2914  NTT.COM BACKBONE ntt.com
12  129.250.5.86  133.95 ms  AS2914  United States Washington Seattle ntt.com
13  64.125.14.29  151.48 ms  AS6461  United States California San Jose zayo.com
14  64.125.29.0  211.90 ms  AS6461  United States Washington Seattle zayo.com
15  64.125.30.230  235.36 ms  AS6461  United States California San Jose zayo.com
16  64.125.28.145  237.51 ms  AS6461  ZAYO.COM BACKBONE zayo.com
17  64.125.29.52  223.93 ms  AS6461  United States Texas Dallas zayo.com
18  64.125.26.35  213.54 ms  AS6461  United States Florida Miami zayo.com
19  64.125.28.10  223.89 ms  AS6461  ZAYO.COM BACKBONE zayo.com
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to United States, Ashburn Cogentco (TCP Mode, Max 30 Hop)
============================================================
traceroute to 149.127.109.166 (149.127.109.166), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.26 ms  *  United States defense.gov
 3  *
 4  11.131.180.210  4.85 ms  *  United States defense.gov
 5  116.251.82.178  1.29 ms  AS45102  China Hong Kong ALIYUN
 6  203.131.247.233  1.01 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.70  153.91 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  2.51 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  47.50 ms  AS2914  Japan Tokyo ntt.com
10  129.250.5.78  151.79 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.6.119  154.83 ms  AS2914  NTT.COM BACKBONE ntt.com
12  129.250.8.42  153.23 ms  AS2914  NTT.COM BACKBONE ntt.com
13  154.54.43.13  146.39 ms  AS174  United States California San Jose cogentco.com
14  154.54.44.138  171.98 ms  AS174  United States Utah Salt Lake City cogentco.com
15  154.54.41.146  194.02 ms  AS174  United States Colorado Denver cogentco.com
16  154.54.31.90  197.10 ms  AS174  United States Missouri Kansas City cogentco.com
17  154.54.42.166  212.17 ms  AS174  United States Illinois Chicago cogentco.com
18  154.54.6.222  214.09 ms  AS174  United States Ohio Cleveland cogentco.com
19  154.54.82.254  216.14 ms  AS174  United States Virginia Arlington cogentco.com
20  154.54.46.194  223.98 ms  AS174  United States Virginia Herndon cogentco.com
21  38.140.164.58  214.76 ms  AS174  United States Virginia Herndon cogentco.com
22  149.127.109.2  226.63 ms  AS174  United States Virginia Ashburn cogentco.com
23  149.127.109.166  219.80 ms  AS174  United States Virginia Ashburn cogentco.com


Traceroute to German, Telekom (TCP Mode, Max 30 Hop)
============================================================
traceroute to 80.146.191.1 (80.146.191.1), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.77  0.32 ms  *  United States defense.gov
 3  *
 4  11.131.180.242  11.80 ms  *  United States defense.gov
 5  103.52.74.246  1.30 ms  *  China Hong Kong youku.com
 6  *
 7  129.250.5.178  154.27 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  2.02 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  44.61 ms  AS2914  Japan Tokyo ntt.com
10  129.250.5.78  160.18 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.6.119  155.69 ms  AS2914  NTT.COM BACKBONE ntt.com
12  129.250.4.118  155.64 ms  AS2914  United States California Palo Alto ntt.com
13  80.150.168.193  156.11 ms  AS3320  United States California telekom.de
14  91.23.217.161  258.93 ms  AS3320  Germany North Rhine-Westphalia telekom.de
15  80.146.191.1  278.06 ms  AS3320  Germany North Rhine-Westphalia telekom.de


Traceroute to German, Frankfurt O2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 82.113.108.25 (82.113.108.25), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.77  0.28 ms  *  United States defense.gov
 3  11.52.252.30  4.22 ms  *  United States defense.gov
 4  11.131.180.222  6.19 ms  *  United States defense.gov
 5  47.246.113.170  1.23 ms  *  United States ALIYUN
 6  203.131.247.241  1.44 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.178  2.52 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  1.88 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  48.52 ms  AS2914  Japan Tokyo ntt.com
10  129.250.5.78  151.90 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.4.155  188.84 ms  AS2914  NTT.COM BACKBONE ntt.com
12  *
13  94.142.107.78  209.11 ms  AS12956  United States Texas Dallas telefonica.com
14  94.142.126.126  254.04 ms  AS12956  United States Virginia Ashburn telefonica.com
15  213.140.36.241  267.06 ms  AS12956  France Ile-de-France Paris telefonica.com
16  176.52.248.90  347.28 ms  AS12956  Germany telefonica.com
17  213.140.51.61  314.18 ms  AS12956  Germany telefonica.com
18  62.53.1.35  315.83 ms  AS6805  Germany telefonica.de
19  62.53.0.12  268.37 ms  AS6805  Germany telefonica.de
20  62.53.0.5  293.80 ms  AS6805  Germany telefonica.de
21  62.53.28.149  274.06 ms  AS6805  Germany telefonica.de
22  62.53.0.127  267.84 ms  AS6805  Germany telefonica.de
23  62.53.2.63  263.38 ms  AS6805  Germany telefonica.de
24  82.113.108.25  275.07 ms  AS39706  Germany Hesse Frankfurt o2online.de


Traceroute to German, Frankfurt Vodafone (TCP Mode, Max 50 Hop)
============================================================
traceroute to 139.7.146.11 (139.7.146.11), 50 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.27 ms  *  United States defense.gov
 3  11.52.252.26  3.96 ms  *  United States defense.gov
 4  11.131.180.246  1.24 ms  *  United States defense.gov
 5  47.246.113.178  1.41 ms  *  United States ALIYUN
 6  63.218.175.145  1.61 ms  AS3491  China Hong Kong pccw.com
 7  63.218.174.233  1.38 ms  AS3491  China Hong Kong pccw.com
 8  63.218.174.85  1.99 ms  AS3491  China Hong Kong pccw.com
 9  195.2.8.17  241.87 ms  AS1273  Europe Regions vodafone.com
10  195.2.8.17  241.53 ms  AS1273  Europe Regions vodafone.com
11  195.2.2.57  249.12 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
12  195.2.10.122  253.35 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
13  195.89.99.18  241.97 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
14  195.89.99.18  242.75 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
15  *
16  92.79.230.2  253.18 ms  AS3209  Germany vodafone.de
17  139.7.148.84  247.68 ms  AS3209  Germany vodafone.de
18  139.7.148.84  247.51 ms  AS3209  Germany vodafone.de
19  *
20  *
21  *
22  139.7.146.11  264.01 ms  AS3209  Germany vodafone.de


Traceroute to German, Frankfurt China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.85.205.101 (118.85.205.101), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.37 ms  *  United States defense.gov
 3  *
 4  11.131.180.210  0.95 ms  *  United States defense.gov
 5  47.246.113.178  1.25 ms  *  United States ALIYUN
 6  203.131.247.233  20.45 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.178  50.83 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  2.45 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  44.88 ms  AS2914  Japan Tokyo ntt.com
10  129.250.2.10  50.00 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.66.62  133.17 ms  AS2914  China Shanghai ntt.com
12  118.85.205.101  217.55 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom


Traceroute to German, Frankfurt China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 5.10.138.33 (5.10.138.33), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.25 ms  *  United States defense.gov
 3  11.56.8.22  3.96 ms  *  United States defense.gov
 4  11.131.180.254  1.24 ms  *  United States defense.gov
 5  47.246.113.170  1.30 ms  *  United States ALIYUN
 6  203.131.247.241  1.22 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.178  2.80 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.5.36  2.47 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  *
10  *
11  *
12  212.187.165.22  210.35 ms  AS3356  United Kingdom London level3.com
13  59.43.180.113  185.72 ms  AS4809  Europe Regions ChinaTelecom
14  5.10.138.33  187.44 ms  AS4809  Germany cteurope.net


Traceroute to German, Frankfurt GTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 213.200.65.70 (213.200.65.70), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.26 ms  *  United States defense.gov
 3  11.56.8.6  4.20 ms  *  United States defense.gov
 4  11.131.180.254  1.18 ms  *  United States defense.gov
 5  47.246.113.182  1.27 ms  *  United States ALIYUN
 6  203.131.247.233  1.04 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.178  154.00 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  4.50 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  126.92 ms  AS2914  Japan Tokyo ntt.com
10  129.250.5.78  159.96 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.2.8  133.39 ms  AS2914  NTT.COM BACKBONE ntt.com
12  69.174.23.157  158.66 ms  AS3257,AS8928  United States California San Jose gtt.net
13  213.200.114.173  292.94 ms  AS3257,AS8928  GTT.NET BACKBONE gtt.net
14  213.200.65.70  312.64 ms  AS3257,AS8928  GTT.NET BACKBONE gtt.net


Traceroute to German, FrankfurtCogentco (TCP Mode, Max 30 Hop)
============================================================
traceroute to 212.20.150.5 (212.20.150.5), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.29 ms  *  United States defense.gov
 3  *
 4  11.131.180.246  1.22 ms  *  United States defense.gov
 5  47.246.113.170  1.20 ms  *  United States ALIYUN
 6  203.131.247.241  1.69 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.178  150.28 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  3.80 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  47.55 ms  AS2914  Japan Tokyo ntt.com
10  129.250.5.78  159.10 ms  AS2914  NTT.COM BACKBONE ntt.com
11  129.250.6.119  155.60 ms  AS2914  NTT.COM BACKBONE ntt.com
12  129.250.8.42  157.63 ms  AS2914  NTT.COM BACKBONE ntt.com
13  154.54.43.13  146.09 ms  AS174  United States California San Jose cogentco.com
14  154.54.44.142  169.84 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
15  154.54.41.146  197.23 ms  AS174  United States Colorado Denver cogentco.com
16  154.54.5.90  208.96 ms  AS174  United States Missouri Kansas City cogentco.com
17  154.54.42.166  212.29 ms  AS174  United States Illinois Chicago cogentco.com
18  154.54.6.222  215.07 ms  AS174  United States Ohio Cleveland cogentco.com
19  154.54.31.234  215.78 ms  AS174  Canada Ontario Toronto cogentco.com
20  154.54.42.90  226.65 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
21  154.54.44.161  253.58 ms  AS174  United Kingdom Merseyside County Southport cogentco.com
22  154.54.77.245  255.20 ms  AS174  Netherlands North Holland Amsterdam cogentco.com
23  130.117.0.122  314.07 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
24  130.117.48.94  306.26 ms  AS174  Germany Hesse Frankfurt cogentco.com
25  212.20.150.5  319.87 ms  AS174  Germany Hesse Frankfurt cogentco.com


Traceroute to United Kingdom, Vodafone (TCP Mode, Max 30 Hop)
============================================================
traceroute to 194.62.232.211 (194.62.232.211), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.25 ms  *  United States defense.gov
 3  11.56.8.18  5.06 ms  *  United States defense.gov
 4  11.131.180.218  1.36 ms  *  United States defense.gov
 5  47.246.113.174  1.61 ms  *  United States ALIYUN
 6  63.217.16.217  1.37 ms  AS3491  China Hong Kong pccw.com
 7  63.218.174.85  1.98 ms  AS3491  China Hong Kong pccw.com
 8  63.218.174.85  1.71 ms  AS3491  China Hong Kong pccw.com
 9  195.2.10.97  235.23 ms  AS1273  China Hong Kong vodafone.com
10  195.2.2.57  236.44 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
11  195.2.10.178  236.11 ms  AS1273  Singapore vodafone.com
12  195.2.30.213  242.51 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
13  195.2.30.213  236.30 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
14  *
15  194.62.232.211  240.88 ms  AS25135  United Kingdom vodafone.com


Traceroute to United Kingdom， BT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 213.121.43.24 (213.121.43.24), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.27 ms  *  United States defense.gov
 3  11.52.252.10  4.72 ms  *  United States defense.gov
 4  11.131.180.210  0.97 ms  *  United States defense.gov
 5  47.246.113.170  1.23 ms  *  United States ALIYUN
 6  63.218.115.53  1.82 ms  AS3491  China Hong Kong pccw.com
 7  63.223.54.30  217.23 ms  AS3491  United States pccw.com
 8  166.49.169.101  216.68 ms  AS5400  United States Virginia Ashburn bt.com
 9  166.49.195.87  290.43 ms  AS5400  BT.COM BACKBONE bt.com
10  166.49.209.133  297.05 ms  AS5400  United Kingdom London bt.com
11  109.159.249.54  284.87 ms  AS2856  United Kingdom bt.com
12  194.72.7.69  290.48 ms  AS2856  United Kingdom London bt.com
13  *
14  *
15  *
16  *
17  *
18  213.121.43.24  291.04 ms  AS2856  United Kingdom bt.com


Traceroute to United Kingdom, London TATA (TCP Mode, Max 30 Hop)
============================================================
traceroute to 80.231.60.38 (80.231.60.38), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.27 ms  *  United States defense.gov
 3  11.52.252.14  4.33 ms  *  United States defense.gov
 4  11.131.180.214  0.96 ms  *  United States defense.gov
 5  47.246.113.182  1.12 ms  *  United States ALIYUN
 6  203.131.247.233  0.98 ms  AS2914  China Hong Kong ntt.com
 7  129.250.6.120  1.64 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  116.0.93.210  2.84 ms  AS6453  China Hong Kong tatacommunications.com
 9  116.0.93.169  203.18 ms  AS6453  Singapore tatacommunications.com
10  180.87.12.1  213.09 ms  AS6453  Singapore tatacommunications.com
11  180.87.12.225  205.69 ms  AS6453  Singapore tatacommunications.com
12  180.87.39.21  209.94 ms  AS6453  India Maharashtra Mumbai tatacommunications.com
13  80.231.130.130  233.46 ms  AS6453  United Kingdom London tatacommunications.com
14  80.231.60.38  220.81 ms  AS6453  United Kingdom London tatacommunications.com


Traceroute to Russia, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.85.205.180 (118.85.205.180), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.77  0.25 ms  *  United States defense.gov
 3  11.52.252.26  8.69 ms  *  United States defense.gov
 4  11.131.180.246  1.22 ms  *  United States defense.gov
 5  47.246.113.178  1.32 ms  *  United States ALIYUN
 6  203.131.247.233  1.97 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.70  50.64 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  1.82 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.50  44.43 ms  AS2914  Japan Tokyo ntt.com
10  129.250.2.156  56.00 ms  AS2914  Japan Tokyo ntt.com
11  202.97.51.61  116.54 ms  AS4134  China Shanghai ChinaTelecom
12  *
13  202.97.41.1  110.76 ms  AS4134  China Tianjin ChinaTelecom
14  202.97.30.230  190.56 ms  AS4134  Russian Federation Primorsky Krai Vladivostok ChinaTelecom
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Russia, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 185.75.173.17 (185.75.173.17), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.27 ms  *  United States defense.gov
 3  11.56.8.6  4.89 ms  *  United States defense.gov
 4  11.131.180.250  1.16 ms  *  United States defense.gov
 5  47.246.113.174  1.37 ms  *  United States ALIYUN
 6  *
 7  129.250.5.178  2.77 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.5.36  5.66 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  4.68.73.13  2.38 ms  AS3356  China Hong Kong level3.com
10  *
11  *
12  212.187.165.22  209.89 ms  AS3356  United Kingdom London level3.com
13  59.43.180.113  188.20 ms  AS4809  Europe Regions ChinaTelecom
14  185.75.173.17  180.35 ms  AS4809  Russian Federation Moscow cteurope.net


Traceroute to Russia, Moscow RT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 87.226.162.77 (87.226.162.77), 30 hops max, 60 byte packets
 1  *
 2  11.52.252.85  0.34 ms  *  United States defense.gov
 3  11.52.252.30  4.48 ms  *  United States defense.gov
 4  11.131.180.210  1.09 ms  *  United States defense.gov
 5  103.52.74.246  1.27 ms  *  China Hong Kong youku.com
 6  103.203.158.122  1.87 ms  AS7713  China Hong Kong bbix.net
 7  213.59.211.241  209.12 ms  AS12389  Russian Federation Moscow rt.ru
 8  87.226.140.2  210.95 ms  AS12389  Russian Federation Moscow rt.ru
 9  *
10  87.226.162.77  267.35 ms  AS12389  Russian Federation Moscow rt.ru


Traceroute to Russia, Moscow TTK (TCP Mode, Max 30 Hop)
============================================================
traceroute to 217.150.32.2 (217.150.32.2), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.31 ms  *  United States defense.gov
 3  *
 4  11.131.180.210  1.20 ms  *  United States defense.gov
 5  116.251.82.174  1.09 ms  AS45102  China Hong Kong ALIYUN
 6  203.131.247.233  1.25 ms  AS2914  China Hong Kong ntt.com
 7  129.250.5.178  220.48 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.6.99  2.03 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.7.66  37.20 ms  AS2914  Singapore ntt.com
10  129.250.7.62  221.50 ms  AS2914  Germany Hesse Frankfurt ntt.com
11  *
12  129.250.4.77  212.16 ms  AS2914  Germany Hesse Frankfurt ntt.com
13  129.250.4.249  218.68 ms  AS2914  Germany Hesse Frankfurt ntt.com
14  213.198.82.158  220.27 ms  AS2914  Germany Hesse Frankfurt ntt.com
15  *
16  62.33.207.217  256.25 ms  AS20485  Russian Federation Moscow ttk.ru
17  80.237.46.177  265.01 ms  AS20485  Russian Federation Moscow ttk.ru
18  217.150.32.243  247.34 ms  AS20485  Russian Federation Moscow ttk.ru
19  *
20  217.150.32.2  240.43 ms  AS20485  Russian Federation Moscow ttk.ru


Traceroute to Russia, Moscow MTS (TCP Mode, Max 30 Hop)
============================================================
traceroute to 195.34.32.71 (195.34.32.71), 30 hops max, 60 byte packets
 1  *
 2  11.56.8.69  0.26 ms  *  United States defense.gov
 3  11.52.252.14  3.80 ms  *  United States defense.gov
 4  11.131.180.222  1.07 ms  *  United States defense.gov
 5  47.246.113.174  1.27 ms  *  United States ALIYUN
 6  123.255.90.58  64.11 ms  AS64050,AS135423  China Hong Kong hkix.net
 7  212.188.2.105  171.69 ms  AS8359  Russian Federation mts.ru
 8  212.188.28.214  165.15 ms  AS8359  MTS.RU BACKBONE mts.ru
 9  212.188.29.137  165.00 ms  AS8359  Russian Federation mts.ru
10  212.188.29.9  117.59 ms  AS8359  Russian Federation mts.ru
11  195.34.50.153  135.35 ms  AS8359  Russian Federation mts.ru
12  212.188.42.129  165.10 ms  AS8359  Russian Federation mts.ru
13  212.188.29.25  168.16 ms  AS8359  Russian Federation Moscow mts.ru
14  195.34.53.5  168.53 ms  AS8359  Russian Federation Moscow mts.ru
15  195.34.53.213  165.04 ms  AS8359  Russian Federation Moscow mts.ru
16  195.34.32.71  168.08 ms  AS8359  Russian Federation Moscow mts.ru
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;alibabacloud就是阿里云的国际版，可以以相当于24元的价格买到30M的香港服务器。联通的速度非常不错，性能也非常好，用来科学上网、建站都是不错的选择。&lt;/p&gt;
</content:encoded></item><item><title>HostDoc评测：黑五i9-9900K款</title><link>https://yushum.com/posts/hostdoc%E8%AF%84%E6%B5%8B%E9%BB%91%E4%BA%94i9-9900k%E6%AC%BE/</link><guid isPermaLink="true">https://yushum.com/posts/hostdoc%E8%AF%84%E6%B5%8B%E9%BB%91%E4%BA%94i9-9900k%E6%AC%BE/</guid><pubDate>Tue, 17 Dec 2019 18:18:00 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;HostDoc，2017年底注册在英国（资质可查），主业是VPS（还有些摆设业务 shared hosting、SSL证书 ），简单一句话概括就是HostDoc主要售卖OVH分布在全球各个数据中心的VPS（非分销，而是租服务器自己开卖VPS）。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/3dec4118ee81f93-1024x551-1.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;配置信息&lt;/h2&gt;
&lt;h3&gt;系统信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;OS Release:		Debian GNU/Linux &quot;Buster&quot; 10.2 (x86_64)
 CPU Model:		Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz
 CPU Cache Size:	16384 KB
 CPU Number:		3 vCPU
 Virt Type:		KVM
 Memory Usage:		268.57 MB / 3.85 GB
 Swap Usage:		[ No Swapfile / Swap partition ]
 Disk Usage:		2.35 GB / 19.59 GB
 Boot Device:		/dev/vda1
 Load (1/5/15min):	0.23 0.05 0.02
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;网络信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;IPV4 - IP Address:	[DE] 194.31.142.*
 IPV4 - ASN Info:	AS23470 (ReliableSite.Net LLC)
 IPV4 - Region:		Hesse
 IPV6 - IP Address:	[GB] 2a0f:9400:8005:119::1
 IPV6 - ASN Info:	AS23470 (ReliableSite.Net LLC)
 IPV6 - Region:		United Kingdom, null
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;流媒体解锁&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;HBO Now:				Yes
 Bahamut Anime:				No
 Abema.TV:				No
 Bilibili Hongkong/Macau/Taiwan:	No
 Bilibili TaiwanOnly:			No
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;CPU性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread Test:			1472 Scores
 3 Threads Test:		4216 Scores
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;内存性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread - Read Test :		26719.40 MB/s
 1 Thread - Write Test:		19307.50 MB/s
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;硬盘速度测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Test Name		Write Speed				Read Speed
 10MB-4K Block		59.5 MB/s (0.07 IOPS, 0.18 s)		64.0 MB/s (15614 IOPS, 0.16 s)
 10MB-1M Block		903 MB/s (861 IOPS, 0.01 s)		792 MB/s (755 IOPS, 0.01 s)
 100MB-4K Block		60.0 MB/s (0.07 IOPS, 1.75 s)		66.2 MB/s (16172 IOPS, 1.58 s)
 100MB-1M Block		1.7 GB/s (1587 IOPS, 0.06 s)		1.1 GB/s (1095 IOPS, 0.09 s)
 1GB-4K Block		59.1 MB/s (0.07 IOPS, 17.73 s)		70.2 MB/s (17149 IOPS, 14.93 s)
 1GB-1M Block		1.7 GB/s (1592 IOPS, 0.63 s)		1.3 GB/s (1209 IOPS, 0.83 s)
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;网速测试&lt;/h2&gt;
&lt;h3&gt;Speedtest.net网速测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Node Name			Upload Speed	Download Speed	Ping Latency
 Speedtest Default		75.52 MB/s	425.68 MB/s	139.81 ms
 China, Jilin CU		50.56 MB/s	201.95 MB/s	222.31 ms
 China, Shandong CU		6.13 MB/s	775.42 MB/s	236.79 ms
 China, Nanjing CU		67.94 MB/s	8.23 MB/s	155.73 ms
 China, Shanghai CU		4.09 MB/s	101.28 MB/s	219.94 ms
 China, Guangxi CU		43.14 MB/s	111.17 MB/s	175.07 ms
 China, Lanzhou CU		55.34 MB/s	80.02 MB/s	194.50 ms
 China, Beijing CT		2.54 MB/s	89.32 MB/s	233.26 ms
 China, Hangzhou CT		0.41 MB/s	14.16 MB/s	169.36 ms
 China, Nanjing CT		1.29 MB/s	326.81 MB/s	172.51 ms
 China, Guangzhou CT		1.06 MB/s	320.89 MB/s	163.71 ms
 China, Wuhan CT		11.02 MB/s	8.67 MB/s	174.62 ms
 China, Shenyang CM		3.72 MB/s	71.52 MB/s	233.21 ms
 China, Hangzhou CM		0.11 MB/s	184.79 MB/s	251.04 ms
 China, Shanghai CM		Fail: Unknown Error
 China, Nanning CM		8.87 MB/s	685.06 MB/s	296.63 ms
 China, Lanzhou CM		5.90 MB/s	179.17 MB/s	245.62 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;IPv4路由测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 60 byte packets
 1  194.31.142.1  1.11 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.61  0.89 ms  AS3257  United States California Los Angeles gtt.net
 3  89.149.140.73  0.37 ms  AS3257  GTT.NET BACKBONE gtt.net
 4  173.205.56.186  3.94 ms  AS3257  United States California Los Angeles gtt.net
 5  219.158.98.149  215.35 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 6  219.158.103.33  215.73 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 7  *
 8  219.158.108.241  256.66 ms  AS4837  China Beijing ChinaUnicom
 9  125.33.186.2  257.32 ms  AS4808  China Beijing ChinaUnicom
10  221.219.202.246  251.81 ms  AS4808  China Beijing ChinaUnicom
11  124.65.194.134  239.19 ms  AS4808  China Beijing ChinaUnicom
12  61.135.113.154  253.08 ms  AS4808  China Beijing ChinaUnicom
13  *
14  *
15  123.125.99.1  233.92 ms  AS4808  China Beijing ChinaUnicom


Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 60 byte packets
 1  194.31.142.1  0.42 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.79 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  1.06 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.25.150  1.16 ms  AS174  United States California Los Angeles cogentco.com
 5  38.142.238.34  4.26 ms  AS174  United States California Los Angeles cogentco.com
 6  202.97.90.113  12.67 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  202.97.59.141  157.92 ms  AS4134  China Shanghai ChinaTelecom
 8  202.97.85.37  151.79 ms  AS4134  China Beijing ChinaTelecom
 9  *
10  *
11  180.149.128.1  187.94 ms  AS23724  China Beijing ChinaTelecom


Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.88.117 (211.136.88.117), 30 hops max, 60 byte packets
 1  194.31.142.1  0.34 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.61  0.64 ms  AS3257  United States California Los Angeles gtt.net
 3  89.149.181.170  1.32 ms  AS3257  United States California Los Angeles gtt.net
 4  173.205.45.154  28.64 ms  AS3257  United States California Los Angeles gtt.net
 5  *
 6  *
 7  *
 8  *
 9  221.176.16.213  322.46 ms  AS9808  China Beijing ChinaMobile
10  *
11  *
12  211.136.88.117  225.07 ms  AS56048  China Beijing ChinaMobile


Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.0.49 (58.247.0.49), 30 hops max, 60 byte packets
 1  194.31.142.1  0.34 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.61  0.25 ms  AS3257  United States California Los Angeles gtt.net
 3  89.149.140.77  1.01 ms  AS3257  United States California Los Angeles gtt.net
 4  199.229.231.206  4.30 ms  AS3257  GTT.NET BACKBONE gtt.net
 5  219.158.97.205  222.83 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 6  219.158.24.137  197.28 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 7  219.158.19.65  191.43 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 8  219.158.111.253  241.80 ms  AS4837  China Shanghai ChinaUnicom
 9  *
10  58.247.0.49  202.16 ms  AS17621  China Shanghai ChinaUnicom


Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.1 (180.153.28.1), 30 hops max, 60 byte packets
 1  194.31.142.1  0.33 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.67 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.60 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.25.150  1.10 ms  AS174  United States California Los Angeles cogentco.com
 5  38.142.238.34  1.77 ms  AS174  United States California Los Angeles cogentco.com
 6  202.97.50.25  9.17 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  202.97.58.177  134.73 ms  AS4134  China Shanghai ChinaTelecom
 8  *
 9  202.97.50.149  154.79 ms  AS4134  China Shanghai ChinaTelecom
10  *
11  *
12  101.95.225.158  172.92 ms  AS4812  China Shanghai ChinaTelecom
13  101.227.255.34  156.94 ms  AS4812  China Shanghai ChinaTelecom
14  *
15  *
16  *
17  *
18  180.153.28.1  168.54 ms  AS4812  China Shanghai ChinaTelecom


Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 60 byte packets
 1  194.31.142.1  0.57 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.89 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.56 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.3.70  1.02 ms  AS174  United States California Los Angeles cogentco.com
 5  38.19.140.58  48.26 ms  AS174  United States California Los Angeles cogentco.com
 6  223.118.10.153  45.99 ms  AS58453  United States California Los Angeles ChinaMobile
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 60 byte packets
 1  194.31.142.1  0.36 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.57  17.50 ms  AS3257  United States California Los Angeles gtt.net
 3  89.149.180.26  7.18 ms  AS3257  United States California San Jose gtt.net
 4  173.205.56.174  9.63 ms  AS3257  United States Washington, D.C. gtt.net
 5  219.158.116.237  145.05 ms  AS4837  China Shanghai ChinaUnicom
 6  219.158.113.138  169.30 ms  AS4837  China Shanghai ChinaUnicom
 7  219.158.113.105  147.93 ms  AS4837  China Shanghai ChinaUnicom
 8  *
 9  120.83.0.62  174.90 ms  AS17816  China Guangdong Guangzhou ChinaUnicom
10  120.80.175.70  170.06 ms  AS17622  China Guangdong Guangzhou ChinaUnicom
11  210.21.4.130  169.15 ms  AS17622  China Guangdong Guangzhou ChinaUnicom


Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 60 byte packets
 1  194.31.142.1  0.41 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.79 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.61 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.42.102  1.14 ms  AS174  United States California Los Angeles cogentco.com
 5  38.142.238.34  3.42 ms  AS174  United States California Los Angeles cogentco.com
 6  202.97.92.38  11.53 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  202.97.72.101  173.97 ms  *  China Guangdong Guangzhou ChinaTelecom
 8  202.97.94.113  163.21 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
 9  202.97.66.157  162.69 ms  *  China Guangdong Guangzhou ChinaTelecom
10  113.96.4.158  171.88 ms  AS58466  China Guangdong Guangzhou ChinaTelecom
11  113.108.209.1  159.23 ms  AS58466  China Guangdong Guangzhou ChinaTelecom


Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.139.129.5 (211.139.129.5), 30 hops max, 60 byte packets
 1  194.31.142.1  0.49 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.57  0.68 ms  AS3257  United States California Los Angeles gtt.net
 3  213.200.124.178  0.41 ms  AS3257  United States California Los Angeles gtt.net
 4  80.239.160.154  0.74 ms  AS1299  United States California Los Angeles telia.com
 5  62.115.119.90  13.55 ms  AS1299  United States California Palo Alto telia.com
 6  62.115.125.1  14.56 ms  AS1299  United States California San Jose telia.com
 7  223.120.6.53  38.75 ms  AS58453  United States Washington Seattle ChinaMobile
 8  *
 9  221.183.55.78  173.73 ms  AS9808  China Guangdong Guangzhou ChinaMobile
10  221.176.24.237  174.97 ms  AS9808  China Guangdong Guangzhou ChinaMobile
11  221.176.24.157  176.21 ms  AS9808  China Guangdong Guangzhou ChinaMobile
12  221.183.26.166  172.93 ms  AS9808  China Guangdong Guangzhou ChinaMobile
13  *
14  *
15  211.139.129.5  226.25 ms  AS56040  China Guangdong Guangzhou ChinaMobile


Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 60 byte packets
 1  194.31.142.1  0.36 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.87 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.98 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.25.150  0.65 ms  AS174  United States California Los Angeles cogentco.com
 5  *
 6  218.105.7.213  142.29 ms  AS9929  China Hong Kong ChinaUnicom
 7  218.105.2.169  147.45 ms  AS9929  China Guangdong Guangzhou ChinaUnicom
 8  218.105.2.210  168.77 ms  AS9929  China Shanghai ChinaUnicom
 9  210.13.75.138  174.43 ms  AS9929  China Shanghai ChinaUnicom
10  210.13.66.237  197.90 ms  AS9929  China Shanghai ChinaUnicom
11  210.13.66.238  181.65 ms  AS9929  China Shanghai ChinaUnicom


Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 60 byte packets
 1  194.31.142.1  0.30 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.78 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  1.06 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.3.70  0.80 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.10.10  0.92 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 6  62.115.136.47  2.31 ms  AS1299  United States California Los Angeles telia.com
 7  213.248.79.253  1.53 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  59.43.246.237  175.54 ms  *  China Shanghai ChinaTelecom
 9  59.43.181.153  180.57 ms  *  China ChinaTelecom
10  59.43.187.73  189.62 ms  *  China Shanghai ChinaTelecom
11  61.152.24.194  147.85 ms  AS4812  China Shanghai ChinaTelecom
12  101.95.95.66  129.97 ms  AS4812  China Shanghai ChinaTelecom
13  58.32.0.1  178.13 ms  AS4812  China Shanghai ChinaTelecom


Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 14.131.125.1 (14.131.125.1), 30 hops max, 60 byte packets
 1  194.31.142.1  0.44 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.76 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.85 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.42.102  0.93 ms  AS174  United States California Los Angeles cogentco.com
 5  38.142.238.34  5.90 ms  AS174  United States California Los Angeles cogentco.com
 6  202.97.90.117  11.53 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  202.97.27.181  169.39 ms  AS4134  China Beijing ChinaTelecom
 8  202.97.12.81  159.05 ms  AS4134  China Beijing ChinaTelecom
 9  202.97.48.213  201.99 ms  AS4134  China Beijing ChinaTelecom
10  *
11  *
12  106.120.235.22  173.06 ms  AS4847  China Beijing ChinaTelecom
13  *
14  218.241.246.42  176.52 ms  AS4847  China Beijing DRPENG
15  218.241.255.133  184.73 ms  AS4847  China Beijing DRPENG
16  124.205.97.138  187.92 ms  AS4847,AS17816  China Beijing DRPENG
17  218.241.254.234  176.42 ms  AS4847  China Beijing DRPENG
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 60 byte packets
 1  194.31.142.1  0.36 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.57  0.44 ms  AS3257  United States California Los Angeles gtt.net
 3  213.254.230.250  0.42 ms  AS3257  United States California Los Angeles gtt.net
 4  173.205.56.190  1.69 ms  AS3257  United States California Los Angeles gtt.net
 5  219.158.96.29  196.55 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 6  219.158.103.25  219.36 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 7  219.158.8.121  214.87 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 8  *
 9  61.149.203.118  199.12 ms  AS4808  China Beijing ChinaUnicom
10  61.148.158.46  223.60 ms  AS4808  China Beijing ChinaUnicom
11  61.148.156.190  237.80 ms  AS4808  China Beijing ChinaUnicom
12  *
13  *
14  124.205.97.138  235.10 ms  AS4847,AS17816  China Beijing DRPENG
15  218.241.253.134  245.63 ms  AS4847  China Beijing DRPENG
16  *
17  211.167.230.100  205.41 ms  AS4808,AS17964  China Beijing DRPENG


Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 60 byte packets
 1  194.31.142.1  0.30 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.80 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  1.02 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.25.150  0.99 ms  AS174  United States California Los Angeles cogentco.com
 5  38.88.196.186  54.10 ms  AS174  United States California Los Angeles cogentco.com
 6  101.4.117.169  203.11 ms  AS4538  China Beijing CHINAEDU
 7  101.4.117.101  206.87 ms  AS4538  China Beijing CHINAEDU
 8  101.4.114.197  203.07 ms  AS4538  China Beijing CHINAEDU
 9  219.224.102.234  216.97 ms  AS4538  China Beijing CHINAEDU
10  202.112.38.158  203.13 ms  AS4538  China Beijing CHINAEDU
11  202.205.109.205  203.07 ms  AS4538  China Beijing CHINAEDU


Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 60 byte packets
 1  194.31.142.1  0.50 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.86 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.85 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.31.190  12.69 ms  AS174  United States California San Jose cogentco.com
 5  154.54.43.69  14.11 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 6  154.54.81.66  28.91 ms  AS174  United States Oregon Portland cogentco.com
 7  154.54.87.122  162.46 ms  AS174  China Hong Kong cogentco.com
 8  *
 9  159.226.254.5  196.82 ms  AS7497  China Beijing CSTNET
10  159.226.254.49  196.93 ms  AS7497  China Beijing CSTNET
11  159.226.254.1  202.26 ms  AS7497  China Beijing CSTNET


Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 60 byte packets
 1  194.31.142.1  0.33 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.72 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  0.81 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.42.102  0.82 ms  AS174  United States California Los Angeles cogentco.com
 5  38.142.238.34  4.57 ms  AS174  United States California Los Angeles cogentco.com
 6  202.97.90.113  11.43 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  202.97.59.141  162.42 ms  AS4134  China Shanghai ChinaTelecom
 8  *
 9  202.97.34.157  153.79 ms  AS4134  China Beijing ChinaTelecom
10  *
11  *
12  60.247.93.254  186.51 ms  AS4847  China Beijing uecom.com.cn ChinaTelecom
13  *
14  211.156.140.17  179.13 ms  AS7641  China Beijing chinabtn.com CATV


Traceroute to China, Hongkong CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.160.95.218 (203.160.95.218), 30 hops max, 60 byte packets
 1  194.31.142.1  0.93 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.61  8.11 ms  AS3257  United States California Los Angeles gtt.net
 3  89.149.186.66  149.57 ms  AS3257  China Hong Kong gtt.net
 4  69.174.124.138  152.68 ms  AS3257  China Hong Kong gtt.net
 5  119.252.139.14  155.17 ms  AS10099  China Hong Kong ChinaUnicom
 6  202.77.22.89  150.64 ms  AS10099  China Hong Kong ChinaUnicom
 7  203.160.95.218  150.59 ms  AS10099  China Hong Kong ChinaUnicom


Traceroute to China, Hongkong CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.232.173 (203.215.232.173), 30 hops max, 60 byte packets
 1  194.31.142.1  0.34 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.57  0.35 ms  AS3257  United States California Los Angeles gtt.net
 3  218.30.54.72  3.63 ms  AS4134  United States California Los Angeles ctamericas.com
 4  202.97.49.105  15.84 ms  AS4134  United States California Los Angeles ChinaTelecom
 5  203.215.232.173  159.01 ms  AS4134  China Hong Kong ChinaTelecom


Traceroute to China, Hongkong CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.8.25.187 (203.8.25.187), 30 hops max, 60 byte packets
 1  194.31.142.1  0.38 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.84 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.64 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.3.70  0.98 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.10.10  0.84 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 6  62.115.136.47  0.83 ms  AS1299  United States California Los Angeles telia.com
 7  213.248.79.253  1.05 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  *
 9  59.43.182.150  180.44 ms  *  China Hong Kong ChinaTelecom
10  59.43.187.22  181.80 ms  *  China Hong Kong ChinaTelecom
11  203.8.25.187  181.35 ms  AS4809  China Hong Kong ChinaTelecom


Traceroute to China, Hongkong CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.142.105.9 (203.142.105.9), 30 hops max, 60 byte packets
 1  194.31.142.1  5.98 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.65 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  0.70 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.31.190  12.65 ms  AS174  United States California San Jose cogentco.com
 5  154.54.5.102  13.19 ms  AS174  United States California San Jose cogentco.com
 6  38.88.224.162  13.66 ms  AS174  United States California San Jose cogentco.com
 7  223.120.6.69  13.27 ms  AS58453  United States California San Jose ChinaMobile
 8  223.120.6.106  13.53 ms  AS58453  United States California San Jose ChinaMobile
 9  223.118.10.105  11.21 ms  AS58453  United States California Los Angeles ChinaMobile
10  *
11  223.118.3.74  162.32 ms  AS58453  China Hong Kong ChinaMobile
12  223.119.0.2  162.48 ms  AS58453  China Hong Kong ChinaMobile
13  203.142.100.165  160.00 ms  AS9231  China Hong Kong ChinaMobile
14  203.142.100.22  163.12 ms  AS9231  China Hong Kong ChinaMobile
15  203.142.105.9  160.64 ms  AS9231  China Hong Kong ChinaMobile


Traceroute to China, Hongkong HGC (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.188.104.30 (218.188.104.30), 30 hops max, 60 byte packets
 1  194.31.142.1  0.75 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  206.72.210.122  0.47 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 3  72.52.72.118  0.71 ms  AS6939  United States California Los Angeles he.net
 4  85.95.25.18  154.97 ms  AS15412  Japan Tokyo globalcloudxchange.com
 5  62.216.136.13  154.91 ms  AS15412  Japan Tokyo globalcloudxchange.com
 6  85.95.25.194  165.72 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
 7  62.216.145.74  153.42 ms  AS15412  China Hong Kong globalcloudxchange.com
 8  218.189.5.56  156.33 ms  AS9304  China Hong Kong hgc.com.hk
 9  218.189.5.56  157.01 ms  AS9304  China Hong Kong hgc.com.hk
10  218.188.104.30  151.26 ms  AS9304  China Hong Kong hgc.com.hk


Traceroute to China, Hongkong HKBN (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.6.23.239 (210.6.23.239), 30 hops max, 60 byte packets
 1  194.31.142.1  0.33 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.86 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  0.73 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.40.146  12.70 ms  AS174  United States California San Jose cogentco.com
 5  154.54.43.149  14.24 ms  AS174  United States California cogentco.com
 6  154.54.81.66  28.97 ms  AS174  United States Oregon Portland cogentco.com
 7  154.54.87.122  162.57 ms  AS174  China Hong Kong cogentco.com
 8  154.18.8.154  163.85 ms  AS174  China Hong Kong cogentco.com
 9  61.244.225.68  163.92 ms  AS9269  China Hong Kong hkbn.com.hk
10  203.186.235.137  215.57 ms  AS9269  China Hong Kong hkbn.com.hk
11  203.80.215.70  163.37 ms  AS9269  China Hong Kong hkbn.com.hk
12  210.6.23.239  163.65 ms  AS9269  China Hong Kong hkbn.com.hk


Traceroute to China, Hongkong PCCW (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.85.125.60 (202.85.125.60), 30 hops max, 60 byte packets
 1  194.31.142.1  0.29 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.61  0.78 ms  AS3257  United States California Los Angeles gtt.net
 3  89.149.140.73  0.35 ms  AS3257  GTT.NET BACKBONE gtt.net
 4  63.218.42.81  1.93 ms  AS3491  United States California Los Angeles pccw.com
 5  *
 6  63.218.61.174  159.56 ms  AS3491  China Hong Kong pccw.com
 7  203.215.255.197  159.25 ms  AS9925  China Hong Kong pbase.net
 8  202.153.99.211  166.06 ms  AS9925  China Hong Kong pbase.net
 9  202.153.99.204  175.64 ms  AS9925  China Hong Kong pbase.net
10  202.85.125.60  158.94 ms  AS9925  China Hong Kong pccw.com


Traceroute to China, Hongkong TGT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.123.76.58 (202.123.76.58), 30 hops max, 60 byte packets
 1  194.31.142.1  0.45 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.61  1.10 ms  AS3257  United States California Los Angeles gtt.net
 3  89.149.186.66  149.62 ms  AS3257  China Hong Kong gtt.net
 4  69.174.125.70  151.21 ms  AS3257  China Hong Kong gtt.net
 5  203.78.72.52  150.99 ms  AS10098  China Hong Kong towngastelecom.com
 6  203.78.73.75  150.34 ms  AS10098  China Hong Kong towngastelecom.com
 7  203.78.72.181  155.10 ms  AS10098  China Hong Kong towngastelecom.com
 8  202.123.74.34  152.04 ms  AS10098  China Hong Kong towngastelecom.com
 9  202.123.74.74  150.46 ms  AS10098  China Hong Kong towngastelecom.com
10  202.123.74.82  148.42 ms  AS10098  China Hong Kong towngastelecom.com
11  202.123.76.58  151.04 ms  AS10098  China Hong Kong towngastelecom.com


Traceroute to China, Hongkong WTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 59.152.252.242 (59.152.252.242), 30 hops max, 60 byte packets
 1  194.31.142.1  0.76 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  206.72.210.122  0.38 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 3  72.52.92.121  0.75 ms  AS6939  United States California Los Angeles he.net
 4  184.104.193.49  7.64 ms  AS6939  United States California San Jose he.net
 5  64.71.148.166  11.32 ms  AS6939  United States California Fremont he.net
 6  10.55.192.150  161.90 ms  *  LAN Address
 7  1.9.241.94  167.66 ms  AS4788  TM.COM.MY BACKBONE tm.com.my
 8  115.160.187.110  164.34 ms  AS9381  China Hong Kong hkbn.com.hk
 9  10.104.131.158  163.92 ms  *  LAN Address
10  59.152.252.196  164.02 ms  AS9381  China Hong Kong hkbn.com.hk
11  59.152.252.242  163.69 ms  AS9381  China Hong Kong hkbn.com.hk


Traceroute to Singapore, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.233.1 (203.215.233.1), 30 hops max, 60 byte packets
 1  194.31.142.1  0.62 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.74 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.62 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.42.102  0.69 ms  AS174  United States California Los Angeles cogentco.com
 5  38.142.238.34  5.39 ms  AS174  United States California Los Angeles cogentco.com
 6  202.97.50.21  10.04 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  202.97.49.141  149.24 ms  AS4134  China Shanghai ChinaTelecom
 8  203.215.233.1  273.47 ms  AS4134  Singapore ChinaTelecom


Traceroute to Singapore, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 183.91.61.1 (183.91.61.1), 30 hops max, 60 byte packets
 1  194.31.142.1  0.34 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.86 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.96 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.3.70  1.04 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.10.10  1.05 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 6  62.115.136.47  2.38 ms  AS1299  United States California Los Angeles telia.com
 7  213.248.79.253  1.16 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  59.43.189.41  178.41 ms  *  China Guangdong Guangzhou ChinaTelecom
 9  59.43.189.202  178.33 ms  *  Singapore ChinaTelecom
10  183.91.61.1  179.19 ms  AS4809  Singapore ChinaTelecom


Traceroute to Singapore, Singtel (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.201.1.11 (118.201.1.11), 30 hops max, 60 byte packets
 1  194.31.142.1  0.42 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.57  0.38 ms  AS3257  United States California Los Angeles gtt.net
 3  46.33.80.34  0.43 ms  AS3257  United States California Los Angeles gtt.net
 4  203.208.173.21  169.74 ms  AS7473  Singapore singtel.com
 5  203.208.158.42  165.17 ms  AS7473  Singapore singtel.com
 6  203.208.191.2  173.82 ms  AS7473  Singapore singtel.com
 7  203.208.158.185  178.68 ms  AS7473  Singapore singtel.com
 8  203.208.158.42  175.06 ms  AS7473  Singapore singtel.com
 9  203.125.232.130  174.31 ms  AS3758  Singapore singtel.com
10  165.21.49.126  179.40 ms  AS3758  Singapore singtel.com
11  165.21.49.126  175.35 ms  AS3758  Singapore singtel.com
12  203.125.232.130  171.18 ms  AS3758  Singapore singtel.com
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Singapore, StarHub (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.116.46.162 (203.116.46.162), 30 hops max, 60 byte packets
 1  194.31.142.1  0.90 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.69 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.95 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.3.70  0.73 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.10.10  0.89 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 6  62.115.134.42  165.14 ms  AS1299  TELIA.COM BACKBONE telia.com
 7  80.239.132.22  165.93 ms  AS1299  Singapore telia.com
 8  203.118.15.10  172.53 ms  AS4657,AS38861  Singapore starhub.com
 9  203.117.35.74  172.01 ms  AS38861  Singapore starhub.com
10  203.118.6.29  172.02 ms  AS4657,AS38861  Singapore starhub.com
11  203.118.16.30  172.50 ms  AS4657,AS38861  Singapore starhub.com
12  203.117.188.42  171.74 ms  AS4657,AS38861  Singapore starhub.com
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Singapore, M1 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.123.8.123 (203.123.8.123), 30 hops max, 60 byte packets
 1  194.31.142.1  0.52 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.99 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  0.88 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.25.150  1.14 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.45.194  158.74 ms  AS174  Singapore cogentco.com
 6  154.18.18.162  158.70 ms  AS174  Singapore cogentco.com
 7  203.211.159.120  159.80 ms  AS17547  Singapore m1.com.sg
 8  203.211.159.42  509.80 ms  AS17547  Singapore m1.com.sg
 9  203.123.8.123  160.28 ms  AS17547  Singapore m1.com.sg


Traceroute to Singapore, AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.228.0.251 (13.228.0.251), 50 hops max, 60 byte packets
 1  194.31.142.1  5.44 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.99 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.81 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.3.70  0.97 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.11.194  0.75 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 6  64.86.252.65  187.71 ms  AS6453  United States California Los Angeles tatacommunications.com
 7  64.86.252.217  105.59 ms  AS6453  Japan Tokyo tatacommunications.com
 8  *
 9  180.87.181.106  196.59 ms  AS6453  Japan Tokyo tatacommunications.com
10  180.87.15.206  201.23 ms  AS6453  Singapore tatacommunications.com
11  *
12  *
13  52.93.10.61  202.49 ms  *  Singapore amazon.com
14  52.93.10.231  181.63 ms  *  Singapore amazon.com
15  52.93.11.78  186.30 ms  *  Singapore amazon.com
16  52.93.9.27  187.29 ms  *  Singapore amazon.com
17  52.93.10.89  183.99 ms  *  Singapore amazon.com
18  *
19  *
20  *
21  *
22  *
23  13.228.0.251  188.29 ms  AS16509  Singapore amazon.com


Traceroute to Japan, NTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 61.213.155.84 (61.213.155.84), 30 hops max, 60 byte packets
 1  194.31.142.1  1.86 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.96 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  1.00 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.25.150  0.83 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.9.30  1.28 ms  AS174  United States California Los Angeles cogentco.com
 6  129.250.3.237  3.40 ms  AS2914  United States California Los Angeles ntt.com
 7  129.250.3.192  116.93 ms  AS2914  Japan Tokyo ntt.com
 8  129.250.3.28  119.16 ms  AS2914  Japan Tokyo ntt.com
 9  61.213.179.34  124.95 ms  AS2914  Japan Tokyo ntt.com
10  *
11  *
12  61.213.155.84  137.83 ms  AS2914  Japan Tokyo ntt.com


Traceroute to Japan, IIJ (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.232.15.70 (202.232.15.70), 30 hops max, 60 byte packets
 1  194.31.142.1  0.47 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.57  0.83 ms  AS3257  United States California Los Angeles gtt.net
 3  89.149.136.149  7.25 ms  AS3257  United States California San Jose gtt.net
 4  173.241.128.62  7.74 ms  AS3257  GTT.NET BACKBONE gtt.net
 5  58.138.88.93  107.37 ms  AS2497  Japan Tokyo iij.ad.jp
 6  58.138.102.210  108.03 ms  AS2497  Japan Tokyo iij.ad.jp
 7  210.130.142.114  108.46 ms  AS2497  Japan Tokyo iij.ad.jp
 8  202.232.15.70  106.33 ms  AS2497  Japan iij.ad.jp


Traceroute to Japan, SoftBank (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.175.32.26 (210.175.32.26), 30 hops max, 60 byte packets
 1  194.31.142.1  0.54 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.57  0.49 ms  AS3257  United States California Los Angeles gtt.net
 3  89.149.130.90  0.95 ms  AS3257  United States California Los Angeles gtt.net
 4  221.111.203.109  109.27 ms  AS17676  BBTEC.NET BACKBONE bbtec.net
 5  *
 6  143.90.232.241  124.89 ms  AS4725  Japan Tokyo odn.ne.jp
 7  143.90.47.9  99.86 ms  AS4725  Japan odn.ne.jp
 8  143.90.164.246  110.60 ms  AS4725  Japan Kanagawa odn.ne.jp
 9  143.90.54.30  111.38 ms  AS4725  Japan odn.ne.jp
10  210.175.32.123  125.86 ms  AS4725  Japan odn.ne.jp
11  210.175.32.26  106.60 ms  AS4725  Japan odn.ne.jp


Traceroute to Japan, KDDI (TCP Mode, Max 30 Hop)
============================================================
traceroute to 106.162.242.108 (106.162.242.108), 30 hops max, 60 byte packets
 1  194.31.142.1  0.27 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.68 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.66 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.3.70  0.84 ms  AS174  United States California Los Angeles cogentco.com
 5  38.88.225.10  6.54 ms  AS174  United States California Los Angeles cogentco.com
 6  203.181.106.161  1.22 ms  AS2516  United States California Los Angeles kddi.com
 7  106.187.12.21  116.75 ms  AS2516  Japan Osaka kddi.com
 8  27.90.191.222  116.52 ms  AS2516  Japan kddi.com
 9  59.128.99.90  121.52 ms  AS2516  Japan kddi.com
10  59.128.99.97  113.59 ms  AS2516  Japan kddi.com
11  106.162.242.108  113.60 ms  AS2516  Japan kddi.com


Traceroute to Japan, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.236.3 (203.215.236.3), 30 hops max, 60 byte packets
 1  194.31.142.1  0.38 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.80 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  0.80 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.42.102  1.10 ms  AS174  United States California Los Angeles cogentco.com
 5  38.142.238.34  1.40 ms  AS174  United States California Los Angeles cogentco.com
 6  202.97.50.29  8.28 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  202.97.6.89  114.01 ms  AS4134  Japan Tokyo ChinaTelecom
 8  203.215.236.3  113.37 ms  AS4134  Japan Tokyo ChinaTelecom


Traceroute to Japan, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.55.27.4 (202.55.27.4), 30 hops max, 60 byte packets
 1  194.31.142.1  0.45 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  1.02 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.70 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.3.70  0.90 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.10.10  1.10 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 6  62.115.136.47  0.77 ms  AS1299  United States California Los Angeles telia.com
 7  213.248.79.253  1.31 ms  AS1299  TELIA.COM BACKBONE telia.com
 8  59.43.182.58  8.59 ms  *  United States California Los Angeles ChinaTelecom
 9  59.43.189.77  166.51 ms  *  Japan Tokyo ChinaTelecom
10  202.55.27.4  166.19 ms  AS4809  Japan Tokyo ChinaTelecom


Traceroute to Japan, Amazon AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.112.63.251 (13.112.63.251), 50 hops max, 60 byte packets
 1  194.31.142.1  0.41 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.57  0.34 ms  AS3257  United States California Los Angeles gtt.net
 3  69.174.23.150  0.67 ms  AS3257  United States California Los Angeles gtt.net
 4  129.250.3.122  7.11 ms  AS2914  United States California Los Angeles ntt.com
 5  129.250.2.177  108.69 ms  AS2914  NTT.COM BACKBONE ntt.com
 6  129.250.7.33  114.17 ms  AS2914  Japan Osaka ntt.com
 7  61.120.146.82  119.27 ms  AS2914  Japan Osaka ntt.com
 8  *
 9  *
10  *
11  *
12  *
13  52.95.31.37  122.41 ms  AS16509  Japan Tokyo amazon.com
14  52.95.31.207  117.68 ms  AS16509  Japan Tokyo amazon.com
15  52.95.31.43  117.65 ms  AS16509  Japan Tokyo amazon.com
16  52.95.31.96  122.03 ms  AS16509  Japan Tokyo amazon.com
17  54.239.52.185  122.03 ms  AS16509  Japan Tokyo amazon.com
18  52.95.31.98  116.32 ms  AS16509  Japan Tokyo amazon.com
19  54.239.52.187  115.63 ms  AS16509  Japan Tokyo amazon.com
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  13.112.63.251  258.84 ms  AS16509  Japan Tokyo amazon.com


Traceroute to South Korea, KT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.114.41.101 (210.114.41.101), 30 hops max, 60 byte packets
 1  194.31.142.1  2.10 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  206.72.210.122  0.45 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 3  72.52.92.121  0.62 ms  AS6939  United States California Los Angeles he.net
 4  66.220.2.170  1.16 ms  AS6939  United States California Los Angeles he.net
 5  112.174.87.61  143.29 ms  AS4766  KT.COM BACKBONE kt.com
 6  112.174.83.77  134.02 ms  AS4766  Republic of Korea Seoul kt.com
 7  *
 8  112.174.60.114  135.89 ms  AS4766  Republic of Korea Seoul kt.com
 9  112.188.245.210  132.49 ms  AS4766  Republic of Korea Seoul kt.com
10  220.90.203.2  133.01 ms  AS4766  Republic of Korea Seoul kt.com
11  211.37.137.22  132.02 ms  AS4766  Republic of Korea Seoul kt.com
12  210.114.41.101  134.68 ms  AS4766  Republic of Korea Seoul kt.com


Traceroute to South Korea, SK (TCP Mode, Max 30 Hop)
============================================================
traceroute to 175.122.253.62 (175.122.253.62), 30 hops max, 60 byte packets
 1  194.31.142.1  0.32 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.81 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  0.98 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.40.146  12.69 ms  AS174  United States California San Jose cogentco.com
 5  154.54.5.102  13.19 ms  AS174  United States California San Jose cogentco.com
 6  129.250.8.41  13.54 ms  AS2914  NTT.COM BACKBONE ntt.com
 7  129.250.3.120  12.62 ms  AS2914  United States California San Jose ntt.com
 8  129.250.4.151  10.77 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.6.49  11.08 ms  AS2914  United States California Los Angeles ntt.com
10  129.250.2.214  12.20 ms  AS2914  United States California Los Angeles ntt.com
11  129.250.193.182  12.86 ms  AS2914  NTT.COM BACKBONE ntt.com
12  58.229.14.157  139.15 ms  AS9318  Republic of Korea Seoul skbroadband.com
13  175.124.53.98  139.30 ms  AS9318  Republic of Korea Seoul skbroadband.com
14  10.222.21.87  149.34 ms  *  LAN Address
15  175.122.253.62  147.46 ms  AS9318  Republic of Korea skbroadband.com


Traceroute to South Korea, LG (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.174.62.44 (211.174.62.44), 30 hops max, 60 byte packets
 1  194.31.142.1  0.53 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.61  8.55 ms  AS3257  United States California Los Angeles gtt.net
 3  69.174.23.150  0.65 ms  AS3257  United States California Los Angeles gtt.net
 4  129.250.4.106  0.83 ms  AS2914  United States California Los Angeles ntt.com
 5  129.250.6.47  0.89 ms  AS2914  United States California Los Angeles ntt.com
 6  129.250.2.212  1.06 ms  AS2914  United States California Los Angeles ntt.com
 7  168.143.229.202  0.77 ms  AS2914  United States ntt.com
 8  1.213.145.25  0.71 ms  AS3786  United States California Los Angeles uplus.co.kr
 9  1.208.148.137  130.93 ms  AS3786  Republic of Korea Seoul uplus.co.kr
10  *
11  *
12  *
13  1.208.104.102  135.07 ms  AS3786  Republic of Korea Seoul uplus.co.kr
14  61.111.0.254  127.38 ms  AS3786  Republic of Korea Seoul uplus.co.kr
15  114.108.170.54  143.32 ms  AS3786  Republic of Korea Seoul uplus.co.kr
16  211.174.62.44  129.23 ms  AS3786  Republic of Korea Seoul uplus.co.kr


Traceroute to South Korea, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.185.246.12 (218.185.246.12), 30 hops max, 60 byte packets
 1  194.31.142.1  0.37 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.57  1.98 ms  AS3257  United States California Los Angeles gtt.net
 3  69.174.23.150  0.69 ms  AS3257  United States California Los Angeles gtt.net
 4  129.250.4.106  2.86 ms  AS2914  United States California Los Angeles ntt.com
 5  129.250.3.192  111.65 ms  AS2914  Japan Tokyo ntt.com
 6  129.250.6.133  116.94 ms  AS2914  Japan Tokyo ntt.com
 7  129.250.2.246  120.46 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  120.88.54.134  175.66 ms  AS2914  Japan Tokyo ntt.com
 9  59.43.187.249  163.79 ms  *  Japan Tokyo ChinaTelecom
10  59.43.184.25  205.59 ms  *  Republic of Korea Seoul ChinaTelecom
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to South Korea, Amazon AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.124.63.251 (13.124.63.251), 50 hops max, 60 byte packets
 1  194.31.142.1  1.11 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.86 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.88 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.3.70  1.39 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.11.194  0.90 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 6  64.86.252.65  114.40 ms  AS6453  United States California Los Angeles tatacommunications.com
 7  64.86.252.217  104.81 ms  AS6453  Japan Tokyo tatacommunications.com
 8  180.87.181.72  98.58 ms  AS6453  Japan Tokyo tatacommunications.com
 9  180.87.181.26  99.13 ms  AS6453  Japan Tokyo tatacommunications.com
10  *
11  *
12  54.239.52.109  108.14 ms  AS16509  Japan Tokyo amazon.com
13  *
14  *
15  54.239.45.184  139.01 ms  *  Republic of Korea Seoul amazon.com
16  54.239.123.112  139.89 ms  AS16509  Republic of Korea Seoul amazon.com
17  54.239.45.186  146.64 ms  *  Republic of Korea Seoul amazon.com
18  54.239.123.4  149.18 ms  AS16509  Republic of Korea Seoul amazon.com
19  52.93.248.204  145.80 ms  *  Republic of Korea Seoul amazon.com
20  54.239.122.22  148.56 ms  AS16509  Republic of Korea Seoul amazon.com
21  54.239.123.141  149.19 ms  AS16509  Republic of Korea Seoul amazon.com
22  *
23  *
24  *
25  *
26  13.124.63.251  139.08 ms  AS16509  Republic of Korea Seoul amazon.com


Traceroute to China, Taiwan Chief (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.133.242.116 (202.133.242.116), 30 hops max, 60 byte packets
 1  194.31.142.1  0.41 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  206.72.210.122  0.47 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 3  72.52.72.118  0.73 ms  AS6939  United States California Los Angeles he.net
 4  85.95.27.138  131.63 ms  AS15412  Japan Tokyo globalcloudxchange.com
 5  62.216.136.17  96.43 ms  AS15412  Japan Tokyo globalcloudxchange.com
 6  62.216.136.141  131.50 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
 7  80.77.2.202  124.42 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
 8  *
 9  113.21.95.72  134.11 ms  AS17408  China Taiwan Taipei City chief.com.tw
10  *
11  202.133.242.114  141.65 ms  AS17408  China Taiwan Taipei City chief.com.tw
12  202.133.242.116  125.41 ms  AS17408  China Taiwan Taipei City chief.com.tw


Traceroute to China, Taiwan APTG (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.200.69.90 (210.200.69.90), 30 hops max, 60 byte packets
 1  194.31.142.1  0.40 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  206.72.210.108  4.13 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 3  203.78.181.201  138.20 ms  AS9505  China Taiwan Taipei City twgate.net
 4  175.41.58.146  142.44 ms  AS9505  China Taiwan Taipei City twgate.net
 5  203.78.187.78  145.25 ms  AS9505  China Taiwan Taipei City twgate.net
 6  203.79.253.161  132.98 ms  AS17709  China Taiwan Taipei City aptg.com.tw
 7  211.76.100.53  137.18 ms  AS17709  China Taiwan Taipei City aptg.com.tw
 8  210.200.80.254  137.25 ms  AS131142  China Taiwan Taipei City aptg.com.tw
 9  *
10  210.200.69.90  133.69 ms  AS131142  China Taiwan Taipei City aptg.com.tw


Traceroute to China, Taiwan CHT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.75.129.162 (203.75.129.162), 30 hops max, 60 byte packets
 1  194.31.142.1  0.28 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.83 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.76 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.27.118  0.75 ms  AS174  United States California Los Angeles cogentco.com
 5  38.19.140.138  0.58 ms  AS174  United States California Los Angeles cogentco.com
 6  *
 7  202.39.91.70  133.66 ms  AS9680  China Taiwan Taipei City cht.com.tw
 8  220.128.13.94  137.24 ms  AS3462  China Taiwan Taipei City cht.com.tw
 9  220.128.2.5  137.55 ms  AS3462  China Taiwan Taipei City cht.com.tw
10  220.128.2.5  136.86 ms  AS3462  China Taiwan Taipei City cht.com.tw
11  1.1.1.2  137.56 ms  AS13335  CLOUDFLARE.COM apnic.net
12  *
13  *
14  203.75.129.162  141.07 ms  AS3462  China Taiwan Taipei City cht.com.tw


Traceroute to China, Taiwan TFN (TCP Mode, Max 30 Hop)
============================================================
traceroute to 219.87.66.3 (219.87.66.3), 30 hops max, 60 byte packets
 1  194.31.142.1  0.56 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  206.72.210.108  0.68 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 3  203.78.181.145  150.78 ms  AS9505  China Taiwan Taipei City twgate.net
 4  175.41.61.174  135.65 ms  AS9505  China Taiwan Taipei City twgate.net
 5  175.41.60.174  157.21 ms  AS9505  China Taiwan Taipei City twgate.net
 6  60.199.16.202  141.47 ms  AS9924  China Taiwan Taipei City twmbroadband.com
 7  60.199.16.62  150.29 ms  AS9924  China Taiwan Taipei City twmbroadband.com
 8  219.87.66.3  144.60 ms  AS9924  China Taiwan Taipei City twmbroadband.com


Traceroute to China,Taiwan FET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.73.144.38 (211.73.144.38), 30 hops max, 60 byte packets
 1  194.31.142.1  2.40 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  206.72.210.122  0.59 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 3  72.52.72.118  0.66 ms  AS6939  United States California Los Angeles he.net
 4  85.95.25.18  96.54 ms  AS15412  Japan Tokyo globalcloudxchange.com
 5  62.216.128.94  124.29 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
 6  80.81.69.42  124.15 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
 7  192.72.155.21  124.68 ms  AS4780  China Taiwan Taipei City fetnet.net
 8  192.72.155.98  125.90 ms  AS4780  China Taiwan Taipei City fetnet.net
 9  *
10  *
11  *
12  211.73.144.38  126.22 ms  AS9674  China Taiwan fetnet.net


Traceroute to China, Taiwan KBT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 61.63.0.102 (61.63.0.102), 30 hops max, 60 byte packets
 1  194.31.142.1  8.58 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  206.72.210.108  0.85 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 3  203.78.181.201  138.19 ms  AS9505  China Taiwan Taipei City twgate.net
 4  175.41.61.182  129.87 ms  AS9505  China Taiwan Taipei City twgate.net
 5  *
 6  203.187.9.241  182.23 ms  AS9416  China Taiwan Taipei City kbtelecom.net
 7  203.187.9.238  134.08 ms  AS9416  China Taiwan Taipei City kbtelecom.net
 8  58.86.1.174  142.78 ms  AS18042  China Taiwan Taipei City kbtelecom.net
 9  58.86.0.94  130.35 ms  AS18042  China Taiwan Taipei City kbtelecom.net
10  58.86.0.26  142.86 ms  AS18042  China Taiwan Taipei City kbtelecom.net
11  61.63.0.102  131.37 ms  AS18042  China Taiwan Taipei City kbtelecom.net


Traceroute to China, Taiwan TAIFO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 103.31.196.203 (103.31.196.203), 30 hops max, 60 byte packets
 1  194.31.142.1  0.55 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  206.72.210.122  0.45 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 3  72.52.72.118  2.30 ms  AS6939  United States California Los Angeles he.net
 4  85.95.25.18  132.46 ms  AS15412  Japan Tokyo globalcloudxchange.com
 5  62.216.136.17  96.82 ms  AS15412  Japan Tokyo globalcloudxchange.com
 6  85.95.27.102  135.26 ms  AS15412  GLOBALCLOUDXCHANGE.COM BACKBONE globalcloudxchange.com
 7  80.77.2.198  139.72 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
 8  *
 9  113.21.95.123  124.75 ms  AS17408  China Taiwan Taipei City chief.com.tw
10  *
11  103.31.197.122  124.99 ms  AS131584  China Taiwan Taipei City taifo.com.tw
12  *
13  103.31.197.70  124.86 ms  AS131584  China Taiwan Taipei City taifo.com.tw
14  103.31.196.203  124.77 ms  AS131584  China Taiwan Taipei City taifo.com.tw


Traceroute to United States, Los Angeles China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  194.31.142.1  0.58 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.85 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  1.15 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.42.102  1.16 ms  AS174  United States California Los Angeles cogentco.com
 5  38.142.238.34  3.78 ms  AS174  United States California Los Angeles cogentco.com
 6  202.97.90.113  15.03 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  218.30.33.17  70.34 ms  AS4134  United States ctamericas.com


Traceroute to United States, Los Angeles China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.102.252.100 (66.102.252.100), 30 hops max, 60 byte packets
 1  194.31.142.1  0.84 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  206.72.211.165  1.18 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 3  66.102.252.100  0.66 ms  AS4809  United States ctamericas.com


Traceroute to United States, Los Angeles PCCW (TCP Mode, Max 30 Hop)
============================================================
traceroute to 63.218.42.81 (63.218.42.81), 30 hops max, 60 byte packets
 1  194.31.142.1  0.38 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.77 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.91 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.42.102  1.14 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.11.114  1.74 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 6  63.218.42.81  1.19 ms  AS3491  United States California Los Angeles pccw.com


Traceroute to United States, Los Angeles HE (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.220.18.42 (66.220.18.42), 30 hops max, 60 byte packets
 1  194.31.142.1  0.47 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  206.72.210.122  0.48 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 3  72.52.92.121  0.46 ms  AS6939  United States California Los Angeles he.net
 4  66.220.18.42  0.49 ms  AS6939  United States California Los Angeles he.net


Traceroute to United States, Los Angeles GTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 173.205.77.98 (173.205.77.98), 30 hops max, 60 byte packets
 1  194.31.142.1  0.63 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.57  0.65 ms  AS3257  United States California Los Angeles gtt.net
 3  89.149.181.170  4.92 ms  AS3257  United States California Los Angeles gtt.net
 4  173.205.77.98  0.92 ms  AS3257  United States California Los Angeles gtt.net


Traceroute to United States, San Fransico ATT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 12.169.215.33 (12.169.215.33), 30 hops max, 60 byte packets
 1  194.31.142.1  0.81 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.97 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  0.89 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.3.70  1.03 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.13.150  3.53 ms  AS174  United States California Los Angeles cogentco.com
 6  12.122.129.98  25.70 ms  AS7018  United States California Los Angeles att.com
 7  12.122.28.122  20.30 ms  AS7018  United States California San Francisco att.com
 8  12.122.149.85  18.99 ms  AS7018  United States California att.com
 9  12.244.156.30  15.62 ms  AS7018  United States California att.com
10  12.169.215.33  15.90 ms  AS7018  United States California att.com


Traceroute to United States, New York TATA (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.198.181.100 (66.198.181.100), 30 hops max, 60 byte packets
 1  194.31.142.1  3.89 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  1.03 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.69 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.27.118  1.13 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.11.194  0.91 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 6  64.86.252.65  70.58 ms  AS6453  United States California Los Angeles tatacommunications.com
 7  216.6.87.110  72.99 ms  AS6453  United States Virginia Ashburn tatacommunications.com
 8  216.6.87.43  70.51 ms  AS6453  United States New Jersey Newark tatacommunications.com
 9  64.86.62.25  75.82 ms  AS6453  United States New York New York City tatacommunications.com
10  209.58.75.217  71.83 ms  AS6453  United States New York New York City tatacommunications.com
11  209.58.75.198  70.24 ms  AS6453  United States New York New York City tatacommunications.com
12  66.198.181.100  70.42 ms  AS6453  United States New York New York City tatacommunications.com


Traceroute to United States, San Jose China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  194.31.142.1  0.53 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.87 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  1.10 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.42.102  2.43 ms  AS174  United States California Los Angeles cogentco.com
 5  38.142.238.34  1.50 ms  AS174  United States California Los Angeles cogentco.com
 6  202.97.90.113  13.48 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  218.30.33.17  70.43 ms  AS4134  United States ctamericas.com


Traceroute to United States, San Jose NTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 23.11.26.62 (23.11.26.62), 30 hops max, 60 byte packets
 1  194.31.142.1  0.84 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.85 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  1.09 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.25.150  1.11 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.9.30  4.64 ms  AS174  United States California Los Angeles cogentco.com
 6  129.250.3.237  2.89 ms  AS2914  United States California Los Angeles ntt.com
 7  129.250.4.150  7.99 ms  AS2914  United States California San Jose ntt.com
 8  129.250.3.27  8.71 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.2.48  8.13 ms  AS2914  NTT.COM BACKBONE ntt.com
10  23.11.26.62  8.53 ms  AS2914  United States California San Jose akamai.com


Traceroute to United States, Fremont HE (TCP Mode, Max 30 Hop)
============================================================
traceroute to 72.52.104.74 (72.52.104.74), 30 hops max, 60 byte packets
 1  194.31.142.1  0.42 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  206.72.210.122  1.48 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 3  184.105.81.101  10.28 ms  AS6939  United States California Palo Alto he.net
 4  184.105.222.89  9.43 ms  AS6939  United States California Fremont he.net
 5  72.52.104.74  9.46 ms  AS6939  United States California Fremont he.net


Traceroute to United States, Las Vegas Level3 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 205.216.62.38 (205.216.62.38), 30 hops max, 60 byte packets
 1  194.31.142.1  0.39 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.86 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.68 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.27.118  0.90 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.12.66  1.64 ms  AS174  United States California Los Angeles cogentco.com
 6  208.168.142.98  38.17 ms  AS3561  United States Texas centurylink.com
 7  216.34.172.42  39.41 ms  AS3561  United States Texas Dallas centurylink.com
 8  216.34.164.82  39.41 ms  AS3561  United States Texas Dallas centurylink.com
 9  205.216.7.204  53.38 ms  AS3561  United States Texas Dallas centurylink.com
10  *
11  205.216.62.38  53.78 ms  AS3561  United States Texas Dallas centurylink.com


Traceroute to United States, Miami ZAYO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 64.125.191.144 (64.125.191.144), 30 hops max, 60 byte packets
 1  194.31.142.1  0.26 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  1.04 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  0.76 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.3.70  0.83 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.11.14  0.50 ms  AS174  United States California Los Angeles cogentco.com
 6  64.125.28.230  57.09 ms  AS6461  ZAYO.COM BACKBONE zayo.com
 7  64.125.29.52  60.12 ms  AS6461  United States Texas Dallas zayo.com
 8  64.125.26.35  71.39 ms  AS6461
 9  64.125.28.10  57.10 ms  AS6461  ZAYO.COM BACKBONE zayo.com
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to United States, Ashburn Cogentco (TCP Mode, Max 30 Hop)
============================================================
traceroute to 149.127.109.166 (149.127.109.166), 30 hops max, 60 byte packets
 1  194.31.142.1  0.35 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  1.99 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  0.73 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.45.161  12.97 ms  AS174  United States Arizona Phoenix cogentco.com
 5  154.54.42.78  20.98 ms  AS174  United States Texas El Paso cogentco.com
 6  154.54.29.221  36.41 ms  AS174  United States Texas Houston cogentco.com
 7  154.54.28.129  50.66 ms  AS174  United States Georgia Atlanta cogentco.com
 8  154.54.24.221  61.52 ms  AS174  United States Virginia Arlington cogentco.com
 9  154.54.46.190  62.60 ms  AS174  United States Virginia Herndon cogentco.com
10  38.140.164.58  63.59 ms  AS174  United States Virginia Herndon cogentco.com
11  149.127.109.2  62.24 ms  AS174  United States Virginia Ashburn cogentco.com
12  149.127.109.166  62.51 ms  AS174  United States Virginia Ashburn cogentco.com


Traceroute to German, Telekom (TCP Mode, Max 30 Hop)
============================================================
traceroute to 80.146.191.1 (80.146.191.1), 30 hops max, 60 byte packets
 1  194.31.142.1  1.66 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.94 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.56 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.44.85  12.53 ms  AS174  United States Arizona Phoenix cogentco.com
 5  154.54.42.78  20.68 ms  AS174  United States Texas El Paso cogentco.com
 6  154.54.29.221  36.75 ms  AS174  United States Texas Houston cogentco.com
 7  154.54.28.69  50.97 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 8  154.54.24.221  61.80 ms  AS174  United States Virginia Arlington cogentco.com
 9  154.54.30.54  62.55 ms  AS174  United States Virginia Sterling cogentco.com
10  80.156.162.241  64.30 ms  AS3320  TELEKOM.DE BACKBONE telekom.de
11  91.23.215.105  148.03 ms  AS3320  Germany North Rhine-Westphalia telekom.de
12  80.146.191.1  160.44 ms  AS3320  Germany North Rhine-Westphalia telekom.de


Traceroute to German, Frankfurt O2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 82.113.108.25 (82.113.108.25), 30 hops max, 60 byte packets
 1  194.31.142.1  1.13 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.83 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  0.73 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.45.161  12.65 ms  AS174  United States Arizona Phoenix cogentco.com
 5  154.54.42.66  20.97 ms  AS174  United States Texas El Paso cogentco.com
 6  154.54.29.221  36.37 ms  AS174  United States Texas Houston cogentco.com
 7  154.54.84.2  63.49 ms  AS174  United States Florida Miami cogentco.com
 8  154.54.47.18  63.44 ms  AS174  United States Florida Miami cogentco.com
 9  154.54.11.158  64.34 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
10  94.142.125.226  88.58 ms  AS12956  TELEFONICA.COM BACKBONE telefonica.com
11  176.52.248.116  155.53 ms  AS12956  United Kingdom London telefonica.com
12  213.140.35.28  160.88 ms  AS12956  France Ile-de-France Paris telefonica.com
13  213.140.51.61  176.80 ms  AS12956  Germany telefonica.com
14  62.53.1.35  173.07 ms  AS6805  Germany telefonica.de
15  62.53.0.10  179.80 ms  AS6805  Germany telefonica.de
16  62.53.0.20  175.88 ms  AS6805  Germany telefonica.de
17  62.53.0.127  167.60 ms  AS6805  Germany telefonica.de
18  62.53.14.103  173.86 ms  AS6805  Germany Hesse Frankfurt telefonica.de
19  62.53.2.63  167.02 ms  AS6805  Germany telefonica.de
20  82.113.108.25  174.40 ms  AS39706  Germany Hesse Frankfurt o2online.de


Traceroute to German, Frankfurt Vodafone (TCP Mode, Max 50 Hop)
============================================================
traceroute to 139.7.146.11 (139.7.146.11), 50 hops max, 60 byte packets
 1  194.31.142.1  0.99 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.77 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  1.09 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.31.190  12.88 ms  AS174  United States California San Jose cogentco.com
 5  154.54.5.102  13.33 ms  AS174  United States California San Jose cogentco.com
 6  154.54.11.206  10.21 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 7  195.2.24.98  149.02 ms  AS1273  United States Illinois Chicago vodafone.com
 8  195.2.28.33  146.99 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
 9  195.2.28.170  148.57 ms  AS1273  United Kingdom Berkshire County Slough vodafone.com
10  195.2.24.34  140.83 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
11  195.2.31.14  147.38 ms  AS1273  Netherlands North Holland Amsterdam vodafone.com
12  195.2.2.242  147.12 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
13  *
14  145.253.5.57  149.87 ms  AS3209  Germany vodafone.de
15  92.79.230.2  150.79 ms  AS3209  Germany vodafone.de
16  139.7.148.84  149.73 ms  AS3209  Germany vodafone.de
17  *
18  *
19  *
20  *
21  139.7.146.11  167.71 ms  AS3209  Germany vodafone.de


Traceroute to German, Frankfurt China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.85.205.101 (118.85.205.101), 30 hops max, 60 byte packets
 1  194.31.142.1  0.33 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.89 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  1.25 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.25.150  0.97 ms  AS174  United States California Los Angeles cogentco.com
 5  38.142.238.34  1.35 ms  AS174  United States California Los Angeles cogentco.com
 6  202.97.92.46  8.24 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  202.97.90.138  62.50 ms  AS4134  United States ChinaTelecom
 8  118.85.205.101  148.96 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom


Traceroute to German, Frankfurt China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 5.10.138.33 (5.10.138.33), 30 hops max, 60 byte packets
 1  194.31.142.1  0.35 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.88 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.65 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.3.70  0.71 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.10.10  1.05 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 6  62.115.137.38  59.87 ms  AS1299  TELIA.COM BACKBONE telia.com
 7  62.115.136.200  64.40 ms  AS1299  United States New York New York City telia.com
 8  62.115.112.245  135.51 ms  AS1299  United Kingdom London telia.com
 9  62.115.134.135  134.40 ms  AS1299  United Kingdom London telia.com
10  80.239.193.226  133.53 ms  AS1299  TELIA.COM BACKBONE telia.com
11  59.43.180.113  148.27 ms  *  Europe Regions ChinaTelecom
12  5.10.138.33  146.15 ms  AS4809  Germany cteurope.net


Traceroute to German, Frankfurt GTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 213.200.65.70 (213.200.65.70), 30 hops max, 60 byte packets
 1  194.31.142.1  0.81 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.57  0.46 ms  AS3257  United States California Los Angeles gtt.net
 3  213.200.115.161  141.45 ms  AS3257  Germany Hesse Frankfurt gtt.net
 4  213.200.65.70  141.60 ms  AS3257  GTT.NET BACKBONE gtt.net


Traceroute to German, FrankfurtCogentco (TCP Mode, Max 30 Hop)
============================================================
traceroute to 212.20.150.5 (212.20.150.5), 30 hops max, 60 byte packets
 1  194.31.142.1  0.37 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.78 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  1.05 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.45.161  12.74 ms  AS174  United States Arizona Phoenix cogentco.com
 5  154.54.42.78  20.88 ms  AS174  United States Texas El Paso cogentco.com
 6  154.54.30.161  36.61 ms  AS174  United States Texas Houston cogentco.com
 7  154.54.28.129  50.63 ms  AS174  United States Georgia Atlanta cogentco.com
 8  154.54.24.221  61.44 ms  AS174  United States Virginia Arlington cogentco.com
 9  154.54.40.105  67.19 ms  AS174  United States New York New York City cogentco.com
10  154.54.42.86  138.07 ms  AS174  United Kingdom London cogentco.com
11  154.54.56.94  143.82 ms  AS174  Netherlands North Holland Amsterdam cogentco.com
12  130.117.0.122  149.67 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
13  154.54.56.34  150.54 ms  AS174  Germany Hesse Frankfurt cogentco.com
14  212.20.150.5  151.82 ms  AS174  Germany cogentco.com


Traceroute to United Kingdom, Vodafone (TCP Mode, Max 30 Hop)
============================================================
traceroute to 194.62.232.211 (194.62.232.211), 30 hops max, 60 byte packets
 1  194.31.142.1  0.30 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.79 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  1.04 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.31.190  12.94 ms  AS174  United States California San Jose cogentco.com
 5  154.54.5.102  13.22 ms  AS174  United States California San Jose cogentco.com
 6  154.54.11.206  12.23 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 7  195.2.24.98  142.20 ms  AS1273  United States Illinois Chicago vodafone.com
 8  195.2.2.154  143.73 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
 9  195.2.28.170  139.57 ms  AS1273  United Kingdom Berkshire County Slough vodafone.com
10  *
11  *
12  *
13  194.62.232.211  145.58 ms  AS25135  United Kingdom vodafone.com


Traceroute to United Kingdom， BT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 213.121.43.24 (213.121.43.24), 30 hops max, 60 byte packets
 1  194.31.142.1  0.32 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.99 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.0.165  0.59 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.45.161  12.42 ms  AS174  United States Arizona Phoenix cogentco.com
 5  154.54.42.66  20.68 ms  AS174  United States Texas El Paso cogentco.com
 6  154.54.29.221  37.45 ms  AS174  United States Texas Houston cogentco.com
 7  154.54.28.69  50.55 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 8  154.54.24.221  61.64 ms  AS174  United States Virginia Arlington cogentco.com
 9  154.54.30.66  62.27 ms  AS174  United States Virginia Sterling cogentco.com
10  154.54.10.6  62.26 ms  AS174  United States Virginia Ashburn cogentco.com
11  166.49.195.77  148.35 ms  AS5400  BT.COM BACKBONE bt.com
12  166.49.209.133  138.62 ms  AS5400  United Kingdom London bt.com
13  109.159.249.50  145.39 ms  AS2856  United Kingdom bt.com
14  194.72.7.69  144.93 ms  AS2856  United Kingdom London bt.com
15  *
16  *
17  *
18  *
19  *
20  213.121.43.24  150.19 ms  AS2856  United Kingdom bt.com


Traceroute to United Kingdom, London TATA (TCP Mode, Max 30 Hop)
============================================================
traceroute to 80.231.60.38 (80.231.60.38), 30 hops max, 60 byte packets
 1  194.31.142.1  0.35 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.90 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  0.64 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.27.118  1.11 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.11.194  0.65 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 6  206.82.129.19  138.36 ms  AS6453  United States California Los Angeles tatacommunications.com
 7  66.110.59.9  146.74 ms  AS6453  United States California Los Angeles tatacommunications.com
 8  63.243.251.2  140.24 ms  AS6453  United States California Santa Clara tatacommunications.com
 9  63.243.205.72  139.40 ms  AS6453  United States California San Jose tatacommunications.com
10  63.243.128.30  139.19 ms  AS6453  United States New York New York City tatacommunications.com
11  63.243.128.59  147.53 ms  AS6453  United States New York New York City tatacommunications.com
12  63.243.216.23  149.79 ms  AS6453  United States New York New York City tatacommunications.com
13  80.231.62.58  148.08 ms  AS6453  United Kingdom London tatacommunications.com
14  80.231.60.38  140.20 ms  AS6453  United Kingdom London tatacommunications.com


Traceroute to Russia, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.85.205.180 (118.85.205.180), 30 hops max, 60 byte packets
 1  194.31.142.1  0.42 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  1.28 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  0.97 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.25.150  1.10 ms  AS174  United States California Los Angeles cogentco.com
 5  38.142.238.34  6.43 ms  AS174  United States California Los Angeles cogentco.com
 6  202.97.50.25  11.53 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  202.97.90.237  163.26 ms  AS4134  China Beijing ChinaTelecom
 8  202.97.30.230  257.69 ms  AS4134  Russian Federation Primorsky Krai Vladivostok ChinaTelecom
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Russia, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 185.75.173.17 (185.75.173.17), 30 hops max, 60 byte packets
 1  194.31.142.1  0.29 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.9  0.73 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  1.06 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.3.70  0.99 ms  AS174  United States California Los Angeles cogentco.com
 5  154.54.10.10  1.21 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 6  62.115.137.38  59.68 ms  AS1299  TELIA.COM BACKBONE telia.com
 7  *
 8  62.115.112.245  135.44 ms  AS1299  United Kingdom London telia.com
 9  62.115.116.56  69.14 ms  AS1299  TELIA.COM BACKBONE telia.com
10  80.239.193.226  133.38 ms  AS1299  TELIA.COM BACKBONE telia.com
11  59.43.182.2  159.23 ms  *  China ChinaTelecom
12  185.75.173.17  182.09 ms  AS4809  Russian Federation Moscow cteurope.net


Traceroute to Russia, Moscow RT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 87.226.162.77 (87.226.162.77), 30 hops max, 60 byte packets
 1  194.31.142.1  0.34 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  98.124.183.57  0.33 ms  AS3257  United States California Los Angeles gtt.net
 3  213.200.115.161  141.54 ms  AS3257  Germany Hesse Frankfurt gtt.net
 4  77.67.90.99  141.52 ms  AS3257  Germany Hesse Frankfurt gtt.net
 5  213.59.211.241  205.66 ms  AS12389  Russian Federation Moscow rt.ru
 6  87.226.140.2  181.90 ms  AS12389  Russian Federation Moscow rt.ru
 7  *
 8  87.226.162.77  196.18 ms  AS12389  Russian Federation Moscow rt.ru


Traceroute to Russia, Moscow TTK (TCP Mode, Max 30 Hop)
============================================================
traceroute to 217.150.32.2 (217.150.32.2), 30 hops max, 60 byte packets
 1  194.31.142.1  0.40 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  38.32.70.17  0.87 ms  AS174  United States California Los Angeles cogentco.com
 3  154.54.2.173  1.18 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
 4  154.54.44.85  12.70 ms  AS174  United States Arizona Phoenix cogentco.com
 5  154.54.42.66  20.81 ms  AS174  United States Texas El Paso cogentco.com
 6  154.54.30.161  36.70 ms  AS174  United States Texas Houston cogentco.com
 7  154.54.28.129  50.52 ms  AS174  United States Georgia Atlanta cogentco.com
 8  154.54.7.157  61.55 ms  AS174  United States Virginia Arlington cogentco.com
 9  154.54.40.105  67.18 ms  AS174  United States New York New York City cogentco.com
10  154.54.42.86  135.67 ms  AS174  United Kingdom London cogentco.com
11  130.117.51.42  144.68 ms  AS174  Netherlands North Holland Amsterdam cogentco.com
12  130.117.0.122  150.30 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
13  154.54.56.190  149.17 ms  AS174  Germany Hesse Frankfurt cogentco.com
14  154.25.9.46  150.00 ms  AS174  Germany Hesse Frankfurt cogentco.com
15  149.14.68.166  150.26 ms  AS174  Germany Hesse Frankfurt cogentco.com
16  *
17  62.33.207.217  185.85 ms  AS20485  Russian Federation Moscow ttk.ru
18  80.237.46.177  184.82 ms  AS20485  Russian Federation Moscow ttk.ru
19  217.150.32.243  187.53 ms  AS20485  Russian Federation Moscow ttk.ru
20  10.105.0.1  188.20 ms  *  LAN Address
21  217.150.32.2  195.85 ms  AS20485  Russian Federation Moscow ttk.ru


Traceroute to Russia, Moscow MTS (TCP Mode, Max 30 Hop)
============================================================
traceroute to 195.34.32.71 (195.34.32.71), 30 hops max, 60 byte packets
 1  194.31.142.1  1.14 ms  AS7489,AS23470  United States California Los Angeles hostus.us
 2  206.72.210.180  0.39 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 3  212.188.28.129  156.02 ms  AS8359  MTS.RU BACKBONE mts.ru
 4  195.34.59.113  144.42 ms  AS8359  MTS.RU BACKBONE mts.ru
 5  212.188.42.18  177.43 ms  AS8359  Russian Federation mts.ru
 6  212.188.2.190  177.80 ms  AS8359  Russian Federation Moscow mts.ru
 7  195.34.53.5  177.87 ms  AS8359  Russian Federation Moscow mts.ru
 8  195.34.53.213  178.91 ms  AS8359  Russian Federation Moscow mts.ru
 9  195.34.32.71  178.15 ms  AS8359  Russian Federation Moscow mts.ru


 -&amp;gt; Traceroute Test (IPV6)

Traceroute to China, Beijing CU IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2408:80f0:4100:2005::3 (2408:80f0:4100:2005::3), 30 hops max, 60 byte packets
 1  2a0f:9400:8005::2  0.41 ms  AS23470  United States California Los Angeles freerangecloud.com
 2  2a0f:9400:8005::1  0.65 ms  AS23470  United States California Los Angeles freerangecloud.com
 3  2001:504:13::1a  0.50 ms  *  United States California Los Angeles coresite.com
 4  2001:470:0:72::1  0.68 ms  AS6939  United States he.net
 5  2600:80a:2::d  0.83 ms  AS701  United States verizon.com
 6  2600:80a::13  1.28 ms  AS701  United States verizon.com
 7  2600:80a:13f::96  3.31 ms  AS701  United States verizon.com
 8  2408:8000:2:53a::  199.49 ms  AS4837  China ChinaUnicom
 9  *
10  *
11  2408:8000:2:685::  250.44 ms  AS4837  China ChinaUnicom
12  2408:8000:1100:319::3  283.34 ms  AS4808  China Beijing ChinaUnicom
13  2408:8000:1100:2404::3  214.79 ms  AS4808  China Beijing ChinaUnicom
14  2408:8000:1f10:3d04::3  297.74 ms  AS4808  China Beijing ChinaUnicom
15  2408:80f0:4100:2006::1  312.59 ms  AS4808  China Beijing ChinaUnicom
16  2408:80f0:4100:2006::b  285.14 ms  AS4808  China Beijing ChinaUnicom
17  *
18  2408:80f0:4100:2005::3  213.75 ms  AS4808  China Beijing ChinaUnicom

Traceroute to China, Beijing CT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2400:da00:2::29 (2400:da00:2::29), 30 hops max, 60 byte packets
 1  2a0f:9400:8005::2  1.21 ms  AS23470  United States California Los Angeles freerangecloud.com
 2  2a0f:9400:8005::1  0.58 ms  AS23470  United States California Los Angeles freerangecloud.com
 3  2001:504:13::1a  0.70 ms  *  United States California Los Angeles coresite.com
 4  2001:470:0:38e::2  8.35 ms  AS6939  United States he.net
 5  240e:0:a::cb:5ca0  280.17 ms  AS4134  China ChinaTelecom
 6  240e:0:a::cb:3ab0  248.90 ms  AS4134  China ChinaTelecom
 7  240e:0:a::c9:cc9  227.63 ms  AS4134  China ChinaTelecom
 8  *
 9  240e::21:61:4a03  268.00 ms  AS4134  China ChinaTelecom
10  240e::61:61:6102  256.52 ms  AS4134  China ChinaTelecom
11  240e:1a:1:4e::3  255.07 ms  AS4134,AS23650  China Jiangsu ChinaTelecom
12  240e:1a:130:f200::3  237.33 ms  AS4134,AS23650  China Jiangsu ChinaTelecom
13  240e:e9:5800:1::3  280.07 ms  AS4134  China ChinaTelecom
14  2400:da00::b63d:fd5c  280.07 ms  AS38365  China Beijing baidu.com ChinaTelecom
15  2400:da00:41a::b63d:fe45  279.04 ms  AS38365  China Beijing baidu.com ChinaTelecom
16  *
17  *
18  *
19  2400:da00:2::29  279.05 ms  AS38365  China Beijing baidu.com ChinaTelecom

Traceroute to China, Beijing CM IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2409:8089:1020:50ff:1000::fd01 (2409:8089:1020:50ff:1000::fd01), 30 hops max, 60 byte packets
 1  2a0f:9400:8005::2  0.71 ms  AS23470  United States California Los Angeles freerangecloud.com
 2  2a0f:9400:8005::1  0.44 ms  AS23470  United States California Los Angeles freerangecloud.com
 3  2001:504:13::1a  0.55 ms  *  United States California Los Angeles coresite.com
 4  2001:504:13::219  160.63 ms  *  United States California Los Angeles coresite.com
 5  2402:4f00:1000:100::b1  160.32 ms  AS58453  China Hong Kong ChinaMobile
 6  2402:4f00:1000:100::3da  187.13 ms  AS58453  China Hong Kong ChinaMobile
 7  2409:8080:0:4:2f1:291::  268.76 ms  AS9808  China ChinaMobile
 8  2409:8080:0:1:2c1:2f1::  289.61 ms  AS9808  China ChinaMobile
 9  2409:8080:0:1:203:2c1::  316.43 ms  AS9808  China ChinaMobile
10  2409:8080:0:1:103:1103::  319.57 ms  AS9808  China ChinaMobile
11  2409:8080:0:2:103:1b1:0:1  320.81 ms  AS9808  China ChinaMobile
12  2409:8089:1020:50ff:1000::fd01  314.05 ms  AS9808  China Beijing ChinaMobile

Traceroute to China, Shanghai CU IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2408:8000:9000:20e6::b7 (2408:8000:9000:20e6::b7), 30 hops max, 60 byte packets
 1  2a0f:9400:8005::2  0.40 ms  AS23470  United States California Los Angeles freerangecloud.com
 2  2a0f:9400:8005::1  0.59 ms  AS23470  United States California Los Angeles freerangecloud.com
 3  *
 4  2001:470:0:72::1  0.65 ms  AS6939  United States he.net
 5  2600:80a:2::d  0.87 ms  AS701  United States verizon.com
 6  2600:80a::13  0.99 ms  AS701  United States verizon.com
 7  *
 8  *
 9  2408:8000:2:679::  225.28 ms  AS4837  China ChinaUnicom
10  *
11  2408:8000:2:686::  317.87 ms  AS4837  China ChinaUnicom
12  *
13  *
14  2408:8000:9000:20e6::b7  284.36 ms  AS17621  China Shanghai ChinaUnicom

Traceroute to China, Shanghai CT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 240e:18:10:a01::1 (240e:18:10:a01::1), 30 hops max, 60 byte packets
 1  2a0f:9400:8005::2  0.24 ms  AS23470  United States California Los Angeles freerangecloud.com
 2  2a0f:9400:8005::1  0.32 ms  AS23470  United States California Los Angeles freerangecloud.com
 3  2001:504:13::1a  0.50 ms  *  United States California Los Angeles coresite.com
 4  2001:470:0:38e::2  3.37 ms  AS6939  United States he.net
 5  240e:0:a::cb:3ae5  222.29 ms  AS4134  China ChinaTelecom
 6  240e:0:a::cb:5adc  281.71 ms  AS4134  China ChinaTelecom
 7  240e:0:a::c9:ccc  272.22 ms  AS4134  China ChinaTelecom
 8  *
 9  240e:18:1:1048::89  285.34 ms  AS4134,AS4812  China Shanghai ChinaTelecom
10  240e:18:10:1a69::89  247.80 ms  AS4134,AS4812  China Shanghai ChinaTelecom
11  240e:18:10:a01::1  253.40 ms  AS4134,AS4812  China Shanghai ChinaTelecom

Traceroute to China, Shanghai CM IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2409:801e:5c03:2000::207 (2409:801e:5c03:2000::207), 30 hops max, 60 byte packets
 1  2a0f:9400:8005::2  0.24 ms  AS23470  United States California Los Angeles freerangecloud.com
 2  2a0f:9400:8005::1  2.45 ms  AS23470  United States California Los Angeles freerangecloud.com
 3  2001:504:13::1a  0.55 ms  *  United States California Los Angeles coresite.com
 4  2001:504:13::219  160.54 ms  *  United States California Los Angeles coresite.com
 5  2402:4f00:1000:100::b1  160.25 ms  AS58453  China Hong Kong ChinaMobile
 6  2402:4f00:1000:100::3da  186.15 ms  AS58453  China Hong Kong ChinaMobile
 7  2409:8080:0:4:2f1:291::  268.24 ms  AS9808  China ChinaMobile
 8  2409:8080:0:1:2c1:2f1:1:0  275.84 ms  AS9808  China ChinaMobile
 9  2409:8080:0:1:201:2c1::  268.69 ms  AS9808  China ChinaMobile
10  2409:8080:0:2:201:271:1:1  268.23 ms  AS9808  China ChinaMobile
11  2409:801e:f0:1::b  268.38 ms  AS9808,AS24400  China Shanghai ChinaMobile
12  2409:801e:5c01:2000::31  271.93 ms  AS9808,AS24400  China Shanghai ChinaMobile
13  *
14  2409:801e:5c03:2000::207  270.21 ms  AS9808,AS24400  China Shanghai ChinaMobile

Traceroute to China, Guangzhou CU IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2408:8001:3011:310::3 (2408:8001:3011:310::3), 30 hops max, 60 byte packets
 1  2a0f:9400:8005::2  0.35 ms  AS23470  United States California Los Angeles freerangecloud.com
 2  2a0f:9400:8005::1  0.35 ms  AS23470  United States California Los Angeles freerangecloud.com
 3  2001:504:13::1a  37.19 ms  *  United States California Los Angeles coresite.com
 4  2001:470:0:72::1  0.72 ms  AS6939  United States he.net
 5  2600:80a:2::d  1.36 ms  AS701  United States verizon.com
 6  2600:80a::13  0.79 ms  AS701  United States verizon.com
 7  *
 8  2408:8000:2:722::  227.34 ms  AS4837  China ChinaUnicom
 9  2408:8000:2:677::  226.24 ms  AS4837  China ChinaUnicom
10  *
11  2408:8000:2:685::  225.09 ms  AS4837  China ChinaUnicom
12  2408:8000:2:389::1  260.38 ms  AS4837  China ChinaUnicom
13  2408:8000:2:499::1  260.59 ms  AS4837  China ChinaUnicom
14  2408:8001:3011:57::1  258.76 ms  AS17816,AS17622  China Guangdong Guangzhou ChinaUnicom
15  2408:8001:3011:310::3  259.64 ms  AS17816,AS17622  China Guangdong Guangzhou ChinaUnicom

Traceroute to China, Guangzhou CT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 240e:ff:e02c:1:21:: (240e:ff:e02c:1:21::), 30 hops max, 60 byte packets
 1  2a0f:9400:8005::2  0.22 ms  AS23470  United States California Los Angeles freerangecloud.com
 2  2a0f:9400:8005::1  0.39 ms  AS23470  United States California Los Angeles freerangecloud.com
 3  2001:504:13::1a  23.12 ms  *  United States California Los Angeles coresite.com
 4  *
 5  240e:0:a::cb:5ca5  251.14 ms  AS4134  China ChinaTelecom
 6  *
 7  240e:0:a::c9:4a21  256.72 ms  AS4134  China ChinaTelecom
 8  *
 9  *
10  *
11  240e:1f:5807:1::3  306.73 ms  AS4134,AS58466  China Guangdong Guangzhou ChinaTelecom
12  240e:ff:e02c::1  286.73 ms  AS4134,AS58466  China Guangdong Guangzhou ChinaTelecom
13  *
14  240e:ff:e02c:1:21::  245.01 ms  AS4134,AS58466  China Guangdong Guangzhou ChinaTelecom

Traceroute to China, Guangzhou CM IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2409:8057:5c00:30::6 (2409:8057:5c00:30::6), 30 hops max, 60 byte packets
 1  2a0f:9400:8005::2  0.26 ms  AS23470  United States California Los Angeles freerangecloud.com
 2  2a0f:9400:8005::1  0.50 ms  AS23470  United States California Los Angeles freerangecloud.com
 3  2001:504:13::1a  0.46 ms  *  United States California Los Angeles coresite.com
 4  2001:504:13::219  160.52 ms  *  United States California Los Angeles coresite.com
 5  2402:4f00:1000:100::b1  160.34 ms  AS58453  China Hong Kong ChinaMobile
 6  2402:4f00:1000:100::3da  186.67 ms  AS58453  China Hong Kong ChinaMobile
 7  2409:8080:0:4:2f1:291::  270.48 ms  AS9808  China ChinaMobile
 8  2409:8080:0:1:2c1:2f1::  284.78 ms  AS9808  China ChinaMobile
 9  2409:8080:0:1:201:2c1::  277.36 ms  AS9808  China ChinaMobile
10  2409:8080:0:1:202:302:0:1  297.56 ms  AS9808  China ChinaMobile
11  *
12  2409:8055:0:306::  312.93 ms  AS9808,AS56040  China Guangdong ChinaMobile
13  2409:8055:1:b402::  322.17 ms  AS9808,AS56040  China Guangdong ChinaMobile
14  2409:8055:1:b305::  322.43 ms  AS9808,AS56040  China Guangdong ChinaMobile
15  2409:8055:5c00:0:4c30::1  312.59 ms  AS9808,AS56040  China Guangdong ChinaMobile
16  2409:8055:5c00:0:4c00::5  313.98 ms  AS9808,AS56040  China Guangdong ChinaMobile
17  *
18  *
19  *
20  2409:8057:5c00:30::6  324.25 ms  AS9808,AS56040  China Guangdong ChinaMobile

Traceroute to China, Beijing Dr.Peng IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2403:8880:400f::2 (2403:8880:400f::2), 30 hops max, 60 byte packets
 1  2a0f:9400:8005::2  0.30 ms  AS23470  United States California Los Angeles freerangecloud.com
 2  2a0f:9400:8005::1  2.82 ms  AS23470  United States California Los Angeles freerangecloud.com
 3  2001:504:13::1a  0.64 ms  *  United States California Los Angeles coresite.com
 4  2001:470:0:3bf::2  154.05 ms  AS6939  United States he.net
 5  *
 6  2001:252:0:103::1  200.29 ms  AS23911  China Beijing CHINAEDU
 7  *
 8  *
 9  2001:da8:2:801::2  234.41 ms  AS23910  China CHINAEDU
10  2400:a980:ff:29::2  205.91 ms  AS133111  China CHINAEDU
11  2403:8880:400f::2  215.54 ms  AS17964  China DRPENG

Traceroute to China, Beijing CERNET2 IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:da8:a0:1001::1 (2001:da8:a0:1001::1), 30 hops max, 60 byte packets
 1  2a0f:9400:8005::2  0.44 ms  AS23470  United States California Los Angeles freerangecloud.com
 2  2a0f:9400:8005::1  0.39 ms  AS23470  United States California Los Angeles freerangecloud.com
 3  2001:504:13::1a  3.84 ms  *  United States California Los Angeles coresite.com
 4  *
 5  2001:252:0:302::1  180.52 ms  AS23911  China Beijing CHINAEDU
 6  *
 7  *
 8  2001:da8:a0:1001::1  184.18 ms  AS23910  China CHINAEDU

Traceroute to China, Beijing CSTNET IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2400:dd00:0:37::213 (2400:dd00:0:37::213), 30 hops max, 60 byte packets
 1  2a0f:9400:8005::2  0.30 ms  AS23470  United States California Los Angeles freerangecloud.com
 2  2a0f:9400:8005::1  0.50 ms  AS23470  United States California Los Angeles freerangecloud.com
 3  *
 4  *
 5  2001:252:0:302::1  188.32 ms  AS23911  China Beijing CHINAEDU
 6  *
 7  *
 8  *
 9  2400:dd00:0:37::213  198.76 ms  AS7497  China CSTNET

Traceroute to China, Hongkong HKIX IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:7fa:0:1::ca28:a1a9 (2001:7fa:0:1::ca28:a1a9), 30 hops max, 60 byte packets
 1  2a0f:9400:8005::2  0.68 ms  AS23470  United States California Los Angeles freerangecloud.com
 2  *
 3  *
 4  *
 5  *
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *

Traceroute to China, Hongkong HE IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:470:0:490::2 (2001:470:0:490::2), 30 hops max, 60 byte packets
 1  2a0f:9400:8005::2  0.17 ms  AS23470  United States California Los Angeles freerangecloud.com
 2  2a0f:9400:8005::1  0.34 ms  AS23470  United States California Los Angeles freerangecloud.com
 3  2001:504:13::1a  0.42 ms  *  United States California Los Angeles coresite.com
 4  2001:470:0:3bf::2  154.48 ms  AS6939  United States he.net
 5  2001:470:0:490::2  155.25 ms  AS6939  United States he.net

Traceroute to United States, San Jose HE IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:470:1:ff::1 (2001:470:1:ff::1), 30 hops max, 60 byte packets
 1  2a0f:9400:8005::2  0.23 ms  AS23470  United States California Los Angeles freerangecloud.com
 2  2a0f:9400:8005::1  0.36 ms  AS23470  United States California Los Angeles freerangecloud.com
 3  2001:504:13::1a  20.91 ms  *  United States California Los Angeles coresite.com
 4  2001:470:0:347::1  9.06 ms  AS6939  United States he.net
 5  2001:470:1:ff::1  9.82 ms  AS6939  United States he.net

Traceroute to France, Paris HE IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:470:0:349::1 (2001:470:0:349::1), 30 hops max, 60 byte packets
 1  2a0f:9400:8005::2  0.26 ms  AS23470  United States California Los Angeles freerangecloud.com
 2  2a0f:9400:8005::1  0.37 ms  AS23470  United States California Los Angeles freerangecloud.com
 3  *
 4  2001:470:0:72::1  0.60 ms  AS6939  United States he.net
 5  2001:470:0:324::1  55.04 ms  AS6939  United States he.net
 6  2001:470:0:299::2  60.29 ms  AS6939  United States he.net
 7  2001:470:0:349::1  130.72 ms  AS6939  United States he.net
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;其他&lt;/h2&gt;
&lt;p&gt;Windows Server 2019下娱乐大师跑分见下图&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/ludashi.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;HostDoc家的评价一直是两极分化，觉得好的一个劲的夸，觉得不好的一直黑。其实黑点也就几个：老板事儿多，突然会停机验证身份；还有就是老板态度很差。不过他家的性能还是很不错的，就像这款i9-9900K才3欧一个月，性价比极高。他家经常搞活动，可以关注lowendtalk他家发的讨论。&lt;/p&gt;
</content:encoded></item><item><title>BandwagonHOST评测：2018年双十一DC8款</title><link>https://yushum.com/posts/bandwagonhost%E8%AF%84%E6%B5%8B2018%E5%B9%B4%E5%8F%8C%E5%8D%81%E4%B8%80dc8%E6%AC%BE/</link><guid isPermaLink="true">https://yushum.com/posts/bandwagonhost%E8%AF%84%E6%B5%8B2018%E5%B9%B4%E5%8F%8C%E5%8D%81%E4%B8%80dc8%E6%AC%BE/</guid><pubDate>Sat, 14 Dec 2019 17:58:00 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;英文名BandwagonHOST，国内用户习惯根据音译叫搬瓦工。是加拿大 IT7 网络公司旗下的子公司（不过这个IT7官网似乎什么都没有），成立于 2004 年，是一家老牌的主机供应商。机房分布在美国、加拿大、欧洲、亚洲地区，分别位于洛杉矶、凤凰城、佛罗里达、佛利蒙、荷兰、纽约、温哥华、香港。由于稳定性高、速度快、价格便宜，在用户中口碑相当不错。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/banner1.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;配置信息&lt;/h2&gt;
&lt;h3&gt;系统信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;OS Release:		Debian GNU/Linux &quot;Buster&quot; 10.2 (x86_64)
 CPU Model:		QEMU Virtual CPU version (cpu64-rhel6)
 CPU Cache Size:	16384 KB
 CPU Number:		2 vCPU
 Virt Type:		KVM
 Memory Usage:		81.05 MB / 1.96 GB
 Swap Usage:		0 KB / 2.01 GB
 Disk Usage:		1.16 GB / 38.94 GB
 Boot Device:		/dev/sda1
 Load (1/5/15min):	0.06 0.01 0.00
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;网络信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;IPV4 - IP Address:	[US] 172.96.208.*
 IPV4 - ASN Info:	AS25820 (IT7 Networks Inc)
 IPV4 - Region:		California
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;流媒体解锁&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;HBO Now:				Yes
 Bahamut Anime:				No
 Abema.TV:				No
 Bilibili Hongkong/Macau/Taiwan:	No
 Bilibili TaiwanOnly:			No
 DMM Games:			Yes
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;CPU性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 Thread Test:			757 Scores
 2 Threads Test:		1499 Scores
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;内存性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1  Thread - Read Test:		14002.65 MB/s
 1  Thread - Write Test:		11025.99 MB/s
 2 Threads - Read Test:		27926.92 MB/s
 2 Threads - Write Test:	18676.09 MB/s
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;磁盘速度测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Test Name		Write Speed				Read Speed
 10MB-4K Block		14.2 MB/s (3460 IOPS, 0.74 s)		14.7 MB/s (3596 IOPS, 0.71 s)
 10MB-1M Block		322 MB/s (307 IOPS, 0.03 s)		751 MB/s (716 IOPS, 0.01 s)
 100MB-4K Block		13.9 MB/s (3404 IOPS, 7.52 s)		14.8 MB/s (3614 IOPS, 7.08 s)
 100MB-1M Block		480 MB/s (457 IOPS, 0.22 s)		1.2 GB/s (1118 IOPS, 0.09 s)
 1GB-4K Block		14.0 MB/s (3409 IOPS, 75.08 s)		15.3 MB/s (3743 IOPS, 68.38 s)
 1GB-1M Block		385 MB/s (367 IOPS, 2.72 s)		1.0 GB/s (968 IOPS, 1.03 s)
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;网速测试&lt;/h2&gt;
&lt;h3&gt;Speedtest.net网速测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Node Name			Upload Speed	Download Speed	Ping Latency
 Speedtest Default		105.66 MB/s	109.25 MB/s	0.56 ms
 China, Jilin CU		18.76 MB/s	9.93 MB/s	238.32 ms
 China, Shandong CU		4.53 MB/s	85.19 MB/s	227.56 ms
 China, Nanjing CU		8.39 MB/s	10.01 MB/s	190.62 ms
 China, Shanghai CU		9.17 MB/s	46.26 MB/s	234.74 ms
 China, Guangxi CU		28.82 MB/s	83.94 MB/s	176.67 ms
 China, Lanzhou CU		12.21 MB/s	9.74 MB/s	211.56 ms
 China, Beijing CT		9.47 MB/s	46.52 MB/s	177.68 ms
 China, Hangzhou CT		1.81 MB/s	2.93 MB/s	165.24 ms
 China, Nanjing CT		37.12 MB/s	62.35 MB/s	134.03 ms
 China, Guangzhou CT		0.96 MB/s	27.69 MB/s	160.85 ms
 China, Wuhan CT		11.31 MB/s	51.97 MB/s	200.29 ms
 China, Shenyang CM		19.01 MB/s	47.58 MB/s	207.71 ms
 China, Hangzhou CM		2.81 MB/s	89.48 MB/s	278.96 ms
 China, Shanghai CM		Fail: Unknown Error
 China, Nanning CM		7.98 MB/s	86.68 MB/s	229.28 ms
 China, Lanzhou CM		23.00 MB/s	48.88 MB/s	225.54 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;IPv4路由测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  219.158.32.189  4.30 ms  AS4837  United States California Los Angeles ChinaUnicom
 5  219.158.97.209  184.22 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 6  219.158.97.209  181.67 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 7  219.158.103.33  202.28 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 8  219.158.15.33  236.99 ms  AS4837  China Beijing ChinaUnicom
 9  202.96.12.6  210.88 ms  AS4808  China Beijing ChinaUnicom
10  202.96.12.6  224.06 ms  AS4808  China Beijing ChinaUnicom
11  124.65.194.46  244.16 ms  AS4808  China Beijing ChinaUnicom
12  61.135.113.158  223.35 ms  AS4808  China Beijing ChinaUnicom
13  61.135.113.158  214.37 ms  AS4808  China Beijing ChinaUnicom
14  *
15  *
16  123.125.99.1  212.40 ms  AS4808  China Beijing ChinaUnicom


Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  59.43.245.26  137.46 ms  *  China Hong Kong ChinaTelecom
 6  59.43.245.26  142.71 ms  *  China Hong Kong ChinaTelecom
 7  202.97.14.249  161.55 ms  AS4134  China Beijing ChinaTelecom
 8  202.97.14.249  157.12 ms  AS4134  China Beijing ChinaTelecom
 9  *
10  180.149.128.1  167.12 ms  AS23724  China Beijing ChinaTelecom


Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.88.117 (211.136.88.117), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  223.120.6.17  0.80 ms  AS58453  United States California Los Angeles ChinaMobile
 6  223.120.6.126  0.81 ms  AS58453  United States California Los Angeles ChinaMobile
 7  223.120.6.126  0.80 ms  AS58453  United States California Los Angeles ChinaMobile
 8  *
 9  *
10  *
11  221.176.16.213  214.11 ms  AS9808  China Beijing ChinaMobile
12  *
13  *
14  211.136.88.117  233.39 ms  AS56048  China Beijing ChinaMobile


Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.0.49 (58.247.0.49), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  6.84 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  *
 5  219.158.97.205  204.64 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 6  219.158.20.221  223.32 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 7  219.158.19.65  192.26 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 8  219.158.19.65  184.78 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 9  219.158.109.9  234.97 ms  AS4837  China Shanghai ChinaUnicom
10  58.247.0.49  248.61 ms  AS17621  China Shanghai ChinaUnicom


Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.1 (180.153.28.1), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  218.30.48.241  0.92 ms  AS4134  United States California Los Angeles ctamericas.com
 5  59.43.244.26  131.17 ms  *  United States California Los Angeles ChinaTelecom
 6  202.97.49.105  130.28 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  202.97.49.105  135.54 ms  AS4134  United States California Los Angeles ChinaTelecom
 8  202.97.99.153  129.80 ms  AS4134  China ChinaTelecom
 9  *
10  202.97.48.21  135.08 ms  AS4134  China Shanghai ChinaTelecom
11  101.95.207.230  137.48 ms  AS4812  China Shanghai ChinaTelecom
12  101.95.207.230  136.68 ms  AS4812  China Shanghai ChinaTelecom
13  101.227.255.42  134.41 ms  AS4812  China Shanghai ChinaTelecom
14  *
15  *
16  180.153.28.1  135.85 ms  AS4812  China Shanghai ChinaTelecom


Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  5.98 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  223.119.64.229  0.98 ms  AS58453  United States California Los Angeles ChinaMobile
 5  223.119.64.229  0.86 ms  AS58453  United States California Los Angeles ChinaMobile
 6  223.120.6.17  0.81 ms  AS58453  United States California Los Angeles ChinaMobile
 7  223.120.6.38  0.90 ms  AS58453  United States California Los Angeles ChinaMobile
 8  *
 9  *
10  221.176.18.113  169.12 ms  AS9808  China Guangdong Guangzhou ChinaMobile
11  221.176.22.237  180.12 ms  AS9808  China Guangdong Guangzhou ChinaMobile
12  *
13  221.176.17.178  192.42 ms  AS9808  China Shanghai ChinaMobile
14  221.183.55.22  225.28 ms  AS9808  China Shanghai ChinaMobile


Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  *
 6  219.158.24.137  202.43 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 7  219.158.24.137  167.84 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
 8  120.83.0.54  174.40 ms  AS17816  China Guangdong Guangzhou ChinaUnicom
 9  120.80.175.70  192.09 ms  AS17622  China Guangdong Guangzhou ChinaUnicom
10  120.80.175.70  181.49 ms  AS17622  China Guangdong Guangzhou ChinaUnicom
11  210.21.4.130  160.38 ms  AS17622  China Guangdong Guangzhou ChinaUnicom


Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  10.99 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  *
 5  59.43.244.26  130.12 ms  *  United States California Los Angeles ChinaTelecom
 6  202.97.92.38  156.72 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  202.97.92.38  154.15 ms  AS4134  United States California Los Angeles ChinaTelecom
 8  202.97.94.113  192.92 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
 9  *
10  113.108.209.1  163.50 ms  AS58466  China Guangdong Guangzhou ChinaTelecom


Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.139.129.5 (211.139.129.5), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  223.119.64.229  1.21 ms  AS58453  United States California Los Angeles ChinaMobile
 6  223.120.6.17  0.90 ms  AS58453  United States California Los Angeles ChinaMobile
 7  *
 8  *
 9  221.176.24.61  192.65 ms  AS9808  China Guangdong Guangzhou ChinaMobile
10  221.183.24.78  193.74 ms  AS9808  China Guangdong Guangzhou ChinaMobile
11  *
12  120.198.206.198  188.40 ms  AS56040  China Guangdong Guangzhou ChinaMobile
13  211.139.129.5  189.86 ms  AS56040  China Guangdong Guangzhou ChinaMobile


Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  218.30.48.173  1.32 ms  AS4134  United States California Los Angeles ctamericas.com
 6  202.97.50.25  132.47 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  *
 8  *
 9  202.97.46.10  136.76 ms  AS4134  China Shanghai ChinaTelecom
10  *
11  *
12  *
13  218.105.2.210  136.88 ms  AS9929  China Shanghai ChinaUnicom
14  210.13.112.254  134.77 ms  AS9929  China Shanghai ChinaUnicom
15  210.13.66.237  142.12 ms  AS9929  China Shanghai ChinaUnicom
16  210.13.66.237  151.39 ms  AS9929  China Shanghai ChinaUnicom
17  *
18  210.13.66.238  139.91 ms  AS9929  China Shanghai ChinaUnicom


Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  218.30.48.241  1.11 ms  AS4134  United States California Los Angeles ctamericas.com
 5  59.43.244.26  131.01 ms  *  United States California Los Angeles ChinaTelecom
 6  202.97.92.46  130.54 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  202.97.92.46  135.90 ms  AS4134  United States California Los Angeles ChinaTelecom
 8  59.43.248.130  9.53 ms  *  United States California San Jose ChinaTelecom
 9  59.43.189.37  127.40 ms  *  China ChinaTelecom
10  *
11  101.95.88.34  128.40 ms  AS4812  China Shanghai ChinaTelecom
12  101.95.88.38  145.97 ms  AS4812  China Shanghai ChinaTelecom
13  61.152.24.210  139.94 ms  AS4812  China Shanghai ChinaTelecom
14  101.95.95.78  141.23 ms  AS4812  China Shanghai ChinaTelecom
15  58.32.0.1  130.51 ms  AS4812  China Shanghai ChinaTelecom


Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 14.131.125.1 (14.131.125.1), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  6.53 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  *
 5  59.43.244.26  129.71 ms  *  United States California Los Angeles ChinaTelecom
 6  59.43.244.26  129.71 ms  *  United States California Los Angeles ChinaTelecom
 7  202.97.90.225  163.97 ms  AS4134  China Beijing ChinaTelecom
 8  202.97.90.225  169.51 ms  AS4134  China Beijing ChinaTelecom
 9  202.97.12.169  171.16 ms  AS4134  China Beijing ChinaTelecom
10  *
11  *
12  *
13  1.202.252.42  187.66 ms  AS4847  China Beijing ChinaTelecom
14  218.241.245.177  187.32 ms  AS4847  China Beijing DRPENG
15  218.241.245.177  185.88 ms  AS4847  China Beijing DRPENG
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 115.47.124.254 (115.47.124.254), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  6.63 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  *
 5  218.30.48.241  1.11 ms  AS4134  United States California Los Angeles ctamericas.com
 6  59.43.244.26  130.16 ms  *  United States California Los Angeles ChinaTelecom
 7  202.97.90.117  149.07 ms  AS4134  United States California Los Angeles ChinaTelecom
 8  202.97.52.5  157.05 ms  AS4134  China Beijing ChinaTelecom
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  66.110.59.193  0.54 ms  AS6453  United States California Los Angeles tatacommunications.com
 5  66.110.59.1  0.74 ms  AS6453  United States California Los Angeles tatacommunications.com
 6  66.110.59.182  1.69 ms  AS6453  United States California Los Angeles tatacommunications.com
 7  *
 8  101.4.114.197  303.71 ms  AS4538  China Beijing CHINAEDU
 9  219.224.102.234  312.89 ms  AS4538  China Beijing CHINAEDU
10  202.112.38.158  317.56 ms  AS4538  China Beijing CHINAEDU
11  202.112.38.158  313.21 ms  AS4538  China Beijing CHINAEDU
12  202.112.38.82  305.83 ms  AS4538  China Beijing CHINAEDU
13  202.205.109.205  311.90 ms  AS4538  China Beijing CHINAEDU


Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  4.26.0.49  0.57 ms  AS3356  United States California Los Angeles level3.com
 5  *
 6  63.218.73.217  1.31 ms  AS3491  United States California Los Angeles pccw.com
 7  63.223.15.174  152.50 ms  AS3491  China Hong Kong pccw.com
 8  *
 9  159.226.254.5  194.14 ms  AS7497  China Beijing CSTNET
10  159.226.254.49  200.40 ms  AS7497  China Beijing CSTNET
11  159.226.254.49  197.77 ms  AS7497  China Beijing CSTNET
12  159.226.254.1  192.03 ms  AS7497  China Beijing CSTNET


Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  223.119.64.229  1.04 ms  AS58453  United States California Los Angeles ChinaMobile
 5  223.119.64.229  0.79 ms  AS58453  United States California Los Angeles ChinaMobile
 6  223.120.6.17  0.83 ms  AS58453  United States California Los Angeles ChinaMobile
 7  *
 8  221.176.17.61  183.79 ms  AS9808  China Shanghai ChinaMobile
 9  *
10  221.176.17.217  203.26 ms  AS9808  China Shanghai ChinaMobile
11  221.176.22.18  194.97 ms  AS9808  China Shanghai ChinaMobile
12  211.156.132.25  167.61 ms  AS7641  China Beijing chinabtn.com CATV
13  211.156.132.25  168.32 ms  AS7641  China Beijing chinabtn.com CATV
14  211.156.129.89  188.81 ms  AS7641  China Beijing chinabtn.com CATV
15  211.156.128.229  180.65 ms  AS7641  China Beijing chinabtn.com CATV
16  211.156.140.17  256.13 ms  AS7641  China Beijing chinabtn.com CATV


Traceroute to China, Hongkong CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.160.95.218 (203.160.95.218), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  218.30.48.173  1.28 ms  AS4134  United States California Los Angeles ctamericas.com
 5  59.43.245.26  140.82 ms  *  China Hong Kong ChinaTelecom
 6  202.97.50.29  131.59 ms  AS4134  United States California Los Angeles ChinaTelecom
 7  202.97.52.217  158.69 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
 8  202.97.91.29  180.39 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
 9  202.97.91.138  188.97 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
10  202.97.91.173  161.63 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
11  202.97.18.249  166.45 ms  AS4134  China Guangdong Guangzhou ChinaTelecom
12  219.158.9.41  168.43 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
13  219.158.96.205  177.59 ms  AS4837  China Guangdong Guangzhou ChinaUnicom
14  219.158.10.62  181.73 ms  AS4837  China Hong Kong ChinaUnicom
15  219.158.10.62  195.08 ms  AS4837  China Hong Kong ChinaUnicom
16  219.158.10.62  168.48 ms  AS4837  China Hong Kong ChinaUnicom
17  43.252.86.65  190.66 ms  AS10099  China Hong Kong ChinaUnicom
18  119.252.139.14  177.42 ms  AS10099  China Hong Kong ChinaUnicom
19  203.160.95.218  175.84 ms  AS10099  China Hong Kong ChinaUnicom


Traceroute to China, Hongkong CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.232.173 (203.215.232.173), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  218.30.48.173  1.30 ms  AS4134  United States California Los Angeles ctamericas.com
 6  203.215.232.173  153.53 ms  AS4134  China Hong Kong ChinaTelecom


Traceroute to China, Hongkong CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.8.25.187 (203.8.25.187), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  18.64 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  *
 5  218.30.48.241  1.11 ms  AS4134  United States California Los Angeles ctamericas.com
 6  59.43.245.25  1.12 ms  *  China Hong Kong ChinaTelecom
 7  59.43.245.25  1.14 ms  *  China Hong Kong ChinaTelecom
 8  59.43.189.21  180.23 ms  *  China Hong Kong ChinaTelecom
 9  59.43.189.21  180.25 ms  *  China Hong Kong ChinaTelecom
10  203.8.25.187  180.95 ms  AS4809  China Hong Kong ChinaTelecom


Traceroute to China, Hongkong CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.142.105.9 (203.142.105.9), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  192.254.81.31  0.66 ms  AS21859  United States California Los Angeles zenlayer.com
 5  206.72.210.219  1.19 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 6  223.120.6.17  0.92 ms  AS58453  United States California Los Angeles ChinaMobile
 7  223.120.6.86  3.12 ms  AS58453  United States California Los Angeles ChinaMobile
 8  223.118.3.186  151.62 ms  AS58453  China Hong Kong ChinaMobile
 9  223.118.3.42  141.44 ms  AS58453  China Hong Kong ChinaMobile
10  223.119.0.2  142.07 ms  AS58453  China Hong Kong ChinaMobile
11  203.142.100.165  141.90 ms  AS9231  China Hong Kong ChinaMobile
12  203.142.100.22  142.51 ms  AS9231  China Hong Kong ChinaMobile
13  203.142.105.9  142.68 ms  AS9231  China Hong Kong ChinaMobile


Traceroute to China, Hongkong HGC (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.188.104.30 (218.188.104.30), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  192.254.81.31  13.53 ms  AS21859  United States California Los Angeles zenlayer.com
 5  206.72.210.114  0.65 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 6  218.189.5.146  4.68 ms  AS9304  United States California Los Angeles hgc.com.hk
 7  118.143.224.49  149.83 ms  AS9304  China Hong Kong hgc.com.hk
 8  *
 9  *
10  218.188.104.30  151.76 ms  AS9304  China Hong Kong hgc.com.hk


Traceroute to China, Hongkong HKBN (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.6.23.239 (210.6.23.239), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  209.58.85.57  0.54 ms  AS6453  United States California Los Angeles tatacommunications.com
 6  64.86.252.217  222.99 ms  AS6453  Japan Tokyo tatacommunications.com
 7  120.29.211.2  117.75 ms  AS6453  Japan Chiba tatacommunications.com
 8  203.186.235.137  225.50 ms  AS9269  China Hong Kong hkbn.com.hk
 9  203.80.215.70  155.75 ms  AS9269  China Hong Kong hkbn.com.hk
10  203.80.215.70  168.49 ms  AS9269  China Hong Kong hkbn.com.hk
11  61.244.225.68  161.40 ms  AS9269  China Hong Kong hkbn.com.hk
12  61.244.225.68  155.78 ms  AS9269  China Hong Kong hkbn.com.hk
13  203.80.215.70  168.76 ms  AS9269  China Hong Kong hkbn.com.hk
14  210.6.23.239  155.06 ms  AS9269  China Hong Kong hkbn.com.hk


Traceroute to China, Hongkong PCCW (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.85.125.60 (202.85.125.60), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  4.26.1.153  4.24 ms  AS3356  United States California Los Angeles level3.com
 5  *
 6  63.218.73.217  1.18 ms  AS3491  United States California Los Angeles pccw.com
 7  63.223.17.94  152.47 ms  AS3491  China Hong Kong pccw.com
 8  63.223.15.154  167.29 ms  AS3491  China Hong Kong pccw.com
 9  63.218.61.174  169.22 ms  AS3491  China Hong Kong pccw.com
10  202.153.103.69  171.06 ms  AS9925  China Hong Kong pbase.net
11  202.153.99.204  162.75 ms  AS9925  China Hong Kong pbase.net
12  203.215.244.33  159.38 ms  AS9925  China Hong Kong pbase.net
13  202.85.125.60  171.59 ms  AS9925  China Hong Kong pccw.com


Traceroute to China, Hongkong TGT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.123.76.58 (202.123.76.58), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  192.254.81.31  4.27 ms  AS21859  United States California Los Angeles zenlayer.com
 5  206.72.210.114  0.65 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 6  218.189.5.178  0.64 ms  AS9304  United States California Los Angeles hgc.com.hk
 7  118.143.224.45  160.20 ms  AS9304  China Hong Kong hgc.com.hk
 8  218.189.5.14  157.17 ms  AS9304  China Hong Kong hgc.com.hk
 9  123.255.91.105  158.22 ms  AS135423  China Hong Kong hkix.net
10  202.123.74.58  155.57 ms  AS10098  China Hong Kong towngastelecom.com
11  202.123.74.66  154.90 ms  AS10098  China Hong Kong towngastelecom.com
12  202.123.76.58  159.66 ms  AS10098  China Hong Kong towngastelecom.com


Traceroute to China, Hongkong WTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 59.152.252.242 (59.152.252.242), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  5.56 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  192.254.81.31  0.69 ms  AS21859  United States California Los Angeles zenlayer.com
 5  206.72.210.122  0.56 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 6  72.52.92.121  0.91 ms  AS6939  United States California Los Angeles he.net
 7  184.104.193.49  7.77 ms  AS6939  United States California San Jose he.net
 8  64.71.148.166  8.42 ms  AS6939  United States California Fremont he.net
 9  10.55.192.150  159.25 ms  *  LAN Address
10  1.9.241.94  165.78 ms  AS4788  TM.COM.MY BACKBONE tm.com.my
11  115.160.187.54  169.40 ms  AS9381  China Hong Kong hkbn.com.hk
12  10.104.131.158  165.45 ms  *  LAN Address
13  59.152.252.196  158.95 ms  AS9381  China Hong Kong hkbn.com.hk
14  59.152.252.242  168.63 ms  AS9381  China Hong Kong hkbn.com.hk


Traceroute to Singapore, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.233.1 (203.215.233.1), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  6.28 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  218.30.48.173  1.39 ms  AS4134  United States California Los Angeles ctamericas.com
 5  59.43.245.26  143.61 ms  *  China Hong Kong ChinaTelecom
 6  202.97.59.154  133.43 ms  AS4134  China Shanghai ChinaTelecom
 7  203.215.233.1  185.07 ms  AS4134  Singapore ChinaTelecom


Traceroute to Singapore, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 183.91.61.1 (183.91.61.1), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  218.30.48.241  1.65 ms  AS4134  United States California Los Angeles ctamericas.com
 6  59.43.244.26  129.58 ms  *  United States California Los Angeles ChinaTelecom
 7  59.43.245.25  1.42 ms  *  China Hong Kong ChinaTelecom
 8  59.43.182.102  152.68 ms  *  China Guangdong Guangzhou ChinaTelecom
 9  183.91.61.1  227.45 ms  AS4809  Singapore ChinaTelecom


Traceroute to Singapore, Singtel (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.201.1.11 (118.201.1.11), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  216.221.157.137  0.74 ms  AS3257  United States California Los Angeles gtt.net
 5  46.33.80.34  0.61 ms  AS3257  United States California Los Angeles gtt.net
 6  203.208.171.117  0.82 ms  AS7473  United States California Los Angeles singtel.com
 7  203.208.171.118  0.86 ms  AS7473  United States California Los Angeles singtel.com
 8  203.208.190.254  170.16 ms  AS7473  Singapore singtel.com
 9  *
10  *
11  203.208.175.58  184.08 ms  AS7473  Singapore singtel.com
12  *
13  165.21.49.126  184.65 ms  AS3758  Singapore singtel.com
14  *
15  118.201.1.11  171.43 ms  AS3758  Singapore singtel.com


Traceroute to Singapore, StarHub (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.116.46.162 (203.116.46.162), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  66.110.59.193  0.64 ms  AS6453  United States California Los Angeles tatacommunications.com
 5  66.110.59.2  170.59 ms  AS6453  United States California Los Angeles tatacommunications.com
 6  64.86.252.217  250.93 ms  AS6453  Japan Tokyo tatacommunications.com
 7  64.86.252.57  147.96 ms  AS6453  Japan Chiba tatacommunications.com
 8  203.118.12.41  185.13 ms  AS4657  Singapore starhub.com
 9  180.87.12.162  191.54 ms  AS6453  Singapore tatacommunications.com
10  180.87.12.162  201.08 ms  AS6453  Singapore tatacommunications.com
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Singapore, M1 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.123.8.123 (203.123.8.123), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  7.84 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  192.254.81.27  2.81 ms  AS21859  United States California Los Angeles zenlayer.com
 5  206.72.210.60  160.97 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 6  202.65.246.133  163.84 ms  AS4773  Singapore m1.com.sg
 7  210.193.4.129  186.56 ms  AS17547  Singapore m1.com.sg
 8  203.211.159.46  182.18 ms  AS17547  Singapore m1.com.sg
 9  203.211.158.118  225.24 ms  AS17547  Singapore m1.com.sg
10  203.123.8.123  172.27 ms  AS17547  Singapore m1.com.sg


Traceroute to Singapore, AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.228.0.251 (13.228.0.251), 50 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  69.174.23.150  1.10 ms  AS3257  United States California Los Angeles gtt.net
 6  69.174.23.150  0.88 ms  AS3257  United States California Los Angeles gtt.net
 7  129.250.2.177  118.69 ms  AS2914  NTT.COM BACKBONE ntt.com
 8  129.250.2.177  113.85 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.3.100  186.37 ms  AS2914  Singapore ntt.com
10  129.250.2.74  176.61 ms  AS2914  Singapore ntt.com
11  129.250.2.92  187.63 ms  AS2914  Singapore ntt.com
12  116.51.17.130  174.38 ms  AS2914  Singapore ntt.com
13  *
14  *
15  52.93.11.25  186.45 ms  *  Singapore amazon.com
16  52.93.11.11  191.84 ms  *  Singapore amazon.com
17  52.93.11.28  191.17 ms  *  Singapore amazon.com
18  203.83.223.196  171.79 ms  AS16509,AS38895  Singapore amazon.com
19  *
20  *
21  *
22  *
23  *
24  *
25  13.228.0.251  173.09 ms  AS16509  Singapore amazon.com


Traceroute to Japan, NTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 61.213.155.84 (61.213.155.84), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  4.26.1.137  0.53 ms  AS3356  United States California Los Angeles level3.com
 5  *
 6  129.250.9.93  1.12 ms  AS2914  NTT.COM BACKBONE ntt.com
 7  129.250.3.237  1.06 ms  AS2914  United States California Los Angeles ntt.com
 8  129.250.3.192  192.10 ms  AS2914  Japan Tokyo ntt.com
 9  129.250.3.28  112.23 ms  AS2914  Japan Tokyo ntt.com
10  61.213.179.34  116.71 ms  AS2914  Japan Tokyo ntt.com
11  *
12  *
13  61.213.155.84  139.89 ms  AS2914  Japan Tokyo ntt.com


Traceroute to Japan, IIJ (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.232.15.70 (202.232.15.70), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  4.26.0.125  0.60 ms  AS3356  United States California Los Angeles level3.com
 5  4.69.153.137  0.72 ms  AS3356  United States California Los Angeles level3.com
 6  4.68.70.146  0.72 ms  AS3356  United States California Los Angeles level3.com
 7  58.138.88.145  108.65 ms  AS2497  Japan Tokyo iij.ad.jp
 8  58.138.102.210  108.75 ms  AS2497  Japan Tokyo iij.ad.jp
 9  210.130.142.114  103.01 ms  AS2497  Japan Tokyo iij.ad.jp
10  202.232.15.70  112.93 ms  AS2497  Japan iij.ad.jp


Traceroute to Japan, SoftBank (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.175.32.26 (210.175.32.26), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  192.254.81.27  1.40 ms  AS21859  United States California Los Angeles zenlayer.com
 5  206.72.211.18  1.45 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 6  *
 7  143.90.232.241  102.01 ms  AS4725  Japan Tokyo odn.ne.jp
 8  143.90.47.9  104.20 ms  AS4725  Japan odn.ne.jp
 9  143.90.26.226  118.06 ms  AS4725  Japan odn.ne.jp
10  143.90.54.30  112.33 ms  AS4725  Japan odn.ne.jp
11  210.175.32.123  113.78 ms  AS4725  Japan odn.ne.jp
12  210.175.32.26  100.19 ms  AS4725  Japan odn.ne.jp


Traceroute to Japan, KDDI (TCP Mode, Max 30 Hop)
============================================================
traceroute to 106.162.242.108 (106.162.242.108), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  66.110.59.193  0.59 ms  AS6453  United States California Los Angeles tatacommunications.com
 6  213.254.230.254  0.55 ms  AS3257  United States California Los Angeles gtt.net
 7  89.149.141.105  0.46 ms  AS3257  United States California Los Angeles gtt.net
 8  203.181.106.189  1.65 ms  AS2516  United States California Los Angeles kddi.com
 9  106.187.12.21  117.30 ms  AS2516  Japan Osaka kddi.com
10  106.187.12.21  116.26 ms  AS2516  Japan Osaka kddi.com
11  27.90.191.234  119.90 ms  AS2516  Japan kddi.com
12  111.107.101.94  118.86 ms  AS2516  Japan kddi.com
13  111.87.220.242  119.03 ms  AS2516  Japan kddi.com
14  106.162.242.108  113.43 ms  AS2516  Japan kddi.com


Traceroute to Japan, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.236.3 (203.215.236.3), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  59.43.245.26  138.98 ms  *  China Hong Kong ChinaTelecom
 6  59.43.245.26  144.48 ms  *  China Hong Kong ChinaTelecom
 7  202.97.97.98  129.87 ms  AS4134  Japan Tokyo ChinaTelecom
 8  203.215.236.3  129.44 ms  AS4134  Japan Tokyo ChinaTelecom


Traceroute to Japan, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.55.27.4 (202.55.27.4), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  5.87 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  218.30.48.173  1.37 ms  AS4134  United States California Los Angeles ctamericas.com
 5  59.43.244.26  130.43 ms  *  United States California Los Angeles ChinaTelecom
 6  59.43.244.26  130.60 ms  *  United States California Los Angeles ChinaTelecom
 7  59.43.245.25  1.24 ms  *  China Hong Kong ChinaTelecom
 8  202.55.27.4  106.99 ms  AS4809  Japan Tokyo ChinaTelecom


Traceroute to Japan, Amazon AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.112.63.251 (13.112.63.251), 50 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  216.221.157.137  2.32 ms  AS3257  United States California Los Angeles gtt.net
 5  69.174.23.150  0.94 ms  AS3257  United States California Los Angeles gtt.net
 6  69.174.23.150  1.00 ms  AS3257  United States California Los Angeles gtt.net
 7  129.250.3.192  109.43 ms  AS2914  Japan Tokyo ntt.com
 8  129.250.2.177  115.64 ms  AS2914  NTT.COM BACKBONE ntt.com
 9  129.250.6.133  112.62 ms  AS2914  Japan Tokyo ntt.com
10  61.120.146.82  113.05 ms  AS2914  Japan Osaka ntt.com
11  *
12  *
13  54.239.53.155  111.69 ms  AS16509  Japan Tokyo amazon.com
14  54.239.53.67  105.66 ms  AS16509  Japan Tokyo amazon.com
15  52.95.31.41  108.61 ms  AS16509  Japan Tokyo amazon.com
16  52.95.31.11  112.23 ms  AS16509  Japan Tokyo amazon.com
17  *
18  52.95.31.88  113.16 ms  AS16509  Japan Tokyo amazon.com
19  52.95.31.204  114.16 ms  AS16509  Japan Tokyo amazon.com
20  *
21  52.95.31.100  115.11 ms  AS16509  Japan Tokyo amazon.com
22  *
23  *
24  *
25  *
26  *
27  *
28  13.112.63.251  116.69 ms  AS16509  Japan Tokyo amazon.com


Traceroute to South Korea, KT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.114.41.101 (210.114.41.101), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  216.221.157.137  0.77 ms  AS3257  United States California Los Angeles gtt.net
 5  216.221.157.137  0.89 ms  AS3257  United States California Los Angeles gtt.net
 6  173.205.53.250  0.68 ms  AS3257  United States gtt.net
 7  173.205.53.250  1.02 ms  AS3257  United States gtt.net
 8  112.174.85.229  134.61 ms  AS4766  Republic of Korea Seoul kt.com
 9  *
10  *
11  112.188.245.210  134.33 ms  AS4766  Republic of Korea Seoul kt.com
12  220.90.203.2  136.59 ms  AS4766  Republic of Korea Seoul kt.com
13  211.37.137.22  133.02 ms  AS4766  Republic of Korea Seoul kt.com
14  210.114.41.101  135.97 ms  AS4766  Republic of Korea Seoul kt.com


Traceroute to South Korea, SK (TCP Mode, Max 30 Hop)
============================================================
traceroute to 175.122.253.62 (175.122.253.62), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  192.254.81.31  0.70 ms  AS21859  United States California Los Angeles zenlayer.com
 5  206.72.210.167  4.54 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 6  58.229.15.77  138.54 ms  AS9318  Republic of Korea skbroadband.com
 7  1.255.26.245  150.09 ms  AS9318  Republic of Korea Seoul skbroadband.com
 8  10.222.21.91  136.86 ms  *  LAN Address
 9  175.122.253.62  133.71 ms  AS9318  Republic of Korea skbroadband.com


Traceroute to South Korea, LG (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.174.62.44 (211.174.62.44), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  4.26.1.137  0.72 ms  AS3356  United States California Los Angeles level3.com
 5  4.69.153.121  0.65 ms  AS3356  United States California Los Angeles level3.com
 6  61.42.234.5  0.77 ms  AS3786  Republic of Korea uplus.co.kr
 7  1.213.105.145  0.76 ms  AS3786  Republic of Korea uplus.co.kr
 8  1.208.104.29  149.96 ms  AS3786  Republic of Korea Seoul uplus.co.kr
 9  *
10  *
11  1.208.149.6  141.73 ms  AS3786  Republic of Korea uplus.co.kr
12  61.111.0.254  135.03 ms  AS3786  Republic of Korea Seoul uplus.co.kr
13  114.108.170.50  135.72 ms  AS3786  Republic of Korea Seoul uplus.co.kr
14  114.108.170.54  127.16 ms  AS3786  Republic of Korea Seoul uplus.co.kr
15  211.174.62.44  140.56 ms  AS3786  Republic of Korea Seoul uplus.co.kr


Traceroute to South Korea, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.185.246.12 (218.185.246.12), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  59.43.245.26  138.13 ms  *  China Hong Kong ChinaTelecom
 6  59.43.244.17  1.23 ms  *  United States California Los Angeles ChinaTelecom
 7  59.43.244.17  1.22 ms  *  United States California Los Angeles ChinaTelecom
 8  59.43.181.153  132.85 ms  *  China ChinaTelecom
 9  59.43.184.25  148.72 ms  *  Republic of Korea Seoul ChinaTelecom
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to South Korea, Amazon AWS (TCP Mode, Max 50 Hop)
============================================================
traceroute to 13.124.63.251 (13.124.63.251), 50 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  69.174.23.150  0.96 ms  AS3257  United States California Los Angeles gtt.net
 6  69.174.23.150  0.95 ms  AS3257  United States California Los Angeles gtt.net
 7  129.250.4.106  1.00 ms  AS2914  United States California Los Angeles ntt.com
 8  129.250.6.129  107.90 ms  AS2914  Japan Tokyo ntt.com
 9  129.250.7.33  113.02 ms  AS2914  Japan Osaka ntt.com
10  61.120.146.82  112.44 ms  AS2914  Japan Osaka ntt.com
11  *
12  *
13  54.239.53.61  111.53 ms  AS16509  Japan Tokyo amazon.com
14  *
15  *
16  54.239.122.234  140.81 ms  AS16509  Republic of Korea Seoul amazon.com
17  54.239.122.254  135.37 ms  AS16509  Republic of Korea Seoul amazon.com
18  52.93.248.204  134.02 ms  *  Republic of Korea Seoul amazon.com
19  52.93.248.219  136.21 ms  *  Republic of Korea Seoul amazon.com
20  54.239.123.119  130.67 ms  AS16509  Republic of Korea Seoul amazon.com
21  52.93.248.221  152.17 ms  *  Republic of Korea Seoul amazon.com
22  *
23  *
24  *
25  *
26  13.124.63.251  139.57 ms  AS16509  Republic of Korea Seoul amazon.com


Traceroute to China, Taiwan Chief (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.133.242.116 (202.133.242.116), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  192.254.81.27  5.46 ms  AS21859  United States California Los Angeles zenlayer.com
 5  206.72.210.45  0.63 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 6  85.95.26.2  124.56 ms  AS15412  Japan Tokyo globalcloudxchange.com
 7  62.216.136.17  115.03 ms  AS15412  Japan Tokyo globalcloudxchange.com
 8  62.216.136.141  124.24 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
 9  80.77.2.198  134.01 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
10  *
11  113.21.95.72  132.68 ms  AS17408  China Taiwan Taipei City chief.com.tw
12  *
13  202.133.242.114  132.02 ms  AS17408  China Taiwan Taipei City chief.com.tw
14  202.133.242.116  125.55 ms  AS17408  China Taiwan Taipei City chief.com.tw


Traceroute to China, Taiwan APTG (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.200.69.90 (210.200.69.90), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  192.254.81.31  0.84 ms  AS21859  United States California Los Angeles zenlayer.com
 5  206.72.210.108  0.68 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 6  203.78.181.201  138.37 ms  AS9505  China Taiwan Taipei City twgate.net
 7  175.41.58.146  142.80 ms  AS9505  China Taiwan Taipei City twgate.net
 8  203.78.187.78  137.08 ms  AS9505  China Taiwan Taipei City twgate.net
 9  211.76.96.176  147.15 ms  AS17709  China Taiwan Taipei City aptg.com.tw
10  211.76.100.61  133.38 ms  AS17709  China Taiwan Taipei City aptg.com.tw
11  210.200.80.254  146.56 ms  AS131142  China Taiwan Taipei City aptg.com.tw
12  *
13  210.200.69.90  146.10 ms  AS131142  China Taiwan Taipei City aptg.com.tw


Traceroute to China, Taiwan CHT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.75.129.162 (203.75.129.162), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  6.38 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  4.26.1.153  3.31 ms  AS3356  United States California Los Angeles level3.com
 5  *
 6  4.7.26.42  2.71 ms  AS3356  United States California Los Angeles level3.com
 7  202.39.84.86  1.26 ms  AS9680  United States California Los Angeles cht.com.tw
 8  *
 9  220.128.6.86  134.12 ms  AS3462  China Taiwan Taipei City cht.com.tw
10  220.128.14.94  132.99 ms  AS3462  China Taiwan Taipei City cht.com.tw
11  220.128.1.225  132.65 ms  AS3462  China Taiwan Taipei City cht.com.tw
12  211.22.229.45  133.07 ms  AS3462  China Taiwan Taipei City cht.com.tw
13  1.1.1.2  133.34 ms  AS13335  CLOUDFLARE.COM apnic.net
14  *
15  203.75.129.162  132.66 ms  AS3462  China Taiwan Taipei City cht.com.tw


Traceroute to China, Taiwan TFN (TCP Mode, Max 30 Hop)
============================================================
traceroute to 219.87.66.3 (219.87.66.3), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  192.254.81.27  1.25 ms  AS21859  United States California Los Angeles zenlayer.com
 5  206.72.210.108  0.68 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 6  203.78.181.201  138.31 ms  AS9505  China Taiwan Taipei City twgate.net
 7  175.41.61.174  135.86 ms  AS9505  China Taiwan Taipei City twgate.net
 8  175.41.60.174  160.19 ms  AS9505  China Taiwan Taipei City twgate.net
 9  60.199.16.206  140.90 ms  AS9924  China Taiwan Taipei City twmbroadband.com
10  60.199.16.70  149.77 ms  AS9924  China Taiwan Taipei City twmbroadband.com
11  219.87.66.3  147.10 ms  AS9924  China Taiwan Taipei City twmbroadband.com


Traceroute to China,Taiwan FET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.73.144.38 (211.73.144.38), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  192.254.81.31  1.33 ms  AS21859  United States California Los Angeles zenlayer.com
 5  206.72.210.45  0.75 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 6  85.95.25.18  96.48 ms  AS15412  Japan Tokyo globalcloudxchange.com
 7  62.216.128.94  126.92 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
 8  80.81.69.42  124.11 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
 9  192.72.155.29  131.63 ms  AS4780  China Taiwan Taipei City fetnet.net
10  139.175.58.166  144.15 ms  AS4780  China Taiwan Taipei City fetnet.net
11  *
12  *
13  *
14  211.73.144.38  126.76 ms  AS9674  China Taiwan fetnet.net


Traceroute to China, Taiwan KBT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 61.63.0.102 (61.63.0.102), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  192.254.81.31  1.24 ms  AS21859  United States California Los Angeles zenlayer.com
 5  206.72.210.108  0.83 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 6  203.78.181.145  150.93 ms  AS9505  China Taiwan Taipei City twgate.net
 7  175.41.61.174  144.29 ms  AS9505  China Taiwan Taipei City twgate.net
 8  175.41.61.210  151.05 ms  AS9505  China Taiwan Taipei City twgate.net
 9  203.187.9.241  142.70 ms  AS9416  China Taiwan Taipei City kbtelecom.net
10  203.187.9.238  134.38 ms  AS9416  China Taiwan Taipei City kbtelecom.net
11  58.86.1.174  131.45 ms  AS18042  China Taiwan Taipei City kbtelecom.net
12  58.86.0.94  138.82 ms  AS18042  China Taiwan Taipei City kbtelecom.net
13  58.86.0.26  143.09 ms  AS18042  China Taiwan Taipei City kbtelecom.net
14  61.63.0.102  132.96 ms  AS18042  China Taiwan Taipei City kbtelecom.net


Traceroute to China, Taiwan TAIFO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 103.31.196.203 (103.31.196.203), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  6.43 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  192.254.81.31  6.15 ms  AS21859  United States California Los Angeles zenlayer.com
 5  206.72.210.45  0.62 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 6  85.95.25.246  131.56 ms  AS15412  Japan Tokyo globalcloudxchange.com
 7  85.95.27.142  96.36 ms  AS15412  Japan Tokyo globalcloudxchange.com
 8  62.216.136.141  124.33 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
 9  80.77.2.202  124.19 ms  AS15412  China Taiwan Taipei City globalcloudxchange.com
10  *
11  113.21.95.123  132.55 ms  AS17408  China Taiwan Taipei City chief.com.tw
12  *
13  103.31.197.122  125.01 ms  AS131584  China Taiwan Taipei City taifo.com.tw
14  *
15  103.31.197.70  124.84 ms  AS131584  China Taiwan Taipei City taifo.com.tw
16  103.31.196.203  134.33 ms  AS131584  China Taiwan Taipei City taifo.com.tw


Traceroute to United States, Los Angeles China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  218.30.48.173  1.37 ms  AS4134  United States California Los Angeles ctamericas.com
 6  59.43.245.26  142.84 ms  *  China Hong Kong ChinaTelecom
 7  218.30.33.17  189.85 ms  AS4134  United States ctamericas.com


Traceroute to United States, Los Angeles China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.102.252.100 (66.102.252.100), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  59.43.244.26  129.93 ms  *  United States California Los Angeles ChinaTelecom
 6  59.43.244.26  131.41 ms  *  United States California Los Angeles ChinaTelecom
 7  59.43.189.13  1.64 ms  *  United States California Los Angeles ChinaTelecom
 8  66.102.252.100  0.96 ms  AS4809  United States ctamericas.com


Traceroute to United States, Los Angeles PCCW (TCP Mode, Max 30 Hop)
============================================================
traceroute to 63.218.42.81 (63.218.42.81), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  8.78 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  66.110.59.193  0.53 ms  AS6453  United States California Los Angeles tatacommunications.com
 5  66.110.59.1  0.74 ms  AS6453  United States California Los Angeles tatacommunications.com
 6  66.110.59.1  0.95 ms  AS6453  United States California Los Angeles tatacommunications.com
 7  63.218.42.81  0.92 ms  AS3491  United States California Los Angeles pccw.com


Traceroute to United States, Los Angeles HE (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.220.18.42 (66.220.18.42), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  192.254.81.31  2.13 ms  AS21859  United States California Los Angeles zenlayer.com
 5  206.72.210.122  0.65 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 6  72.52.92.121  0.68 ms  AS6939  United States California Los Angeles he.net
 7  66.220.18.42  0.81 ms  AS6939  United States California Los Angeles he.net


Traceroute to United States, Los Angeles GTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 173.205.77.98 (173.205.77.98), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  216.221.157.137  3.05 ms  AS3257  United States California Los Angeles gtt.net
 5  216.221.157.137  1.11 ms  AS3257  United States California Los Angeles gtt.net
 6  89.149.181.170  1.15 ms  AS3257  United States California Los Angeles gtt.net
 7  173.205.77.98  0.90 ms  AS3257  United States California Los Angeles gtt.net


Traceroute to United States, San Fransico ATT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 12.169.215.33 (12.169.215.33), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  4.26.0.49  0.64 ms  AS3356  United States California Los Angeles level3.com
 5  *
 6  192.205.37.145  5.88 ms  AS7018  United States California Los Angeles att.com
 7  12.122.129.106  17.22 ms  AS7018  United States California Los Angeles att.com
 8  12.122.28.122  20.64 ms  AS7018  United States California San Francisco att.com
 9  12.122.110.13  19.38 ms  AS7018  United States California att.com
10  12.244.156.30  17.48 ms  AS7018  United States California att.com
11  12.169.215.33  19.51 ms  AS7018  United States California att.com


Traceroute to United States, New York TATA (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.198.181.100 (66.198.181.100), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  66.110.59.193  1.24 ms  AS6453  United States California Los Angeles tatacommunications.com
 6  216.6.87.43  72.22 ms  AS6453  United States New Jersey Newark tatacommunications.com
 7  64.86.62.25  72.07 ms  AS6453  United States New York New York City tatacommunications.com
 8  64.86.62.25  72.18 ms  AS6453  United States New York New York City tatacommunications.com
 9  209.58.75.217  72.03 ms  AS6453  United States New York New York City tatacommunications.com
10  209.58.75.217  72.09 ms  AS6453  United States New York New York City tatacommunications.com
11  66.198.181.100  71.98 ms  AS6453  United States New York New York City tatacommunications.com


Traceroute to United States, San Jose China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  59.43.245.26  143.01 ms  *  China Hong Kong ChinaTelecom
 6  59.43.245.26  140.32 ms  *  China Hong Kong ChinaTelecom
 7  218.30.33.17  189.01 ms  AS4134  United States ctamericas.com


Traceroute to United States, San Jose NTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 23.11.26.62 (23.11.26.62), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  5.52 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  4.26.1.153  0.60 ms  AS3356  United States California Los Angeles level3.com
 5  *
 6  129.250.9.93  1.23 ms  AS2914  NTT.COM BACKBONE ntt.com
 7  129.250.3.237  0.98 ms  AS2914  United States California Los Angeles ntt.com
 8  129.250.4.150  8.23 ms  AS2914  United States California San Jose ntt.com
 9  129.250.3.27  10.97 ms  AS2914  NTT.COM BACKBONE ntt.com
10  129.250.3.163  10.55 ms  AS2914  NTT.COM BACKBONE ntt.com
11  23.11.26.62  11.63 ms  AS2914  United States California San Jose akamai.com


Traceroute to United States, Fremont HE (TCP Mode, Max 30 Hop)
============================================================
traceroute to 72.52.104.74 (72.52.104.74), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  8.50 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  192.254.81.31  3.16 ms  AS21859  United States California Los Angeles zenlayer.com
 5  206.72.210.122  0.77 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 6  184.105.81.101  9.08 ms  AS6939  United States California Palo Alto he.net
 7  184.105.222.89  11.11 ms  AS6939  United States California Fremont he.net
 8  72.52.104.74  9.78 ms  AS6939  United States California Fremont he.net


Traceroute to United States, Las Vegas Level3 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 205.216.62.38 (205.216.62.38), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  4.26.0.125  0.53 ms  AS3356  United States California Los Angeles level3.com
 5  *
 6  63.235.41.121  19.88 ms  AS209  United States California Los Angeles centurylink.com
 7  208.168.142.98  39.59 ms  AS3561  United States Texas centurylink.com
 8  216.34.172.42  34.72 ms  AS3561  United States Texas Dallas centurylink.com
 9  216.34.164.98  34.97 ms  AS3561  United States Texas Dallas centurylink.com
10  205.216.7.204  56.34 ms  AS3561  United States Texas Dallas centurylink.com
11  *
12  205.216.62.38  57.16 ms  AS3561  United States Texas Dallas centurylink.com


Traceroute to United States, Miami ZAYO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 64.125.191.144 (64.125.191.144), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  4.26.1.153  0.56 ms  AS3356  United States California Los Angeles level3.com
 5  4.69.153.133  0.70 ms  AS3356  United States California Los Angeles level3.com
 6  4.68.70.34  0.68 ms  AS3356  LEVEL3.COM BACKBONE level3.com
 7  64.125.28.230  84.13 ms  AS6461  ZAYO.COM BACKBONE zayo.com
 8  64.125.29.52  57.12 ms  AS6461  United States Texas Dallas zayo.com
 9  64.125.26.35  58.77 ms  AS6461  ZAYO.COM BACKBONE zayo.com
10  64.125.28.10  58.76 ms  AS6461  ZAYO.COM BACKBONE zayo.com
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to United States, Ashburn Cogentco (TCP Mode, Max 30 Hop)
============================================================
traceroute to 149.127.109.166 (149.127.109.166), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  7.09 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  4.26.0.125  0.56 ms  AS3356  United States California Los Angeles level3.com
 5  *
 6  4.68.73.210  0.95 ms  AS3356  United States California Los Angeles level3.com
 7  154.54.25.149  1.09 ms  AS174  United States California Los Angeles cogentco.com
 8  154.54.45.161  13.22 ms  AS174  United States Arizona Phoenix cogentco.com
 9  154.54.42.78  21.09 ms  AS174  United States Texas El Paso cogentco.com
10  154.54.29.221  37.35 ms  AS174  United States Texas Houston cogentco.com
11  154.54.28.69  52.89 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
12  154.54.7.157  63.16 ms  AS174  United States Virginia Arlington cogentco.com
13  154.54.46.190  64.04 ms  AS174  United States Virginia Herndon cogentco.com
14  38.140.164.58  64.37 ms  AS174  United States Virginia Herndon cogentco.com
15  149.127.109.2  63.82 ms  AS174  United States Virginia Ashburn cogentco.com
16  149.127.109.166  64.18 ms  AS174  United States Virginia Ashburn cogentco.com


Traceroute to German, Telekom (TCP Mode, Max 30 Hop)
============================================================
traceroute to 80.146.191.1 (80.146.191.1), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  5.53 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  4.26.1.137  0.50 ms  AS3356  United States California Los Angeles level3.com
 5  4.69.153.117  0.73 ms  AS3356  United States California Los Angeles level3.com
 6  4.68.111.90  1.01 ms  AS3356  LEVEL3.COM BACKBONE level3.com
 7  91.23.215.105  156.72 ms  AS3320  Germany North Rhine-Westphalia telekom.de
 8  80.146.191.1  183.49 ms  AS3320  Germany North Rhine-Westphalia telekom.de


Traceroute to German, Frankfurt O2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 82.113.108.25 (82.113.108.25), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  4.26.0.125  0.58 ms  AS3356  United States California Los Angeles level3.com
 5  4.69.209.157  36.05 ms  AS3356  United States California San Jose level3.com
 6  4.59.0.226  10.95 ms  AS3356  United States California San Jose level3.com
 7  *
 8  94.142.118.238  140.55 ms  AS12956  United Kingdom London telefonica.com
 9  176.52.248.84  171.68 ms  AS12956  Germany telefonica.com
10  213.140.51.61  156.05 ms  AS12956  Germany telefonica.com
11  62.53.1.35  149.37 ms  AS6805  Germany telefonica.de
12  62.53.0.10  161.66 ms  AS6805  Germany telefonica.de
13  62.53.0.5  156.24 ms  AS6805  Germany telefonica.de
14  62.53.0.127  161.72 ms  AS6805  Germany telefonica.de
15  62.53.14.105  156.54 ms  AS6805  Germany telefonica.de
16  62.53.2.55  168.30 ms  AS6805  Germany Hesse Frankfurt telefonica.de
17  82.113.108.25  153.17 ms  AS39706  Germany Hesse Frankfurt o2online.de


Traceroute to German, Frankfurt Vodafone (TCP Mode, Max 50 Hop)
============================================================
traceroute to 139.7.146.11 (139.7.146.11), 50 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  66.110.59.193  0.57 ms  AS6453  United States California Los Angeles tatacommunications.com
 5  63.243.205.65  154.34 ms  AS6453  United States California San Jose tatacommunications.com
 6  195.2.2.154  137.11 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
 7  195.2.24.246  133.59 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
 8  *
 9  195.2.2.242  137.33 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
10  *
11  195.2.21.41  147.14 ms  AS1273  United Kingdom London vodafone.com
12  195.2.2.242  149.21 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
13  *
14  *
15  *
16  139.7.148.84  152.05 ms  AS3209  Germany vodafone.de
17  *
18  139.7.148.84  154.96 ms  AS3209  Germany vodafone.de
19  *
20  139.7.146.11  147.90 ms  AS3209  Germany vodafone.de


Traceroute to German, Frankfurt China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.85.205.101 (118.85.205.101), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  *
 5  218.30.48.173  1.49 ms  AS4134  United States California Los Angeles ctamericas.com
 6  59.43.245.26  137.54 ms  *  China Hong Kong ChinaTelecom
 7  118.85.205.101  227.76 ms  AS4134  Germany Hesse Frankfurt ChinaTelecom


Traceroute to German, Frankfurt China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 5.10.138.33 (5.10.138.33), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  90.32 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  4.26.0.49  0.53 ms  AS3356  United States California Los Angeles level3.com
 5  *
 6  *
 7  212.187.165.22  136.88 ms  AS3356  United Kingdom London level3.com
 8  59.43.180.113  143.70 ms  *  Europe Regions ChinaTelecom
 9  5.10.138.33  143.75 ms  AS4809  Germany cteurope.net


Traceroute to German, Frankfurt GTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 213.200.65.70 (213.200.65.70), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  6.29 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  *
 5  216.221.157.137  0.52 ms  AS3257  United States California Los Angeles gtt.net
 6  213.200.114.173  141.58 ms  AS3257  GTT.NET BACKBONE gtt.net
 7  213.200.65.70  145.30 ms  AS3257  GTT.NET BACKBONE gtt.net


Traceroute to German, FrankfurtCogentco (TCP Mode, Max 30 Hop)
============================================================
traceroute to 212.20.150.5 (212.20.150.5), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  4.26.1.153  0.54 ms  AS3356  United States California Los Angeles level3.com
 5  *
 6  4.68.73.210  1.19 ms  AS3356  United States California Los Angeles level3.com
 7  154.54.42.101  0.98 ms  AS174  United States California Los Angeles cogentco.com
 8  154.54.44.85  12.83 ms  AS174  United States Arizona Phoenix cogentco.com
 9  154.54.42.66  21.28 ms  AS174  United States Texas El Paso cogentco.com
10  154.54.30.161  37.48 ms  AS174  United States Texas Houston cogentco.com
11  154.54.28.69  52.98 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
12  154.54.7.157  63.10 ms  AS174  United States Virginia Arlington cogentco.com
13  154.54.40.109  65.97 ms  AS174  United States New York New York City cogentco.com
14  154.54.42.86  136.33 ms  AS174  United Kingdom London cogentco.com
15  130.117.51.42  142.69 ms  AS174  Netherlands North Holland Amsterdam cogentco.com
16  130.117.0.122  155.37 ms  AS174  COGENTCO.COM BACKBONE cogentco.com
17  154.54.56.34  150.05 ms  AS174  Germany Hesse Frankfurt cogentco.com
18  212.20.150.5  153.99 ms  AS174  Germany cogentco.com


Traceroute to United Kingdom, Vodafone (TCP Mode, Max 30 Hop)
============================================================
traceroute to 194.62.232.211 (194.62.232.211), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  66.110.59.193  0.63 ms  AS6453  United States California Los Angeles tatacommunications.com
 5  63.243.205.65  154.42 ms  AS6453  United States California San Jose tatacommunications.com
 6  66.110.59.9  148.75 ms  AS6453  United States California Los Angeles tatacommunications.com
 7  63.243.205.12  156.27 ms  AS6453  United States California San Jose tatacommunications.com
 8  195.2.24.33  142.26 ms  AS1273  VODAFONE.COM BACKBONE vodafone.com
 9  195.2.21.41  137.82 ms  AS1273  United Kingdom London vodafone.com
10  63.243.128.135  148.03 ms  AS6453  United States New York New York City tatacommunications.com
11  195.2.21.41  139.61 ms  AS1273  United Kingdom London vodafone.com
12  *
13  *
14  194.62.232.211  135.07 ms  AS25135  United Kingdom vodafone.com


Traceroute to United Kingdom， BT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 213.121.43.24 (213.121.43.24), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  7.90 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  4.26.1.137  0.57 ms  AS3356  United States California Los Angeles level3.com
 5  *
 6  195.50.117.30  135.92 ms  AS3356  United Kingdom London level3.com
 7  166.49.209.195  135.63 ms  AS5400  United Kingdom London bt.com
 8  109.159.249.10  136.27 ms  AS2856  United Kingdom bt.com
 9  194.72.7.69  135.17 ms  AS2856  United Kingdom London bt.com
10  *
11  *
12  *
13  *
14  *
15  213.121.43.24  143.37 ms  AS2856  United Kingdom bt.com


Traceroute to United Kingdom, London TATA (TCP Mode, Max 30 Hop)
============================================================
traceroute to 80.231.60.38 (80.231.60.38), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  209.58.85.57  0.67 ms  AS6453  United States California Los Angeles tatacommunications.com
 5  66.110.59.193  0.56 ms  AS6453  United States California Los Angeles tatacommunications.com
 6  64.86.252.27  137.90 ms  AS6453  United States California Los Angeles tatacommunications.com
 7  63.243.128.28  146.04 ms  AS6453  United States New York New York City tatacommunications.com
 8  63.243.128.70  148.08 ms  AS6453  United States New York New York City tatacommunications.com
 9  80.231.20.106  155.09 ms  AS6453  United Kingdom London tatacommunications.com
10  80.231.60.38  153.63 ms  AS6453  United Kingdom London tatacommunications.com


Traceroute to Russia, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.85.205.180 (118.85.205.180), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  6.66 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  *
 5  218.30.48.173  1.38 ms  AS4134  United States California Los Angeles ctamericas.com
 6  59.43.245.26  139.96 ms  *  China Hong Kong ChinaTelecom
 7  202.97.30.226  203.84 ms  AS4134  Russian Federation Primorsky Krai Vladivostok ChinaTelecom
 8  202.97.30.226  203.77 ms  AS4134  Russian Federation Primorsky Krai Vladivostok ChinaTelecom
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


Traceroute to Russia, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 185.75.173.17 (185.75.173.17), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  8.47 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  4.26.0.125  1.13 ms  AS3356  United States California Los Angeles level3.com
 5  *
 6  *
 7  212.187.165.22  136.67 ms  AS3356  United Kingdom London level3.com
 8  59.43.180.113  143.18 ms  *  Europe Regions ChinaTelecom
 9  185.75.173.17  177.76 ms  AS4809  Russian Federation Moscow cteurope.net


Traceroute to Russia, Moscow RT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 87.226.162.77 (87.226.162.77), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  5.85 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  4.26.0.49  0.56 ms  AS3356  United States California Los Angeles level3.com
 5  *
 6  195.122.183.218  167.54 ms  AS3356  Germany Hesse Frankfurt level3.com
 7  213.59.211.241  192.98 ms  AS12389  Russian Federation Moscow rt.ru
 8  87.226.140.2  191.03 ms  AS12389  Russian Federation Moscow rt.ru
 9  *
10  87.226.162.77  185.59 ms  AS12389  Russian Federation Moscow rt.ru


Traceroute to Russia, Moscow TTK (TCP Mode, Max 30 Hop)
============================================================
traceroute to 217.150.32.2 (217.150.32.2), 30 hops max, 60 byte packets
 1  *
 2  192.254.81.176  8.52 ms  AS21859  ZENLAYER.COM BACKBONE zenlayer.com
 3  *
 4  4.26.0.125  0.55 ms  AS3356  United States California Los Angeles level3.com
 5  4.69.163.106  148.08 ms  AS3356  Germany Hesse Frankfurt level3.com
 6  212.162.24.170  148.64 ms  AS3356  Germany Hesse Frankfurt level3.com
 7  *
 8  62.33.207.217  187.63 ms  AS20485  Russian Federation Moscow ttk.ru
 9  80.237.46.177  193.02 ms  AS20485  Russian Federation Moscow ttk.ru
10  217.150.32.243  193.42 ms  AS20485  Russian Federation Moscow ttk.ru
11  *
12  217.150.32.2  187.93 ms  AS20485  Russian Federation Moscow ttk.ru


Traceroute to Russia, Moscow MTS (TCP Mode, Max 30 Hop)
============================================================
traceroute to 195.34.32.71 (195.34.32.71), 30 hops max, 60 byte packets
 1  *
 2  *
 3  *
 4  192.254.81.27  1.36 ms  AS21859  United States California Los Angeles zenlayer.com
 5  206.72.210.180  0.64 ms  AS7713,AS9009  United States California Los Angeles coresite.com
 6  212.188.28.129  251.20 ms  AS8359  MTS.RU BACKBONE mts.ru
 7  195.34.59.113  137.04 ms  AS8359  MTS.RU BACKBONE mts.ru
 8  212.188.42.18  177.46 ms  AS8359  Russian Federation mts.ru
 9  212.188.2.190  177.79 ms  AS8359  Russian Federation Moscow mts.ru
10  195.34.53.5  177.73 ms  AS8359  Russian Federation Moscow mts.ru
11  195.34.53.213  178.41 ms  AS8359  Russian Federation Moscow mts.ru
12  195.34.32.71  177.34 ms  AS8359  Russian Federation Moscow mts.ru
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;BandwagonHOST的优点就是稳定，这款双十一特价机从购买以来，从未有过宕机的情况发生。现如今他家已经不走廉价路线，因此想追求稳定的站长可以考虑了。&lt;/p&gt;
</content:encoded></item><item><title>UltraVPS评测：2019黑五NVME款</title><link>https://yushum.com/posts/ultravps%E8%AF%84%E6%B5%8B2019%E9%BB%91%E4%BA%94nvme%E6%AC%BE/</link><guid isPermaLink="true">https://yushum.com/posts/ultravps%E8%AF%84%E6%B5%8B2019%E9%BB%91%E4%BA%94nvme%E6%AC%BE/</guid><pubDate>Sat, 30 Nov 2019 17:53:35 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;UltraVPS.eu是www.providerservice.com旗下的VPS子品牌，拥有十几年历史的老牌商家,早期quickweb家的德国服务器就托管在他们家机房，旗下的UltraVPS.eu采用KVM虚拟架构，硬盘采用SSD和HDD，数据中心包括洛杉矶QN、达拉斯、德国和荷兰，在LET拥有很好的口碑，这家的优势就是硬盘IO比较高、客服相应比较快。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/image-1-1024x481.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;配置信息&lt;/h2&gt;
&lt;h3&gt;系统信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;系统名称:		Debian GNU/Linux &quot;Buster&quot; 10.2 (x86_64)
 CPU型号:		Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz
 CPU缓存大小:		4096 KB
 CPU数量:		2 vCPU
 虚拟化类型:		KVM
 内存使用率:		89.31 MB / 3.85 GB
 Swap使用率:		0 KB / 4.00 GB
 磁盘使用率:		947.61 MB / 6127.17 MB
 引导设备:		/dev/vda1
 系统负载(1/5/15min):	0.07 0.02 0.00
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;网络信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;IPV4 - 本机IP:		80.83.*.*
 IPV4 - ASN信息:	AS29141 (德国 北莱茵－威斯特法伦州 杜塞尔多夫 )
 IPV4 - 运营商:		providerdienste.de
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;流媒体解锁测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;HBO Now:		否
 巴哈姆特動畫瘋:	        否
 哔哩哔哩-港澳台限定:	否
 哔哩哔哩-台湾限定:	否
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;CPU性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 线程测试:	715 分
 2 线程测试:	1435 分
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;内存性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 线程测试-顺序读:	4392.01K ops (4090.38 MB/s)
 1 线程测试-顺序写:	4413.67K ops (4110.55 MB/s)
 1 线程测试-随机读:	1239.53K ops (1154.40 MB/s)
 1 线程测试-随机写:	1239.06K ops (1153.96 MB/s)
 2 线程测试-顺序读:	7502.74K ops (6987.48 MB/s)
 2 线程测试-顺序写:	7532.19K ops (7014.90 MB/s)
 2 线程测试-随机读:	334.02K ops (311.08 MB/s)
 2 线程测试-随机写:	335.02K ops (312.01 MB/s)
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;磁盘性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;测试项目		写入速度				读取速度
 10MB-4K块		18.4 MB/s (4503 IOPS, 0.57 秒)		49.5 MB/s (12080 IOPS, 0.21 秒)
 10MB-1M块		580 MB/s (553 IOPS, 0.02 秒)		1.2 GB/s (1171 IOPS, 0.01 秒)
 100MB-4K块		18.5 MB/s (4510 IOPS, 5.68 秒)		36.6 MB/s (8931 IOPS, 2.87 秒)
 100MB-1M块		808 MB/s (770 IOPS, 0.13 秒)		2.2 GB/s (2081 IOPS, 0.05 秒)
 1000MB-4K块		18.7 MB/s (4577 IOPS, 55.93 秒)		40.9 MB/s (9988 IOPS, 25.63 秒)
 1000MB-1M块		513 MB/s (489 IOPS, 2.04 秒)		1.7 GB/s (1657 IOPS, 0.60 秒)
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;网速测试&lt;/h2&gt;
&lt;h3&gt;Speedtest.net 网速测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;节点名称		上传速度	下载速度	Ping延迟
 距离最近测速点		162.03 MB/s	252.08 MB/s	2.064 ms
 东北-吉林联通		2.02 MB/s	18.04 MB/s	434.627 ms
 东北-沈阳移动		0.21 MB/s	0.82 MB/s	331.594 ms
 华北-山东联通		0.31 MB/s	0.85 MB/s	734.663 ms
 华中-南京联通		1.62 MB/s	1.55 MB/s	244.128 ms
 华中-杭州电信		0.50 MB/s	0.58 MB/s	369.377 ms
 华中-杭州移动		0.01 MB/s	0.00 MB/s	601266.906 ms
 华东-上海联通		1.01 MB/s	1.84 MB/s	358.722 ms
 华东-上海移动		0.38 MB/s	0.69 MB/s	1315.165 ms
 华南-广州电信		 MB/s	 MB/s	No ms
 西南-重庆联通		 MB/s	 MB/s	No ms
 西南-南宁移动		0.01 MB/s	0.00 MB/s	1202045.265 ms
 西北-兰州联通		2.10 MB/s	4.71 MB/s	273.375 ms
 西北-兰州电信		0.27 MB/s	0.21 MB/s	771.859 ms
 西北-兰州移动		3.82 MB/s	6.39 MB/s	2126.058 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;IPv4路由追踪测试&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;路由追踪到 北京联通 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 60 byte packets
 1  130.255.76.1  0.64 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.63 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.86 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  2.35 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  *
 6  *
 7  4.26.2.166  240.13 ms  AS3356  美国 加利福尼亚州 洛杉矶 level3.com
 8  219.158.102.85  236.26 ms  AS4837  中国 北京 联通
 9  219.158.3.181  248.36 ms  AS4837  中国 北京 联通
10  219.158.5.153  314.67 ms  AS4837  中国 北京 联通
11  124.65.194.186  287.04 ms  AS4808  中国 北京 联通
12  61.148.157.170  276.18 ms  AS4808  中国 北京 联通
13  124.65.194.50  295.57 ms  AS4808  中国 北京 联通
14  61.135.113.154  300.35 ms  AS4808  中国 北京 联通
15  *
16  *
17  123.125.99.1  277.63 ms  AS4808  中国 北京 联通


路由追踪到 北京电信 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 60 byte packets
 1  130.255.76.1  0.68 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.70 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.85 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.06 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  62.156.131.50  5.24 ms  AS3320  德国 黑森州 法兰克福 telekom.de
 6  80.157.129.186  6.90 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  202.97.52.73  139.20 ms  AS4134  中国 电信
 8  202.97.12.169  147.88 ms  AS4134  中国 北京 电信
 9  *
10  *
11  180.149.128.1  168.92 ms  AS23724  中国 北京 电信


路由追踪到 北京移动 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.136.88.117 (211.136.88.117), 30 hops max, 60 byte packets
 1  130.255.76.1  1.55 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.80 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.28 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  1.50 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  154.54.37.37  5.13 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  154.25.12.61  5.78 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 7  149.29.9.162  21.71 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 8  223.120.10.153  29.95 ms  AS58453  德国 黑森州 法兰克福 移动
 9  *
10  *
11  *
12  221.176.27.253  272.89 ms  AS9808  中国 北京 移动
13  *
14  211.136.88.117  278.75 ms  AS56048  中国 北京 移动


路由追踪到 上海联通 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 58.247.0.49 (58.247.0.49), 30 hops max, 60 byte packets
 1  130.255.76.1  0.63 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  1.25 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.90 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.36 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  *
 6  4.69.209.165  145.25 ms  AS3356  美国 加利福尼亚州 圣何塞 level3.com
 7  4.53.208.118  347.35 ms  AS3356  美国 加利福尼亚州 圣何塞 level3.com
 8  219.158.116.237  346.69 ms  AS4837  中国 上海 联通
 9  219.158.113.134  352.53 ms  AS4837  中国 上海 联通
10  *
11  *
12  58.247.0.49  339.51 ms  AS17621  中国 上海 联通


路由追踪到 上海电信 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 180.153.28.1 (180.153.28.1), 30 hops max, 60 byte packets
 1  130.255.76.1  0.73 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.56 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.78 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.29 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  194.25.6.110  5.31 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  80.157.129.186  5.94 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  202.97.79.133  187.57 ms  *  中国 上海 电信
 8  202.97.12.189  230.23 ms  AS4134  中国 电信
 9  *
10  101.95.120.133  211.20 ms  AS4812  中国 上海 电信
11  101.95.207.6  313.80 ms  AS4812  中国 上海 电信
12  124.74.232.58  220.67 ms  AS4812  中国 上海 电信
13  101.227.255.34  226.21 ms  AS4812  中国 上海 电信
14  *
15  180.153.28.1  223.00 ms  AS4812  中国 上海 电信


路由追踪到 上海移动 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 60 byte packets
 1  130.255.76.1  0.66 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.57 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.32 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  2.03 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  130.117.48.61  4.98 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.50.5  82.68 ms  AS174  荷兰 北荷兰省 阿姆斯特丹 cogentco.com
 7  130.117.51.41  81.98 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 8  154.54.42.85  82.65 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 9  154.54.43.109  80.40 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
10  154.54.24.222  100.89 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
11  154.54.28.130  113.76 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
12  154.54.28.70  111.89 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
13  154.54.42.77  137.37 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
14  154.54.42.77  138.54 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
15  154.54.3.70  150.16 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
16  154.54.27.118  146.93 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
17  38.19.140.58  185.39 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
18  223.118.10.153  195.81 ms  AS58453  美国 加利福尼亚州 洛杉矶 移动
19  221.183.25.122  309.14 ms  AS9808  中国 广东 广州 移动
20  221.183.25.118  299.78 ms  AS9808  中国 广东 广州 移动
21  221.176.18.109  327.75 ms  AS9808  中国 广东 广州 移动
22  *
23  *
24  221.183.55.22  334.57 ms  AS9808  中国 上海 移动


路由追踪到 广州联通 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 60 byte packets
 1  130.255.76.1  0.63 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.80 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.81 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.46 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  *
 6  4.69.209.253  142.03 ms  AS3356  美国 加利福尼亚州 洛杉矶 level3.com
 7  4.26.0.122  314.37 ms  AS3356  美国 加利福尼亚州 洛杉矶 level3.com
 8  219.158.97.209  325.82 ms  AS4837  中国 广东 广州 联通
 9  219.158.96.206  333.89 ms  AS4837  中国 广东 广州 联通
10  219.158.103.217  335.30 ms  AS4837  中国 广东 广州 联通
11  120.83.0.58  330.27 ms  AS17816  中国 广东 广州 联通
12  120.80.175.70  333.08 ms  AS17622  中国 广东 广州 联通
13  210.21.4.130  326.31 ms  AS17622  中国 广东 广州 联通


路由追踪到 广州电信 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 60 byte packets
 1  130.255.76.1  0.70 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.72 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  1.03 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.33 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  194.25.6.102  5.73 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  80.157.129.186  5.69 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  *
 8  202.97.12.22  199.39 ms  AS4134  中国 广东 广州 电信
 9  202.97.94.129  217.92 ms  AS4134  中国 广东 广州 电信
10  113.108.209.1  198.78 ms  AS58466  中国 广东 广州 电信


路由追踪到 广州移动 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.139.129.5 (211.139.129.5), 30 hops max, 60 byte packets
 1  130.255.76.1  1.63 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.60 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.81 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.23 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  62.154.16.146  5.27 ms  AS3320  德国 telekom.de
 6  62.157.249.186  4.62 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  129.250.4.10  15.29 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 8  129.250.7.63  187.03 ms  AS2914  新加坡 ntt.com
 9  129.250.7.67  212.74 ms  AS2914  中国 香港 ntt.com
10  129.250.6.92  204.45 ms  AS2914  中国 香港 ntt.com
11  *
12  *
13  *
14  221.183.55.78  223.69 ms  AS9808  中国 广东 广州 移动
15  221.176.24.137  216.89 ms  AS9808  中国 广东 广州 移动
16  *
17  *
18  120.198.206.194  265.57 ms  AS56040  中国 广东 广州 移动
19  211.136.208.49  264.88 ms  AS56040  中国 广东 广州 移动
20  211.139.129.5  217.95 ms  AS56040  中国 广东 广州 移动


路由追踪到 上海联通精品网 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 60 byte packets
 1  130.255.76.1  110.62 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.70 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.39 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  1.42 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  130.117.48.61  5.84 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.50.5  81.29 ms  AS174  荷兰 北荷兰省 阿姆斯特丹 cogentco.com
 7  130.117.51.41  81.09 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 8  154.54.42.85  81.86 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 9  154.54.43.109  82.59 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
10  154.54.24.222  101.50 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
11  154.54.28.130  110.84 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
12  154.54.30.162  131.40 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
13  154.54.42.77  138.11 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
14  154.54.45.162  146.76 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
15  154.54.42.102  146.75 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
16  *
17  *
18  218.105.2.133  289.94 ms  AS9929  中国 广东 广州 联通
19  218.105.2.210  257.93 ms  AS9929  中国 上海 联通
20  210.13.75.138  267.09 ms  AS9929  中国 上海 联通
21  210.13.66.237  278.14 ms  AS9929  中国 上海 联通
22  *
23  210.13.66.238  264.61 ms  AS9929  中国 上海 联通


路由追踪到 上海电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 60 byte packets
 1  130.255.76.1  1.61 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.60 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  1.05 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.02 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  80.157.129.202  1.20 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  *
 7  *
 8  212.187.165.22  14.08 ms  AS3356  英国 伦敦 level3.com
 9  59.43.246.221  178.46 ms  *  中国 上海 电信
10  *
11  59.43.138.69  186.31 ms  *  中国 上海 电信
12  101.95.88.38  202.25 ms  AS4812  中国 上海 电信
13  58.32.0.1  180.97 ms  AS4812  中国 上海 电信


路由追踪到 北京鹏博士/电信通 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 60 byte packets
 1  130.255.76.1  0.74 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  56.55 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.87 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  2.26 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  *
 6  *
 7  4.26.3.26  237.56 ms  AS3356  美国 加利福尼亚州 洛杉矶 level3.com
 8  219.158.16.97  236.76 ms  AS4837  中国 北京 联通
 9  219.158.16.77  241.41 ms  AS4837  中国 北京 联通
10  219.158.18.65  293.34 ms  AS4837  中国 北京 联通
11  124.65.194.26  293.86 ms  AS4808  中国 北京 联通
12  124.65.61.126  300.04 ms  AS4808  中国 北京 联通
13  202.106.37.90  293.96 ms  AS4808  中国 北京 联通
14  124.65.47.202  317.47 ms  AS4808  中国 北京 联通
15  202.99.1.122  281.55 ms  AS17964  中国 北京 鹏博士/电信/联通
16  *
17  218.241.253.134  278.88 ms  AS4847  中国 北京 鹏博士/电信/联通
18  211.167.230.100  286.44 ms  AS4808,AS17964  中国 北京 鹏博士


路由追踪到 北京教育网 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 60 byte packets
 1  130.255.76.1  0.64 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.76 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.42 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  1.46 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  130.117.48.61  4.97 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.50.5  82.42 ms  AS174  荷兰 北荷兰省 阿姆斯特丹 cogentco.com
 7  130.117.51.41  81.23 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 8  154.54.42.85  82.86 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 9  154.54.40.110  90.30 ms  AS174  美国 弗吉尼亚州 阿灵顿 cogentco.com
10  154.54.24.222  100.18 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
11  154.54.28.130  113.47 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
12  154.54.30.162  131.72 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
13  154.54.29.222  131.44 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
14  154.54.45.162  149.17 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
15  154.54.42.102  147.77 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
16  154.54.25.150  147.93 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
17  38.88.196.186  201.43 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
18  101.4.117.97  363.27 ms  AS4538  中国 北京 教育网
19  *
20  101.4.114.197  344.58 ms  AS4538  中国 北京 教育网
21  202.112.38.82  343.67 ms  AS4538  中国 北京 教育网
22  202.205.109.205  344.75 ms  AS4538  中国 北京 赛尔网络信息资源部 教育网


路由追踪到 北京科技网 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 60 byte packets
 1  130.255.76.1  3.63 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  1.71 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.15 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  1.59 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  130.117.48.61  4.52 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.2.242  4.85 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 7  130.117.2.142  13.64 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 8  130.117.49.154  23.99 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 9  154.54.1.118  193.14 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
10  *
11  159.226.254.5  227.33 ms  AS7497  中国 北京 科技网
12  159.226.254.1  228.47 ms  AS7497  中国 北京 科技网


路由追踪到 北京广电网 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 60 byte packets
 1  130.255.76.1  1.25 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  58.39 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.86 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.16 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  194.25.6.162  6.66 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  80.157.129.186  8.54 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  202.97.52.73  136.32 ms  AS4134  中国 电信
 8  202.97.14.213  149.34 ms  AS4134  中国 北京 电信
 9  *
10  *
11  *
12  60.247.93.254  218.72 ms  AS4847  中国 北京 uecom.com.cn 电信
13  211.156.140.17  226.14 ms  AS7641  中国 北京 chinabtn.com 广电网/联通/电信


路由追踪到 香港联通 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.160.95.218 (203.160.95.218), 30 hops max, 60 byte packets
 1  130.255.76.1  1.09 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.58 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.24 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  1.68 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  154.54.37.37  5.27 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.1.118  4.95 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 7  154.54.37.30  5.66 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 8  154.25.9.46  5.74 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 9  149.14.68.166  6.83 ms  AS174  德国 黑森州 法兰克福 cogentco.com
10  217.150.59.246  169.67 ms  AS20485  俄罗斯 ttk.ru
11  217.150.59.245  170.02 ms  AS20485  俄罗斯 ttk.ru
12  43.252.86.65  176.18 ms  AS10099  中国 香港 联通
13  119.252.139.14  169.75 ms  AS10099  中国 香港 联通
14  202.77.22.89  168.05 ms  AS10099  中国 香港 联通
15  203.160.95.218  171.34 ms  AS10099  中国 香港 联通


路由追踪到 香港电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.215.232.173 (203.215.232.173), 30 hops max, 60 byte packets
 1  130.255.76.1  1.55 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.82 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.87 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.16 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  194.25.6.162  5.70 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  80.157.129.186  7.99 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  *
 8  203.215.232.173  261.36 ms  AS4134  中国 香港 电信


路由追踪到 香港电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.8.25.187 (203.8.25.187), 30 hops max, 60 byte packets
 1  130.255.76.1  1.47 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.63 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.81 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  213.198.77.65  3.73 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.4.238  214.44 ms  AS2914  NTT.COM 骨干网 ntt.com
 6  *
 7  129.250.6.6  5.06 ms  AS2914  NTT.COM 骨干网 ntt.com
 8  129.250.7.63  178.23 ms  AS2914  新加坡 ntt.com
 9  129.250.7.67  219.02 ms  AS2914  中国 香港 ntt.com
10  129.250.6.98  215.34 ms  AS2914  中国 香港 ntt.com
11  129.250.6.123  213.44 ms  AS2914  中国 香港 ntt.com
12  203.131.241.70  212.33 ms  AS2914  中国 香港 ntt.com
13  59.43.187.26  221.48 ms  *  中国 香港 电信
14  203.8.25.187  211.88 ms  AS4809  中国 香港 电信


路由追踪到 香港移动 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.142.105.9 (203.142.105.9), 30 hops max, 60 byte packets
 1  130.255.76.1  0.69 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.59 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.28 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  1.49 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  130.117.48.61  4.96 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.2.242  4.86 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 7  154.54.56.93  12.28 ms  AS174  英国 伦敦 cogentco.com
 8  154.54.58.186  12.09 ms  AS174  英国 伦敦 cogentco.com
 9  154.54.60.242  12.33 ms  AS174  欧洲地区 cogentco.com
10  149.14.81.186  15.44 ms  AS174  英国 伦敦 cogentco.com
11  223.118.18.162  201.97 ms  AS58453  中国 香港 移动
12  223.119.0.2  201.84 ms  AS58453  中国 香港 移动
13  203.142.100.165  201.91 ms  AS9231  中国 香港 移动
14  203.142.100.22  202.37 ms  AS9231  中国 香港 移动
15  203.142.105.9  202.60 ms  AS9231  中国 香港 移动


路由追踪到 香港HGC (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 218.188.104.30 (218.188.104.30), 30 hops max, 60 byte packets
 1  130.255.76.1  116.59 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.57 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.40 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  1.40 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  130.117.48.61  5.03 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.50.5  80.97 ms  AS174  荷兰 北荷兰省 阿姆斯特丹 cogentco.com
 7  130.117.51.41  81.46 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 8  154.54.42.85  83.75 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 9  154.54.40.110  90.64 ms  AS174  美国 弗吉尼亚州 阿灵顿 cogentco.com
10  154.54.24.222  99.96 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
11  154.54.28.130  113.66 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
12  154.54.28.70  112.64 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
13  154.54.42.65  139.66 ms  AS174  美国 亚利桑那州 凤凰城 cogentco.com
14  154.54.42.65  138.05 ms  AS174  美国 亚利桑那州 凤凰城 cogentco.com
15  154.54.45.162  148.91 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
16  38.104.83.42  144.12 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
17  218.189.5.170  141.95 ms  AS9304  美国 加利福尼亚州 洛杉矶 hgc.com.hk
18  218.189.5.146  143.32 ms  AS9304  美国 加利福尼亚州 洛杉矶 hgc.com.hk
19  218.189.5.24  297.64 ms  AS9304  中国 香港 hgc.com.hk
20  218.189.5.24  297.69 ms  AS9304  中国 香港 hgc.com.hk
21  218.188.104.30  305.80 ms  AS9304  中国 香港 hgc.com.hk


路由追踪到 香港HKBN (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 210.6.23.239 (210.6.23.239), 30 hops max, 60 byte packets
 1  130.255.76.1  4.83 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.52 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.34 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  1.41 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  130.117.48.61  4.58 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.2.242  5.03 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 7  130.117.2.142  13.09 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 8  130.117.49.154  24.63 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 9  154.54.1.118  193.20 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
10  154.18.8.154  194.42 ms  AS174  中国 香港 cogentco.com
11  61.244.225.68  194.33 ms  AS9269  中国 香港 hkbn.com.hk
12  203.186.235.137  200.61 ms  AS9269  中国 香港 hkbn.com.hk
13  203.80.215.70  194.89 ms  AS9269  中国 香港 hkbn.com.hk
14  210.6.23.239  194.56 ms  AS9269  中国 香港 hkbn.com.hk


路由追踪到 香港PCCW (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 202.85.125.60 (202.85.125.60), 30 hops max, 60 byte packets
 1  130.255.76.1  0.99 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.73 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  1.12 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.42 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  217.239.45.238  5.14 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  80.157.130.110  6.30 ms  AS3320  德国 telekom.de
 7  *
 8  63.223.15.174  265.74 ms  AS3491  中国 香港 pccw.com
 9  63.218.61.174  265.72 ms  AS3491  中国 香港 pccw.com
10  202.153.103.69  281.43 ms  AS9925  中国 香港 pbase.net
11  202.153.99.212  265.24 ms  AS9925  中国 香港 pbase.net
12  203.215.244.33  273.76 ms  AS9925  中国 香港 pbase.net
13  202.85.125.60  258.87 ms  AS9925  中国 香港 pccw.com


路由追踪到 香港TGT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 61.4.15.137 (61.4.15.137), 30 hops max, 60 byte packets
 1  130.255.76.1  0.61 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.76 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.38 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  1.35 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  130.117.48.61  5.09 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.50.5  81.32 ms  AS174  荷兰 北荷兰省 阿姆斯特丹 cogentco.com
 7  130.117.51.41  81.37 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 8  154.54.42.85  83.45 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 9  154.54.43.109  82.55 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
10  154.54.24.222  99.59 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
11  154.54.28.130  111.65 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
12  154.54.30.162  131.47 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
13  154.54.42.65  138.90 ms  AS174  美国 亚利桑那州 凤凰城 cogentco.com
14  154.54.42.65  137.41 ms  AS174  美国 亚利桑那州 凤凰城 cogentco.com
15  154.54.42.102  146.93 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
16  154.54.42.102  150.00 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
17  38.142.238.218  151.21 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
18  62.216.136.13  296.16 ms  AS15412  日本 东京都 东京 globalcloudxchange.com
19  85.95.27.169  302.30 ms  AS15412  中国 香港 globalcloudxchange.com
20  85.95.26.141  301.87 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
21  62.216.137.29  299.11 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
22  203.78.72.112  302.40 ms  AS10098  中国 香港 towngastelecom.com
23  203.78.72.112  302.03 ms  AS10098  中国 香港 towngastelecom.com
24  203.78.73.73  302.37 ms  AS10098  中国 香港 towngastelecom.com
25  203.78.72.177  294.46 ms  AS10098  中国 香港 towngastelecom.com
26  202.123.74.34  297.69 ms  AS10098  中国 香港 towngastelecom.com
27  202.123.74.34  298.18 ms  AS10098  中国 香港 towngastelecom.com
28  202.123.74.2  308.97 ms  AS10098  中国 香港 towngastelecom.com
29  *
30  *


路由追踪到 香港WTT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 59.152.252.242 (59.152.252.242), 30 hops max, 60 byte packets
 1  130.255.76.1  1.46 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  21.20 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.213  4.72 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  80.249.209.150  5.35 ms  AS1200,AS9009  荷兰 北荷兰省 阿姆斯特丹 ams-ix.net
 5  72.52.92.213  11.95 ms  AS6939  英国 伦敦 he.net
 6  72.52.92.166  80.05 ms  AS6939  美国 纽约州 纽约 he.net
 7  184.105.81.218  139.12 ms  AS6939  美国 加利福尼亚州 圣何塞 he.net
 8  64.71.148.166  258.96 ms  AS6939  美国 加利福尼亚州 费利蒙 he.net
 9  10.55.192.150  263.36 ms  *  局域网
10  1.9.241.94  248.52 ms  AS4788  TM.COM.MY 骨干网 tm.com.my
11  115.160.187.110  247.85 ms  AS9381  中国 香港 wtthk.com
12  10.104.131.158  249.50 ms  *  局域网
13  59.152.252.196  249.82 ms  AS9381  中国 香港 wtthk.com
14  59.152.252.242  248.86 ms  AS9381  中国 香港 wtthk.com


路由追踪到 新加坡电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.215.233.1 (203.215.233.1), 30 hops max, 60 byte packets
 1  130.255.76.1  0.72 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.72 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.78 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.26 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  194.25.6.114  7.02 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  80.157.129.186  6.37 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  203.215.233.1  164.39 ms  AS4134  新加坡 电信


路由追踪到 新加坡电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 183.91.61.1 (183.91.61.1), 30 hops max, 60 byte packets
 1  130.255.76.1  0.67 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  1.62 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.213  4.43 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  5.56.20.177  5.40 ms  AS201011  德国 core-backbone.com
 5  80.249.212.88  12.35 ms  AS1200,AS9009  荷兰 北荷兰省 阿姆斯特丹 ams-ix.net
 6  202.84.178.37  17.54 ms  AS4637,AS10026  英国 伦敦 telstra.com
 7  202.84.136.17  261.26 ms  AS4637,AS10026  TELSTRA.COM 骨干网 telstra.com
 8  202.84.224.190  261.64 ms  AS4637,AS10026  新加坡 telstra.com
 9  210.57.30.130  185.14 ms  AS4637,AS10026  新加坡 telstra.com
10  183.91.61.1  172.84 ms  AS4809  新加坡 电信


路由追踪到 新加坡Singtel (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 118.201.1.11 (118.201.1.11), 30 hops max, 60 byte packets
 1  130.255.76.1  0.64 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  36.35 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.213  5.58 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  5.56.20.177  4.58 ms  AS201011  德国 core-backbone.com
 5  80.255.15.166  10.40 ms  AS201011  CORE-BACKBONE.COM 骨干网 core-backbone.com
 6  195.66.225.10  9.54 ms  AS7713  英国 伦敦 linx.net
 7  203.208.166.249  240.78 ms  AS7473  新加坡 singtel.com
 8  203.208.158.186  245.96 ms  AS7473  新加坡 singtel.com
 9  203.208.175.58  254.26 ms  AS7473  新加坡 singtel.com
10  *
11  165.21.49.126  253.66 ms  AS3758  新加坡 singtel.com
12  203.125.232.130  253.28 ms  AS3758  新加坡 singtel.com
13  118.201.1.11  246.37 ms  AS3758  新加坡 singtel.com


路由追踪到 新加坡StarHub (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.116.46.162 (203.116.46.162), 30 hops max, 60 byte packets
 1  130.255.76.1  127.74 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.90 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.213  4.44 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  80.249.212.55  185.66 ms  AS1200,AS9009  荷兰 北荷兰省 阿姆斯特丹 ams-ix.net
 5  203.118.12.45  180.05 ms  AS4657  新加坡 starhub.com
 6  203.118.16.30  179.67 ms  AS4657  新加坡 starhub.com
 7  203.117.188.42  177.85 ms  AS4657  新加坡 starhub.com
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


路由追踪到 新加坡M1 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.123.8.123 (203.123.8.123), 30 hops max, 60 byte packets
 1  130.255.76.1  0.68 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  24.85 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.32 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  1.59 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  130.117.48.61  4.61 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.50.5  5.42 ms  AS174  荷兰 北荷兰省 阿姆斯特丹 cogentco.com
 7  154.54.56.174  13.04 ms  AS174  法国 法兰西岛大区 巴黎 cogentco.com
 8  130.117.50.166  23.70 ms  AS174  法国 普罗旺斯－阿尔卑斯－蓝色海岸大区 马赛 cogentco.com
 9  154.54.85.18  160.76 ms  AS174  新加坡 cogentco.com
10  154.18.18.162  160.54 ms  AS174  新加坡 cogentco.com
11  203.211.158.58  160.95 ms  AS17547  新加坡 m1.com.sg
12  203.211.158.118  218.24 ms  AS17547  新加坡 m1.com.sg
13  203.123.8.123  161.44 ms  AS17547  新加坡 m1.com.sg


路由追踪到 新加坡AWS (TCP 模式, 最大 50 跃点)
============================================================
traceroute to 13.228.0.251 (13.228.0.251), 50 hops max, 60 byte packets
 1  130.255.76.1  0.74 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.74 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.90 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  213.198.77.65  4.02 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.4.250  178.20 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  *
 7  129.250.6.6  5.34 ms  AS2914  NTT.COM 骨干网 ntt.com
 8  129.250.7.63  187.45 ms  AS2914  新加坡 ntt.com
 9  129.250.3.100  169.92 ms  AS2914  新加坡 ntt.com
10  129.250.2.92  187.59 ms  AS2914  新加坡 ntt.com
11  116.51.17.130  170.28 ms  AS2914  新加坡 ntt.com
12  *
13  *
14  52.93.10.13  179.70 ms  *  新加坡 amazon.com
15  52.93.11.13  179.14 ms  *  新加坡 amazon.com
16  52.93.11.56  180.51 ms  *  新加坡 amazon.com
17  52.93.8.181  170.98 ms  *  新加坡 amazon.com
18  203.83.223.192  179.16 ms  AS16509,AS38895  新加坡 amazon.com
19  *
20  *
21  *
22  *
23  *
24  13.228.0.251  187.46 ms  AS16509  新加坡 amazon.com


路由追踪到 日本NTT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 61.213.155.84 (61.213.155.84), 30 hops max, 60 byte packets
 1  130.255.76.1  92.41 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  58.01 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  1.81 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  213.198.77.65  4.41 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.4.238  269.63 ms  AS2914  NTT.COM 骨干网 ntt.com
 6  *
 7  129.250.6.38  4.46 ms  AS2914  NTT.COM 骨干网 ntt.com
 8  129.250.4.96  90.38 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
 9  129.250.3.189  153.36 ms  AS2914  NTT.COM 骨干网 ntt.com
10  129.250.3.192  259.86 ms  AS2914  日本 东京都 东京 ntt.com
11  129.250.3.28  270.41 ms  AS2914  日本 东京都 东京 ntt.com
12  61.213.179.34  272.29 ms  AS2914  日本 东京都 东京 ntt.com
13  *
14  *
15  61.213.155.84  296.02 ms  AS2914  日本 东京都 东京 ntt.com


路由追踪到 日本IIJ (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 202.232.15.70 (202.232.15.70), 30 hops max, 60 byte packets
 1  130.255.76.1  0.63 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.61 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  1.18 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.29 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  194.25.6.206  12.58 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  210.130.133.113  12.36 ms  AS2497  IIJ.AD.JP 骨干网 iij.ad.jp
 7  58.138.98.137  201.96 ms  AS2497  日本 东京都 东京 iij.ad.jp
 8  58.138.102.210  201.18 ms  AS2497  日本 东京都 东京 iij.ad.jp
 9  210.130.142.114  205.14 ms  AS2497  日本 东京都 iij.ad.jp
10  202.232.15.70  203.97 ms  AS2497  日本 iij.ad.jp


路由追踪到 日本SoftBank (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 210.175.32.26 (210.175.32.26), 30 hops max, 60 byte packets
 1  130.255.76.1  0.66 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  1.57 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.81 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  0.99 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  62.154.32.129  9.31 ms  AS3320  德国 telekom.de
 6  62.154.32.129  6.92 ms  AS3320  德国 telekom.de
 7  80.150.168.162  9.48 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 8  213.155.135.86  152.98 ms  AS1299  TELIA.COM 骨干网 telia.com
 9  62.115.122.161  150.98 ms  AS1299  TELIA.COM 骨干网 telia.com
10  *
11  62.115.119.229  156.30 ms  AS1299  TELIA.COM 骨干网 telia.com
12  213.248.88.78  255.24 ms  AS1299  美国 加利福尼亚州 圣何塞 telia.com
13  *
14  143.90.232.241  259.17 ms  AS4725  日本 东京都 东京 odn.ne.jp
15  143.90.47.9  262.48 ms  AS4725  日本 odn.ne.jp
16  143.90.26.226  251.46 ms  AS4725  日本 odn.ne.jp
17  143.90.54.30  245.03 ms  AS4725  日本 odn.ne.jp
18  210.175.32.123  261.07 ms  AS4725  日本 odn.ne.jp
19  210.175.32.26  255.29 ms  AS4725  日本 odn.ne.jp


路由追踪到 日本KDDI (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 106.162.242.108 (106.162.242.108), 30 hops max, 60 byte packets
 1  130.255.76.1  0.60 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.69 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.38 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  1.41 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  130.117.48.61  4.97 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.2.242  4.49 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 7  154.54.56.93  101.23 ms  AS174  英国 伦敦 cogentco.com
 8  154.54.77.246  157.51 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 9  66.28.4.237  100.53 ms  AS174  美国 纽约州 奥尔巴尼 cogentco.com
10  154.54.31.225  105.66 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
11  154.54.6.221  100.21 ms  AS174  美国 伊利诺伊州 芝加哥 cogentco.com
12  154.54.6.221  156.78 ms  AS174  美国 伊利诺伊州 芝加哥 cogentco.com
13  154.54.5.89  123.64 ms  AS174  美国 科罗拉多州 丹佛 cogentco.com
14  154.54.41.145  141.69 ms  AS174  美国 科罗拉多州 丹佛 cogentco.com
15  154.54.44.141  151.84 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
16  154.54.43.10  151.11 ms  AS174  美国 加利福尼亚州 圣何塞 cogentco.com
17  38.142.245.138  162.80 ms  AS174  美国 加利福尼亚州 圣何塞 cogentco.com
18  111.87.3.225  155.17 ms  AS2516  美国 加利福尼亚州 帕洛阿尔托 kddi.com
19  106.187.13.29  264.19 ms  AS2516  日本 kddi.com
20  106.187.13.5  264.11 ms  AS2516  日本 东京都 东京 kddi.com
21  111.107.101.98  257.49 ms  AS2516  日本 kddi.com
22  111.87.220.242  265.22 ms  AS2516  日本 kddi.com
23  106.162.242.108  254.27 ms  AS2516  日本 kddi.com


路由追踪到 日本电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.215.236.3 (203.215.236.3), 30 hops max, 60 byte packets
 1  130.255.76.1  0.93 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.68 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.85 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.02 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  217.239.50.50  5.73 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  80.157.129.186  7.45 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  202.97.58.61  247.17 ms  AS4134  中国 上海 电信
 8  202.97.6.78  256.68 ms  AS4134  日本 东京都 东京 电信
 9  203.215.236.3  246.06 ms  AS4134  日本 东京都 东京 电信


路由追踪到 日本电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 202.55.27.4 (202.55.27.4), 30 hops max, 60 byte packets
 1  130.255.76.1  0.59 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.60 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.213  4.62 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  5.56.20.177  9.50 ms  AS201011  德国 core-backbone.com
 5  80.249.212.88  14.02 ms  AS1200,AS9009  荷兰 北荷兰省 阿姆斯特丹 ams-ix.net
 6  202.84.178.37  16.17 ms  AS4637,AS10026  英国 伦敦 telstra.com
 7  202.84.136.17  261.11 ms  AS4637,AS10026  TELSTRA.COM 骨干网 telstra.com
 8  202.84.224.190  261.40 ms  AS4637,AS10026  新加坡 telstra.com
 9  210.57.30.130  171.85 ms  AS4637,AS10026  新加坡 telstra.com
10  59.43.247.238  210.89 ms  *  中国 电信
11  202.55.27.4  211.32 ms  AS4809  日本 东京都 东京 电信


路由追踪到 日本AWS (TCP 模式, 最大 50 跃点)
============================================================
traceroute to 13.112.63.251 (13.112.63.251), 50 hops max, 60 byte packets
 1  130.255.76.1  1.51 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.69 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.81 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  213.198.77.65  5.28 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.4.250  269.61 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  *
 7  129.250.6.38  4.41 ms  AS2914  NTT.COM 骨干网 ntt.com
 8  129.250.4.96  89.64 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
 9  129.250.3.189  158.72 ms  AS2914  NTT.COM 骨干网 ntt.com
10  129.250.3.192  255.49 ms  AS2914  日本 东京都 东京 ntt.com
11  129.250.6.129  260.83 ms  AS2914  日本 东京都 东京 ntt.com
12  61.213.161.46  276.21 ms  AS2914  日本 东京都 东京 ntt.com
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  52.95.31.41  273.62 ms  AS16509  日本 东京都 东京 amazon.com
21  52.95.31.191  266.08 ms  AS16509  日本 东京都 东京 amazon.com
22  52.95.31.158  273.38 ms  AS16509  日本 东京都 东京 amazon.com
23  52.95.31.94  260.72 ms  AS16509  日本 东京都 东京 amazon.com
24  54.239.52.185  268.92 ms  AS16509  日本 东京都 东京 amazon.com
25  *
26  *
27  *
28  *
29  *
30  *
31  13.112.63.251  256.46 ms  AS16509  日本 东京都 东京 amazon.com


路由追踪到 韩国KT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 59.10.184.64 (59.10.184.64), 30 hops max, 60 byte packets
 1  130.255.76.1  0.69 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.56 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.213  4.97 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  80.249.209.150  4.95 ms  AS1200,AS9009  荷兰 北荷兰省 阿姆斯特丹 ams-ix.net
 5  72.52.92.213  12.00 ms  AS6939  英国 伦敦 he.net
 6  72.52.92.166  78.83 ms  AS6939  美国 纽约州 纽约 he.net
 7  184.105.81.218  139.87 ms  AS6939  美国 加利福尼亚州 圣何塞 he.net
 8  72.52.92.69  140.78 ms  AS6939  美国 加利福尼亚州 帕洛阿尔托 he.net
 9  66.220.12.30  152.18 ms  AS6939  美国 加利福尼亚州 帕洛阿尔托 he.net
10  112.174.88.213  735.30 ms  AS4766  KT.COM 骨干网 kt.com
11  *
12  *
13  112.174.104.70  243.35 ms  AS4766  韩国 首尔 kt.com
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


路由追踪到 韩国SK (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 175.122.253.62 (175.122.253.62), 30 hops max, 60 byte packets
 1  130.255.76.1  0.67 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.50 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.213  4.46 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  80.249.211.90  210.40 ms  AS1200,AS9009  荷兰 北荷兰省 阿姆斯特丹 ams-ix.net
 5  39.115.132.80  246.18 ms  AS9318  韩国 skbroadband.com
 6  *
 7  10.222.41.60  249.02 ms  *  局域网
 8  10.222.21.87  245.81 ms  *  局域网
 9  175.122.253.62  247.64 ms  AS9318  韩国 skbroadband.com


路由追踪到 韩国LG (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.174.62.44 (211.174.62.44), 30 hops max, 60 byte packets
 1  130.255.76.1  0.61 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.48 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.94 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  213.198.77.65  4.82 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.4.238  153.68 ms  AS2914  NTT.COM 骨干网 ntt.com
 6  129.250.4.186  5.48 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 7  129.250.6.38  4.44 ms  AS2914  NTT.COM 骨干网 ntt.com
 8  129.250.4.96  94.59 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
 9  129.250.3.189  153.67 ms  AS2914  NTT.COM 骨干网 ntt.com
10  129.250.6.49  155.60 ms  AS2914  美国 加利福尼亚州 洛杉矶 ntt.com
11  129.250.2.214  155.35 ms  AS2914  美国 加利福尼亚州 洛杉矶 ntt.com
12  168.143.229.202  153.41 ms  AS2914  美国 ntt.com
13  211.118.180.145  148.55 ms  AS3786  美国 加利福尼亚州 洛杉矶 uplus.co.kr
14  1.208.105.17  281.24 ms  AS3786  韩国 首尔 uplus.co.kr
15  210.120.117.114  281.15 ms  AS3786  韩国 首尔 uplus.co.kr
16  *
17  1.213.149.13  277.81 ms  AS3786  韩国 首尔 uplus.co.kr
18  1.213.145.174  289.54 ms  AS3786  韩国 首尔 uplus.co.kr
19  61.111.0.138  284.09 ms  AS3786  韩国 首尔 uplus.co.kr
20  114.108.170.50  283.63 ms  AS3786  韩国 首尔 uplus.co.kr
21  211.174.62.44  284.03 ms  AS3786  韩国 首尔 uplus.co.kr


路由追踪到 韩国电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 218.185.246.1 (218.185.246.1), 30 hops max, 60 byte packets
 1  130.255.76.1  1.06 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.54 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  1.56 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  *
 5  *
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


路由追踪到 韩国AWS (TCP 模式, 最大 50 跃点)
============================================================
traceroute to 13.124.63.251 (13.124.63.251), 50 hops max, 60 byte packets
 1  130.255.76.1  14.17 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.67 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.80 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  213.198.77.65  13.09 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.4.238  257.29 ms  AS2914  NTT.COM 骨干网 ntt.com
 6  129.250.4.186  10.53 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 7  129.250.6.38  4.27 ms  AS2914  NTT.COM 骨干网 ntt.com
 8  129.250.4.96  89.34 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
 9  129.250.3.189  153.63 ms  AS2914  NTT.COM 骨干网 ntt.com
10  129.250.3.192  261.22 ms  AS2914  日本 东京都 东京 ntt.com
11  129.250.6.129  266.36 ms  AS2914  日本 东京都 东京 ntt.com
12  61.213.161.46  269.39 ms  AS2914  日本 东京都 东京 ntt.com
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  54.239.45.184  294.20 ms  *  韩国 首尔 amazon.com
21  52.93.248.193  294.63 ms  *  韩国 首尔 amazon.com
22  54.239.123.97  295.20 ms  AS16509  韩国 首尔 amazon.com
23  52.93.248.243  289.39 ms  *  韩国 首尔 amazon.com
24  54.239.123.75  303.58 ms  AS16509  韩国 首尔 amazon.com
25  *
26  *
27  13.124.63.251  288.13 ms  AS16509  韩国 首尔 amazon.com


路由追踪到 台湾Chief (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 202.133.242.116 (202.133.242.116), 30 hops max, 60 byte packets
 1  130.255.76.1  0.75 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.69 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.213  4.54 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  80.249.211.208  228.80 ms  AS1200,AS9009  荷兰 北荷兰省 阿姆斯特丹 ams-ix.net
 5  103.123.253.133  226.64 ms  *  中国 台湾 台北市 chief.com.tw
 6  223.26.64.141  226.24 ms  *  中国 台湾 台北市 chief.com.tw
 7  113.21.95.72  226.59 ms  AS17408  中国 台湾 台北市 chief.com.tw
 8  103.123.254.38  232.08 ms  *  中国 台湾 台北市 chief.com.tw
 9  202.133.242.114  224.99 ms  AS17408  中国 台湾 台北市 chief.com.tw
10  202.133.242.116  228.04 ms  AS17408  中国 台湾 台北市 chief.com.tw


路由追踪到 台湾APTG (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 210.200.69.90 (210.200.69.90), 30 hops max, 60 byte packets
 1  130.255.76.1  1.21 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.53 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.213  4.87 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  5.56.20.177  4.38 ms  AS201011  德国 core-backbone.com
 5  80.249.212.88  11.49 ms  AS1200,AS9009  荷兰 北荷兰省 阿姆斯特丹 ams-ix.net
 6  202.84.178.37  16.79 ms  AS4637,AS10026  英国 伦敦 telstra.com
 7  202.84.141.113  243.63 ms  AS4637,AS10026  中国 香港 telstra.com
 8  202.84.138.74  243.73 ms  AS4637,AS10026  中国 台湾 台北市 telstra.com
 9  202.84.137.250  242.57 ms  AS4637,AS10026  中国 台湾 台北市 telstra.com
10  210.176.44.78  247.96 ms  AS4637,AS10026  中国 台湾 台北市 telstra.com
11  203.79.253.161  244.75 ms  AS17709  中国 台湾 台北市 aptg.com.tw
12  211.76.100.53  249.90 ms  AS17709  中国 台湾 台北市 aptg.com.tw
13  210.200.80.254  248.55 ms  AS131142  中国 台湾 台北市 aptg.com.tw
14  *
15  210.200.69.90  244.33 ms  AS131142  中国 台湾 台北市 aptg.com.tw


路由追踪到 台湾CHT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.75.129.162 (203.75.129.162), 30 hops max, 60 byte packets
 1  130.255.76.1  0.74 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.75 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.40 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  1.43 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  130.117.48.61  5.43 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.2.242  4.86 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 7  154.54.56.93  101.04 ms  AS174  英国 伦敦 cogentco.com
 8  154.54.44.166  105.71 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 9  66.28.4.237  100.19 ms  AS174  美国 纽约州 奥尔巴尼 cogentco.com
10  154.54.31.233  105.51 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
11  154.54.6.221  106.23 ms  AS174  美国 伊利诺伊州 芝加哥 cogentco.com
12  154.54.31.89  126.44 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
13  154.54.31.89  128.56 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
14  154.54.42.97  140.64 ms  AS174  美国 犹他州 盐湖城 cogentco.com
15  154.54.44.137  149.99 ms  AS174  美国 加利福尼亚州 旧金山 cogentco.com
16  154.54.0.178  155.30 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
17  38.32.64.42  162.28 ms  AS174  美国 加利福尼亚州 圣何塞 cogentco.com
18  211.72.108.226  284.27 ms  AS3462  中国 台湾 台北市 cht.com.tw
19  220.128.3.254  255.37 ms  AS3462  中国 台湾 台北市 cht.com.tw
20  220.128.7.114  258.38 ms  AS3462  中国 台湾 台北市 cht.com.tw
21  220.128.2.5  249.33 ms  AS3462  中国 台湾 台北市 cht.com.tw
22  211.22.229.45  262.20 ms  AS3462  中国 台湾 台北市 cht.com.tw
23  211.22.229.45  261.02 ms  AS3462  中国 台湾 台北市 cht.com.tw
24  1.1.1.2  263.55 ms  AS13335  CLOUDFLARE.COM apnic.net
25  203.75.129.162  253.12 ms  AS3462  中国 台湾 台北市 cht.com.tw


路由追踪到 台湾TFN (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 219.87.66.3 (219.87.66.3), 30 hops max, 60 byte packets
 1  130.255.76.1  0.63 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.77 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.79 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.55 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  *
 6  *
 7  4.79.238.26  151.42 ms  AS3356  美国 加利福尼亚州 圣何塞 level3.com
 8  60.199.20.33  291.82 ms  AS9924  中国 台湾 twmbroadband.com
 9  60.199.18.10  289.03 ms  AS9924  中国 台湾 台北市 twmbroadband.com
10  60.199.3.122  278.06 ms  AS9924  中国 台湾 台北市 twmbroadband.com
11  60.199.16.62  277.66 ms  AS9924  中国 台湾 台北市 twmbroadband.com
12  219.87.66.3  278.08 ms  AS9924  中国 台湾 台北市 twmbroadband.com


路由追踪到 台湾FET (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.73.144.38 (211.73.144.38), 30 hops max, 60 byte packets
 1  130.255.76.1  0.66 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  1.58 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.213  4.61 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  5.56.20.177  4.28 ms  AS201011  德国 core-backbone.com
 5  80.249.208.72  23.99 ms  AS1200,AS9009  荷兰 北荷兰省 阿姆斯特丹 ams-ix.net
 6  85.95.25.21  253.53 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
 7  85.95.25.105  255.94 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
 8  85.95.27.82  246.10 ms  AS15412  中国 台湾 台北市 globalcloudxchange.com
 9  85.95.25.210  248.58 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
10  80.81.69.42  255.31 ms  AS15412  中国 台湾 台北市 globalcloudxchange.com
11  192.72.155.29  257.17 ms  AS4780  中国 台湾 台北市 fetnet.net
12  *
13  *
14  *
15  211.73.144.38  267.79 ms  AS9674  中国 台湾 fetnet.net


路由追踪到 台湾KBT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 61.63.0.102 (61.63.0.102), 30 hops max, 60 byte packets
 1  130.255.76.1  0.63 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.53 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.34 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  1.69 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  130.117.48.61  4.72 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.50.5  83.45 ms  AS174  荷兰 北荷兰省 阿姆斯特丹 cogentco.com
 7  130.117.51.41  80.34 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 8  154.54.42.85  84.93 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 9  154.54.40.110  89.20 ms  AS174  美国 弗吉尼亚州 阿灵顿 cogentco.com
10  154.54.24.222  99.13 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
11  154.54.7.158  99.31 ms  AS174  美国 乔治亚州 亚特兰大 cogentco.com
12  154.54.28.70  115.21 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
13  154.54.42.65  137.42 ms  AS174  美国 亚利桑那州 凤凰城 cogentco.com
14  154.54.45.162  148.92 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
15  154.54.27.118  150.23 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
16  154.54.27.118  148.98 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
17  38.104.85.130  157.39 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
18  175.41.61.182  275.67 ms  AS9505  中国 台湾 台北市 twgate.net
19  175.41.61.166  288.30 ms  AS9505  中国 台湾 台北市 twgate.net
20  203.187.9.241  283.96 ms  AS9416  中国 台湾 台北市 kbtelecom.net
21  203.187.9.241  378.56 ms  AS9416  中国 台湾 台北市 kbtelecom.net
22  58.86.1.174  288.63 ms  AS18042  中国 台湾 台北市 kbtelecom.net
23  58.86.1.174  275.33 ms  AS18042  中国 台湾 台北市 kbtelecom.net
24  58.86.0.26  290.06 ms  AS18042  中国 台湾 台北市 kbtelecom.net
25  58.86.0.26  293.82 ms  AS18042  中国 台湾 台北市 kbtelecom.net
26  61.63.0.102  283.43 ms  AS18042  中国 台湾 台北市 kbtelecom.net


路由追踪到 台湾TAIFO (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 103.31.196.203 (103.31.196.203), 30 hops max, 60 byte packets
 1  130.255.76.1  0.68 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.79 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.25 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  1.50 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  130.117.48.61  5.47 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.50.5  81.29 ms  AS174  荷兰 北荷兰省 阿姆斯特丹 cogentco.com
 7  130.117.51.41  81.07 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 8  154.54.42.85  83.04 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 9  154.54.43.109  81.13 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
10  154.54.40.106  89.09 ms  AS174  美国 弗吉尼亚州 阿灵顿 cogentco.com
11  154.54.28.130  112.73 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
12  154.54.30.162  131.59 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
13  154.54.29.222  129.02 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
14  154.54.42.77  138.40 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
15  154.54.45.162  147.49 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
16  38.142.238.218  149.73 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
17  38.142.238.218  151.64 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
18  62.216.128.94  280.40 ms  AS15412  中国 台湾 台北市 globalcloudxchange.com
19  62.216.136.141  280.42 ms  AS15412  中国 台湾 台北市 globalcloudxchange.com
20  62.216.136.141  289.94 ms  AS15412  中国 台湾 台北市 globalcloudxchange.com
21  103.123.253.13  270.95 ms  *  中国 台湾 台北市 chief.com.tw
22  113.21.95.123  255.49 ms  AS17408  中国 台湾 台北市 chief.com.tw
23  113.21.95.123  264.89 ms  AS17408  中国 台湾 台北市 chief.com.tw
24  103.31.197.122  265.91 ms  AS131584  中国 台湾 台北市 taifo.com.tw
25  103.31.197.122  259.41 ms  AS131584  中国 台湾 台北市 taifo.com.tw
26  *
27  103.31.196.203  260.22 ms  AS131584  中国 台湾 台北市 taifo.com.tw


路由追踪到 美国洛杉矶电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  130.255.76.1  147.63 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.78 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.77 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.26 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  194.25.6.98  7.59 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  80.157.129.186  6.45 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  218.30.33.17  92.74 ms  AS4134  美国 ctamericas.com


路由追踪到 美国洛杉矶电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 66.102.252.100 (66.102.252.100), 30 hops max, 60 byte packets
 1  130.255.76.1  146.71 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.65 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.80 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.12 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  *
 6  *
 7  *
 8  212.187.165.22  14.27 ms  AS3356  英国 伦敦 level3.com
 9  59.43.183.97  152.54 ms  *  美国 纽约州 纽约 电信
10  59.43.186.221  151.68 ms  *  美国 加利福尼亚州 洛杉矶 电信
11  66.102.252.100  148.77 ms  AS4809  美国 ctamericas.com


路由追踪到 美国洛杉矶PCCW (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 63.218.42.81 (63.218.42.81), 30 hops max, 60 byte packets
 1  130.255.76.1  1.67 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.72 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.79 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.19 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  217.239.45.250  5.06 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  80.157.130.110  5.29 ms  AS3320  德国 telekom.de
 7  63.218.42.81  165.66 ms  AS3491  美国 加利福尼亚州 洛杉矶 pccw.com


路由追踪到 美国洛杉矶HE (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 66.220.18.42 (66.220.18.42), 30 hops max, 60 byte packets
 1  130.255.76.1  9.01 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  1.55 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.213  4.70 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  80.249.209.150  5.04 ms  AS1200,AS9009  荷兰 北荷兰省 阿姆斯特丹 ams-ix.net
 5  72.52.92.213  15.22 ms  AS6939  英国 伦敦 he.net
 6  72.52.92.166  78.91 ms  AS6939  美国 纽约州 纽约 he.net
 7  184.105.223.165  94.81 ms  AS6939  美国 弗吉尼亚州 阿什本 he.net
 8  184.105.80.202  142.15 ms  AS6939  美国 加利福尼亚州 洛杉矶 he.net
 9  66.220.18.42  138.48 ms  AS6939  美国 加利福尼亚州 洛杉矶 he.net


路由追踪到 美国洛杉矶GTT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 173.205.77.98 (173.205.77.98), 30 hops max, 60 byte packets
 1  130.255.76.1  1.34 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.76 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.92 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  2.07 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  80.157.204.58  9.09 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  89.149.182.162  144.12 ms  AS3257  美国 加利福尼亚州 洛杉矶 gtt.net
 7  173.205.77.98  143.28 ms  AS3257  美国 加利福尼亚州 洛杉矶 gtt.net


路由追踪到 美国旧金山ATT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 12.169.215.33 (12.169.215.33), 30 hops max, 60 byte packets
 1  130.255.76.1  1.93 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.52 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  1.10 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.43 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  217.239.40.90  87.18 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  192.205.34.181  90.48 ms  AS7018  美国 att.com
 7  12.122.131.102  158.70 ms  AS7018  美国 纽约州 纽约 att.com
 8  12.122.2.237  166.02 ms  AS7018  美国 伊利诺伊州 芝加哥 att.com
 9  12.122.2.53  158.98 ms  AS7018  美国 伊利诺伊州 芝加哥 att.com
10  12.122.1.174  164.27 ms  AS7018  美国 加利福尼亚州 旧金山 att.com
11  12.122.110.13  159.01 ms  AS7018  美国 加利福尼亚州 att.com
12  12.244.156.30  165.30 ms  AS7018  美国 加利福尼亚州 att.com
13  12.169.215.33  159.07 ms  AS7018  美国 加利福尼亚州 att.com


路由追踪到 美国纽约TATA (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 66.198.181.100 (66.198.181.100), 30 hops max, 60 byte packets
 1  130.255.76.1  0.64 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.67 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  62.141.47.90  2.56 ms  AS24961  德国 北莱茵－威斯特法伦州 杜塞尔多夫 myloc.de
 4  62.141.47.12  0.54 ms  AS24961  德国 北莱茵－威斯特法伦州 杜塞尔多夫 myloc.de
 5  62.141.47.21  0.81 ms  AS24961  德国 北莱茵－威斯特法伦州 杜塞尔多夫 myloc.de
 6  80.157.201.117  1.54 ms  AS3320  德国 telekom.de
 7  217.239.45.250  5.04 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 8  80.156.162.178  8.84 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 9  5.23.30.16  84.75 ms  AS6453  德国 黑森州 法兰克福 tatacommunications.com
10  195.219.194.149  83.35 ms  AS6453  荷兰 北荷兰省 阿姆斯特丹 tatacommunications.com
11  195.219.194.6  84.24 ms  AS6453  荷兰 北荷兰省 阿姆斯特丹 tatacommunications.com
12  80.231.131.160  83.34 ms  AS6453  英国 伦敦 tatacommunications.com
13  80.231.131.158  83.58 ms  AS6453  美国 纽约州 纽约 tatacommunications.com
14  216.6.90.21  84.54 ms  AS6453  美国 纽约州 纽约 tatacommunications.com
15  216.6.90.73  83.24 ms  AS6453  美国 纽约州 纽约 tatacommunications.com
16  209.58.75.198  84.25 ms  AS6453  美国 纽约州 纽约 tatacommunications.com
17  66.198.181.100  83.37 ms  AS6453  美国 纽约州 纽约 tatacommunications.com


路由追踪到 美国圣何塞电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  130.255.76.1  0.63 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.53 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  1.03 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.01 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  194.25.6.98  5.14 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  80.157.129.186  7.39 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  218.30.33.17  92.69 ms  AS4134  美国 ctamericas.com


路由追踪到 美国圣何塞NTT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 23.11.26.62 (23.11.26.62), 30 hops max, 60 byte packets
 1  130.255.76.1  0.58 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.62 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.75 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  213.198.77.65  3.64 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.4.250  153.45 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  *
 7  129.250.6.38  4.32 ms  AS2914  NTT.COM 骨干网 ntt.com
 8  129.250.4.96  89.45 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
 9  129.250.3.85  89.84 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
10  129.250.6.237  150.84 ms  AS2914  NTT.COM 骨干网 ntt.com
11  129.250.3.27  151.88 ms  AS2914  NTT.COM 骨干网 ntt.com
12  129.250.3.163  167.92 ms  AS2914  NTT.COM 骨干网 ntt.com
13  23.11.26.62  153.64 ms  AS2914  美国 加利福尼亚州 圣何塞 akamai.com


路由追踪到 美国费利蒙HE (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 72.52.104.74 (72.52.104.74), 30 hops max, 60 byte packets
 1  130.255.76.1  3.82 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.74 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.213  4.71 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  80.249.209.150  5.88 ms  AS1200,AS9009  荷兰 北荷兰省 阿姆斯特丹 ams-ix.net
 5  72.52.92.213  11.95 ms  AS6939  英国 伦敦 he.net
 6  72.52.92.166  80.22 ms  AS6939  美国 纽约州 纽约 he.net
 7  184.104.192.242  79.07 ms  AS6939  HE.NET 骨干网 he.net
 8  184.105.81.61  153.64 ms  AS6939  美国 加利福尼亚州 费利蒙 he.net
 9  72.52.104.74  142.28 ms  AS6939  美国 加利福尼亚州 费利蒙 he.net


路由追踪到 美国达拉斯Level3 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 205.216.62.38 (205.216.62.38), 30 hops max, 60 byte packets
 1  130.255.76.1  0.62 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.73 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.84 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  2.13 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  217.239.47.18  87.02 ms  AS3320  德国 telekom.de
 6  80.157.131.194  87.48 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  *
 8  216.34.172.50  124.97 ms  AS3561  美国 德克萨斯州 达拉斯 centurylink.com
 9  216.34.164.110  128.42 ms  AS3561  美国 德克萨斯州 达拉斯 centurylink.com
10  205.216.7.204  128.57 ms  AS3561  美国 德克萨斯州 达拉斯 centurylink.com
11  *
12  205.216.62.38  130.53 ms  AS3561  美国 德克萨斯州 达拉斯 centurylink.com


路由追踪到 美国迈阿密ZAYO (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 64.125.191.144 (64.125.191.144), 30 hops max, 60 byte packets
 1  130.255.76.1  0.65 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.59 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.213  4.51 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  5.56.20.177  5.35 ms  AS201011  德国 core-backbone.com
 5  *
 6  64.125.31.104  111.27 ms  AS6461  荷兰 北荷兰省 阿姆斯特丹 zayo.com
 7  64.125.29.17  108.91 ms  AS6461  英国 伯克郡 斯劳 zayo.com
 8  *
 9  *
10  64.125.29.203  112.03 ms  AS6461  美国 华盛顿 zayo.com
11  64.125.31.169  109.76 ms  AS6461  ZAYO.COM 骨干网 zayo.com
12  64.125.30.205  111.54 ms  AS6461  美国 zayo.com
13  64.125.28.17  110.92 ms  AS6461  ZAYO.COM 骨干网 zayo.com
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


路由追踪到 美国阿什本Cogentco (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 149.127.109.166 (149.127.109.166), 30 hops max, 60 byte packets
 1  130.255.76.1  1.46 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  1.60 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.87 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  1.39 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  130.117.48.61  4.90 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.50.5  81.22 ms  AS174  荷兰 北荷兰省 阿姆斯特丹 cogentco.com
 7  130.117.51.41  81.27 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 8  154.54.42.85  82.77 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 9  154.54.40.110  88.15 ms  AS174  美国 弗吉尼亚州 阿灵顿 cogentco.com
10  154.54.46.194  90.14 ms  AS174  美国 弗吉尼亚州 赫恩登 cogentco.com
11  154.54.46.190  88.18 ms  AS174  美国 弗吉尼亚州 赫恩登 cogentco.com
12  149.127.109.2  90.28 ms  AS174  美国 弗吉尼亚州 阿什本 cogentco.com
13  149.127.109.166  87.56 ms  AS174  美国 弗吉尼亚州 阿什本 cogentco.com


路由追踪到 德国北莱茵－威斯特法伦州Telekom (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 80.146.191.1 (80.146.191.1), 30 hops max, 60 byte packets
 1  130.255.76.1  0.60 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.69 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  2.84 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.20 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  91.23.215.105  8.06 ms  AS3320  德国 北莱茵－威斯特法伦州 telekom.de
 6  80.146.191.1  19.19 ms  AS3320  德国 北莱茵－威斯特法伦州 telekom.de


路由追踪到 德国法兰克福O2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 82.113.108.25 (82.113.108.25), 30 hops max, 60 byte packets
 1  130.255.76.1  0.61 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.56 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.98 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  213.198.77.65  3.69 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.4.250  4.22 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  *
 7  129.250.6.42  5.52 ms  AS2914  NTT.COM 骨干网 ntt.com
 8  80.81.192.89  4.92 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 9  62.53.28.170  5.08 ms  AS6805  德国 telefonica.de
10  62.53.0.198  13.07 ms  AS6805  德国 telefonica.de
11  62.53.0.143  5.07 ms  AS6805  德国 telefonica.de
12  82.113.108.25  4.88 ms  AS39706  德国 黑森州 法兰克福 o2online.de


路由追踪到 德国法兰克福Vodafone (TCP 模式, 最大 50 跃点)
============================================================
traceroute to 139.7.146.11 (139.7.146.11), 50 hops max, 60 byte packets
 1  130.255.76.1  121.57 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.71 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  62.141.47.90  1.04 ms  AS24961  德国 北莱茵－威斯特法伦州 杜塞尔多夫 myloc.de
 4  62.141.47.12  0.54 ms  AS24961  德国 北莱茵－威斯特法伦州 杜塞尔多夫 myloc.de
 5  62.141.47.21  0.74 ms  AS24961  德国 北莱茵－威斯特法伦州 杜塞尔多夫 myloc.de
 6  62.141.47.45  1.20 ms  AS24961  德国 北莱茵－威斯特法伦州 杜塞尔多夫 myloc.de
 7  145.254.16.128  2.30 ms  AS3209  德国 vodafone.de
 8  92.79.230.14  3.04 ms  AS3209  德国 vodafone.de
 9  139.7.148.84  2.86 ms  AS3209  德国 vodafone.de
10  *
11  *
12  *
13  *
14  139.7.146.11  7.45 ms  AS3209  德国 vodafone.de


路由追踪到 德国法兰克福电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 118.85.205.101 (118.85.205.101), 30 hops max, 60 byte packets
 1  130.255.76.1  24.10 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.77 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.93 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.29 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  217.239.40.154  5.95 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  80.157.129.186  6.73 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  118.85.205.101  5.14 ms  AS4134  德国 黑森州 法兰克福 电信


路由追踪到 德国法兰克福电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 5.10.138.33 (5.10.138.33), 30 hops max, 60 byte packets
 1  130.255.76.1  0.68 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.80 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.82 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.21 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  217.5.95.78  5.06 ms  AS3320  德国 telekom.de
 6  87.128.235.130  5.22 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  5.10.138.33  6.25 ms  AS4809  德国 cteurope.net


路由追踪到 德国法兰克福GTT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 213.200.65.70 (213.200.65.70), 30 hops max, 60 byte packets
 1  130.255.76.1  21.16 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.50 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.81 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.46 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  80.157.204.58  8.03 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  213.200.114.177  31.92 ms  AS3257  德国 黑森州 法兰克福 gtt.net
 7  213.200.65.70  6.03 ms  AS3257  GTT.NET 骨干网 gtt.net


路由追踪到 德国法兰克福Cogentco (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 212.20.150.5 (212.20.150.5), 30 hops max, 60 byte packets
 1  *
 2  5.45.181.211  0.51 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  149.6.138.1  1.35 ms  AS174  德国 北莱茵－威斯特法伦州 杜塞尔多夫 cogentco.com
 4  154.25.8.149  2.33 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 5  154.54.37.37  5.14 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.1.118  5.16 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 7  154.54.56.34  6.20 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 8  212.20.150.5  5.16 ms  AS174  德国 cogentco.com


路由追踪到 英国Vodafone (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 194.62.232.211 (194.62.232.211), 30 hops max, 60 byte packets
 1  130.255.76.1  0.65 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.68 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  20.46 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.24 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  217.239.60.14  2.16 ms  AS3320  德国 telekom.de
 6  80.157.201.134  1.36 ms  AS3320  德国 telekom.de
 7  195.2.8.194  9.70 ms  AS1273  欧洲地区 vodafone.com
 8  195.2.3.246  11.48 ms  AS1273  欧洲地区 vodafone.com
 9  *
10  *
11  194.62.232.211  13.84 ms  AS25135  英国 vodafone.com


路由追踪到 英国BT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 213.121.43.24 (213.121.43.24), 30 hops max, 60 byte packets
 1  130.255.76.1  0.67 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.70 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  1.18 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.23 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  62.156.131.250  4.79 ms  AS3320  德国 黑森州 法兰克福 telekom.de
 6  80.157.129.118  5.34 ms  AS3320  德国 黑森州 法兰克福 telekom.de
 7  166.49.195.124  17.16 ms  AS5400  BT.COM 骨干网 bt.com
 8  166.49.128.33  18.19 ms  AS5400  英国 bt.com
 9  62.6.201.231  21.77 ms  AS2856  英国 bt.com
10  109.159.249.10  18.16 ms  AS2856  英国 bt.com
11  194.72.7.69  17.71 ms  AS2856  英国 伦敦 bt.com
12  *
13  *
14  *
15  *
16  *
17  213.121.43.24  24.68 ms  AS2856  英国 bt.com


路由追踪到 英国伦敦TATA (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 80.231.60.38 (80.231.60.38), 30 hops max, 60 byte packets
 1  130.255.76.1  136.68 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.52 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  62.141.47.90  1.20 ms  AS24961  德国 北莱茵－威斯特法伦州 杜塞尔多夫 myloc.de
 4  62.141.47.12  0.52 ms  AS24961  德国 北莱茵－威斯特法伦州 杜塞尔多夫 myloc.de
 5  62.141.47.21  1.14 ms  AS24961  德国 北莱茵－威斯特法伦州 杜塞尔多夫 myloc.de
 6  80.157.201.117  1.53 ms  AS3320  德国 telekom.de
 7  217.239.45.242  4.99 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 8  80.156.162.178  8.99 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 9  5.23.30.16  13.72 ms  AS6453  德国 黑森州 法兰克福 tatacommunications.com
10  195.219.87.1  16.42 ms  AS6453  德国 黑森州 法兰克福 tatacommunications.com
11  195.219.194.6  15.43 ms  AS6453  荷兰 北荷兰省 阿姆斯特丹 tatacommunications.com
12  80.231.131.160  13.65 ms  AS6453  英国 伦敦 tatacommunications.com
13  80.231.154.143  16.62 ms  AS6453  法国 法兰西岛大区 巴黎 tatacommunications.com
14  80.231.130.130  16.40 ms  AS6453  英国 伦敦 tatacommunications.com
15  80.231.60.38  16.29 ms  AS6453  英国 伦敦 tatacommunications.com


路由追踪到 俄罗斯电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 118.85.205.180 (118.85.205.180), 30 hops max, 60 byte packets
 1  130.255.76.1  0.74 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.53 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  1.01 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.35 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  217.239.50.54  4.36 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  80.157.129.186  8.23 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  202.97.67.233  152.58 ms  *  俄罗斯 电信
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


路由追踪到 俄罗斯电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 185.75.173.17 (185.75.173.17), 30 hops max, 60 byte packets
 1  130.255.76.1  11.47 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.60 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.77 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.34 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  217.5.95.98  6.45 ms  AS3320  德国 telekom.de
 6  87.128.235.130  5.53 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  185.75.173.17  42.40 ms  AS4809  俄罗斯 莫斯科 cteurope.net


路由追踪到 俄罗斯莫斯科RT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 87.226.162.77 (87.226.162.77), 30 hops max, 60 byte packets
 1  130.255.76.1  0.66 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.66 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.97 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.54 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  *
 6  *
 7  195.122.183.218  5.62 ms  AS3356  德国 黑森州 法兰克福 level3.com
 8  213.59.211.241  59.27 ms  AS12389  俄罗斯 莫斯科 rt.ru
 9  87.226.140.2  44.66 ms  AS12389  俄罗斯 莫斯科 rt.ru
10  *
11  87.226.162.77  51.85 ms  AS12389  俄罗斯 莫斯科 rt.ru


路由追踪到 俄罗斯莫斯科TTK (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 217.150.32.2 (217.150.32.2), 30 hops max, 60 byte packets
 1  130.255.76.1  0.63 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  1.51 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.213  4.49 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  80.249.210.177  8.22 ms  AS1200,AS9009  荷兰 北荷兰省 阿姆斯特丹 ams-ix.net
 5  *
 6  62.33.207.217  46.13 ms  AS20485  俄罗斯 莫斯科 ttk.ru
 7  80.237.46.177  43.19 ms  AS20485  俄罗斯 莫斯科 ttk.ru
 8  217.150.32.243  47.76 ms  AS20485  俄罗斯 莫斯科 ttk.ru
 9  10.105.0.1  49.30 ms  *  局域网
10  217.150.32.2  51.58 ms  AS20485  俄罗斯 莫斯科 ttk.ru


路由追踪到 俄罗斯莫斯科MTS (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 195.34.53.186 (195.34.53.186), 30 hops max, 60 byte packets
 1  130.255.76.1  0.59 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 2  5.45.181.211  0.50 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 3  5.45.181.222  0.79 ms  AS29141  德国 北莱茵－威斯特法伦州 杜塞尔多夫 providerdienste.de
 4  87.128.235.81  1.46 ms  AS3320  德国 北莱茵－威斯特法伦州 杜塞尔多夫 telekom.de
 5  *
 6  4.69.162.146  32.22 ms  AS3356  芬兰 新地区 赫尔辛基 level3.com
 7  4.69.162.146  34.00 ms  AS3356  芬兰 新地区 赫尔辛基 level3.com
 8  62.67.19.238  32.66 ms  AS3356  欧洲地区 level3.com
 9  212.188.29.110  37.56 ms  AS8359  俄罗斯 圣彼得堡 mts.ru
10  212.188.2.54  46.97 ms  AS8359  俄罗斯 莫斯科 mts.ru
11  212.188.28.137  46.81 ms  AS8359  俄罗斯 莫斯科 mts.ru
12  195.34.53.186  45.30 ms  AS8359  俄罗斯 莫斯科 mts.ru
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;UltraVPS家在业界一直饱受好评，他家的机器也是稳定做站首选。他家可能是为了防止dd Windows，磁盘一直都是像我买的这款，系统盘只有6G，数据盘给的很大，所以想跑win的可以放弃了。&lt;/p&gt;
</content:encoded></item><item><title>Contabo评测：2019年黑五免设置费款</title><link>https://yushum.com/posts/contabo%E8%AF%84%E6%B5%8B2019%E5%B9%B4%E9%BB%91%E4%BA%94%E5%85%8D%E8%AE%BE%E7%BD%AE%E8%B4%B9%E6%AC%BE/</link><guid isPermaLink="true">https://yushum.com/posts/contabo%E8%AF%84%E6%B5%8B2019%E5%B9%B4%E9%BB%91%E4%BA%94%E5%85%8D%E8%AE%BE%E7%BD%AE%E8%B4%B9%E6%AC%BE/</guid><pubDate>Sat, 30 Nov 2019 17:17:23 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://contabo.com/&quot;&gt;Contabo&lt;/a&gt;从2003年开始运营,已有16年的历史了，主要运营:VPS,专用服务器，虚拟主机和域名。拥有自建独立机房两处。VPS,最低价4.99欧元，配置为4H 8G 200GSSD 200M带宽(无限流量)。更多配置在其&lt;a href=&quot;https://contabo.com/?show=vps&quot;&gt;官网&lt;/a&gt;也能看见。总而言之性价比十分的不错，配置也有了，硬盘也有了，带宽也有了！商家黑五活动也即将上线！&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/v2-7ffc1ecd97d3e36ef1638bd7ca7bcf48_r-1024x604.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;配置信息&lt;/h2&gt;
&lt;h3&gt;系统信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;系统名称:		Debian GNU/Linux &quot;Buster&quot; 10.2 (x86_64)
 CPU型号:		Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
 CPU缓存大小:		16384 KB
 CPU数量:		4 vCPU
 虚拟化类型:		KVM
 内存使用率:		118.18 MB / 7.79 GB
 Swap使用率:		[无Swap分区/文件]
 磁盘使用率:		1.32 GB / 204.41 GB
 引导设备:		/dev/sda2
 系统负载(1/5/15min):	1.28 1.03 0.76
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;网络信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;IPV4 - 本机IP:		144.91.*.*
 IPV4 - ASN信息:	AS51167 (德国 巴伐利亚州 纽伦堡 )
 IPV4 - 运营商:		contabo.de
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;流媒体解锁测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;HBO Now:		否
 巴哈姆特動畫瘋:	否
 哔哩哔哩-港澳台限定:	否
 哔哩哔哩-台湾限定:	否
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;CPU性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 线程测试:	664 分
 4 线程测试:	2410 分
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;内存性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 线程测试-顺序读:	3684.73K ops (3431.67 MB/s)
 1 线程测试-顺序写:	3527.46K ops (3285.20 MB/s)
 1 线程测试-随机读:	811.38K ops (755.66 MB/s)
 1 线程测试-随机写:	672.27K ops (626.10 MB/s)
 4 线程测试-顺序读:	8292.45K ops (7722.94 MB/s)
 4 线程测试-顺序写:	7528.64K ops (7011.59 MB/s)
 4 线程测试-随机读:	726.30K ops (676.41 MB/s)
 4 线程测试-随机写:	836.91K ops (779.44 MB/s)
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;磁盘性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;测试项目		写入速度				        读取速度
 10MB-4K块		22.5 MB/s (5500 IOPS, 0.47 秒)		46.2 MB/s (11288 IOPS, 0.23 秒)
 10MB-1M块		401 MB/s (382 IOPS, 0.03 秒)		946 MB/s (902 IOPS, 0.01 秒)
 100MB-4K块		6.7 MB/s (1634 IOPS, 15.66 秒)		19.9 MB/s (4856 IOPS, 5.27 秒)
 100MB-1M块		544 MB/s (518 IOPS, 0.19 秒)		922 MB/s (879 IOPS, 0.11 秒)
 1000MB-4K块		4.3 MB/s (1038 IOPS, 246.61 秒)		28.0 MB/s (6827 IOPS, 37.50 秒)
 1000MB-1M块		854 MB/s (814 IOPS, 1.23 秒)		1.9 GB/s (1804 IOPS, 0.55 秒)
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;网络测试&lt;/h2&gt;
&lt;h3&gt;Speedtest.net 网速测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;节点名称		上传速度	        下载速度	        Ping延迟
 距离最近测速点		23.46 MB/s	24.88 MB/s	1.072 ms
 东北-吉林联通		0.37 MB/s	1.94 MB/s	646.116 ms
 东北-沈阳移动		0.42 MB/s	1.09 MB/s	437.597 ms
 华北-山东联通		1.15 MB/s	6.58 MB/s	464.485 ms
 华中-南京联通		0.25 MB/s	0.94 MB/s	901.44 ms
 华中-杭州电信		0.39 MB/s	0.54 MB/s	229.515 ms
 华中-杭州移动		0.35 MB/s	1.29 MB/s	977.604 ms
 华东-上海联通		0.99 MB/s	1.55 MB/s	405.504 ms
 华东-上海移动		0.61 MB/s	5.56 MB/s	347.673 ms
 华南-广州电信		     MB/s	     MB/s	     No ms
 西南-重庆联通		     MB/s	     MB/s	     No ms
 西南-南宁移动		     MB/s	     MB/s	     No ms
 西北-兰州联通		0.20 MB/s	0.57 MB/s	407.469 ms
 西北-兰州电信		0.35 MB/s	0.73 MB/s	297.8 ms
 西北-兰州移动		5.49 MB/s	3.20 MB/s	325.483 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;IPv4路由追踪测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;路由追踪到 北京联通 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 60 byte packets
 1  213.136.75.1  0.84 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.171.252  1.08 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.114.148  148.39 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.122.138  151.84 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.112.242  98.03 ms  AS1299  美国 弗吉尼亚州 阿什本 telia.com
 6  62.115.114.86  148.72 ms  AS1299  美国 加利福尼亚州 洛杉矶 telia.com
 7  213.248.82.206  171.23 ms  AS1299  TELIA.COM 骨干网 telia.com
 8  219.158.98.17  319.48 ms  AS4837  中国 北京 联通
 9  219.158.3.141  311.88 ms  AS4837  中国 北京 联通
10  219.158.5.157  322.75 ms  AS4837  中国 北京 联通
11  125.33.186.62  316.56 ms  AS4808  中国 北京 联通
12  61.51.115.22  318.00 ms  AS4808  中国 北京 联通
13  *
14  61.135.113.158  319.17 ms  AS4808  中国 北京 联通
15  *
16  *
17  123.125.99.1  316.50 ms  AS4808  中国 北京 联通


路由追踪到 北京电信 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 60 byte packets
 1  213.136.75.1  0.64 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.171.252  1.68 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.140.76  7.42 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.114.89  4.11 ms  AS1299  德国 黑森州 法兰克福 telia.com
 5  118.85.205.81  7.61 ms  AS4134  德国 黑森州 法兰克福 电信
 6  202.97.58.69  163.48 ms  AS4134  中国 北京 电信
 7  202.97.14.241  190.00 ms  AS4134  中国 北京 电信
 8  202.97.34.157  178.22 ms  AS4134  中国 北京 电信
 9  *
10  180.149.128.1  190.77 ms  AS23724  中国 北京 电信


路由追踪到 北京移动 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.136.88.117 (211.136.88.117), 30 hops max, 60 byte packets
 1  213.136.75.1  0.55 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.155.130  3.50 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.113.174  28.86 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  80.91.249.10  36.97 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.117.123  28.51 ms  AS1299  TELIA.COM 骨干网 telia.com
 6  62.115.171.223  25.50 ms  AS1299  欧洲地区 telia.com
 7  223.120.10.41  25.60 ms  AS58453  英国 伦敦 移动
 8  *
 9  *
10  *
11  *
12  221.176.21.229  214.52 ms  AS9808  中国 北京 移动
13  *
14  211.136.67.113  258.39 ms  AS56048  中国 北京 移动
15  211.136.88.117  230.53 ms  AS56048  中国 北京 移动


路由追踪到 上海联通 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 58.247.0.49 (58.247.0.49), 30 hops max, 60 byte packets
 1  173.212.238.3  0.42 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.26.21  511.05 ms  AS3356  德国 巴伐利亚州 纽伦堡 level3.com
 3  4.69.209.165  151.32 ms  AS3356  美国 加利福尼亚州 圣何塞 level3.com
 4  4.53.209.78  377.39 ms  AS3356  美国 加利福尼亚州 圣何塞 level3.com
 5  219.158.102.109  421.82 ms  AS4837  中国 上海 联通
 6  219.158.113.118  435.73 ms  AS4837  中国 上海 联通
 7  *
 8  *
 9  58.247.0.49  449.06 ms  AS17621  中国 上海 联通


路由追踪到 上海电信 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 180.153.28.1 (180.153.28.1), 30 hops max, 60 byte packets
 1  213.136.75.1  0.38 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.172.2  1.12 ms  AS1299  欧洲地区 telia.com
 3  62.115.113.146  3.97 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.114.89  4.01 ms  AS1299  德国 黑森州 法兰克福 telia.com
 5  118.85.205.81  5.30 ms  AS4134  德国 黑森州 法兰克福 电信
 6  202.97.58.49  210.03 ms  AS4134  中国 上海 电信
 7  202.97.50.194  194.63 ms  AS4134  中国 上海 电信
 8  202.97.94.238  235.35 ms  AS4134  中国 上海 电信
 9  101.95.120.157  213.17 ms  AS4812  中国 上海 电信
10  101.95.207.250  261.70 ms  AS4812  中国 上海 电信
11  124.74.232.54  228.49 ms  AS4812  中国 上海 电信
12  *
13  180.153.28.1  357.94 ms  AS4812  中国 上海 电信


路由追踪到 上海移动 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 60 byte packets
 1  213.136.75.1  0.33 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.172.4  1.24 ms  AS1299  欧洲地区 telia.com
 3  62.115.113.146  3.97 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.114.89  6.21 ms  AS1299  德国 黑森州 法兰克福 telia.com
 5  62.115.37.159  6.96 ms  AS1299  TELIA.COM 骨干网 telia.com
 6  *
 7  *
 8  *
 9  *
10  221.176.27.253  223.61 ms  AS9808  中国 北京 移动
11  221.183.25.26  171.24 ms  AS9808  中国 上海 移动
12  221.176.17.218  187.52 ms  AS9808  中国 上海 移动
13  *
14  *
15  *
16  221.183.55.22  268.67 ms  AS9808  中国 上海 移动


路由追踪到 广州联通 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 60 byte packets
 1  173.212.238.3  0.70 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.24.53  7.19 ms  AS3356  德国 level3.com
 3  4.69.153.125  151.34 ms  AS3356  美国 加利福尼亚州 洛杉矶 level3.com
 4  4.26.0.66  153.08 ms  AS3356  美国 加利福尼亚州 洛杉矶 level3.com
 5  219.158.98.61  389.95 ms  AS4837  中国 广东 广州 联通
 6  219.158.20.221  379.73 ms  AS4837  中国 广东 广州 联通
 7  *
 8  120.83.0.62  382.02 ms  AS17816  中国 广东 广州 联通
 9  120.80.175.78  377.28 ms  AS17622  中国 广东 广州 联通
10  210.21.4.130  378.65 ms  AS17622  中国 广东 广州 联通


路由追踪到 广州电信 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 60 byte packets
 1  213.136.75.1  0.53 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.171.252  1.29 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.113.146  4.75 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.114.91  7.38 ms  AS1299  德国 黑森州 法兰克福 telia.com
 5  118.85.205.81  7.53 ms  AS4134  德国 黑森州 法兰克福 电信
 6  202.97.98.178  211.22 ms  AS4134  中国 广东 广州 电信
 7  202.97.12.42  197.38 ms  AS4134  中国 广东 广州 电信
 8  202.97.94.125  231.72 ms  AS4134  中国 广东 广州 电信
 9  113.96.0.101  219.81 ms  AS58466  中国 广东 广州 电信
10  113.108.209.1  196.67 ms  AS58466  中国 广东 广州 电信


路由追踪到 广州移动 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.139.129.5 (211.139.129.5), 30 hops max, 60 byte packets
 1  173.212.238.3  0.48 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  46.189.70.25  4.01 ms  AS8881  德国 巴伐利亚州 纽伦堡 versatel.de
 3  62.214.37.130  4.31 ms  AS8881  德国 黑森州 法兰克福 versatel.de
 4  80.81.195.121  6.94 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  223.120.10.153  7.60 ms  AS58453  德国 黑森州 法兰克福 移动
 6  *
 7  *
 8  221.183.25.122  207.61 ms  AS9808  中国 广东 广州 移动
 9  221.176.18.109  209.35 ms  AS9808  中国 广东 广州 移动
10  221.183.19.14  245.68 ms  AS9808  中国 广东 广州 移动
11  *
12  120.198.206.198  223.62 ms  AS56040  中国 广东 广州 移动
13  211.139.129.5  209.53 ms  AS56040  中国 广东 广州 移动


路由追踪到 上海联通精品网 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 60 byte packets
 1  173.212.238.3  0.65 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  46.189.70.25  4.18 ms  AS8881  德国 巴伐利亚州 纽伦堡 versatel.de
 3  62.214.37.134  6.80 ms  AS8881  德国 黑森州 法兰克福 versatel.de
 4  80.150.171.165  4.76 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 5  217.239.43.6  31.83 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  217.239.43.6  31.35 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  80.156.162.218  169.58 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 8  *
 9  218.105.2.198  227.88 ms  AS9929  中国 上海 联通
10  210.13.75.138  363.62 ms  AS9929  中国 上海 联通
11  210.13.66.237  235.99 ms  AS9929  中国 上海 联通
12  *
13  210.13.66.238  231.58 ms  AS9929  中国 上海 联通


路由追踪到 上海电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 60 byte packets
 1  213.136.75.1  0.59 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.172.4  1.20 ms  AS1299  欧洲地区 telia.com
 3  62.115.113.174  23.61 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.122.161  27.90 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.134.139  29.69 ms  AS1299  英国 伦敦 telia.com
 6  80.239.193.226  22.02 ms  AS1299  TELIA.COM 骨干网 telia.com
 7  *
 8  *
 9  *
10  *
11  101.95.95.74  227.31 ms  AS4812  中国 上海 电信
12  58.32.0.1  217.48 ms  AS4812  中国 上海 电信


路由追踪到 北京鹏博士/电信通 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 60 byte packets
 1  173.212.238.3  3.64 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  *
 3  4.69.210.97  153.97 ms  AS3356  美国 加利福尼亚州 洛杉矶 level3.com
 4  4.26.2.118  159.97 ms  AS3356  美国 加利福尼亚州 洛杉矶 level3.com
 5  219.158.117.13  312.74 ms  AS4837  中国 北京 联通
 6  219.158.16.81  307.97 ms  AS4837  中国 北京 联通
 7  219.158.18.65  339.03 ms  AS4837  中国 北京 联通
 8  124.65.194.2  328.61 ms  AS4808  中国 北京 联通
 9  124.65.56.114  324.94 ms  AS4808  中国 北京 联通
10  61.148.156.190  336.96 ms  AS4808  中国 北京 联通
11  *
12  *
13  *
14  *
15  211.167.230.100  270.83 ms  AS4808,AS17964  中国 北京 鹏博士


路由追踪到 北京教育网 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 60 byte packets
 1  213.136.75.1  0.44 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  213.30.248.197  4.55 ms  AS8881  德国 versatel.de
 3  62.214.34.249  5.82 ms  AS8881  德国 versatel.de
 4  62.214.37.130  4.70 ms  AS8881  德国 黑森州 法兰克福 versatel.de
 5  149.11.96.41  4.66 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 6  154.54.56.189  5.10 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 7  154.54.58.238  18.04 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 8  154.54.27.169  90.98 ms  AS174  美国 纽约州 纽约 cogentco.com
 9  154.54.40.106  100.68 ms  AS174  美国 弗吉尼亚州 阿灵顿 cogentco.com
10  154.54.7.158  111.10 ms  AS174  美国 乔治亚州 亚特兰大 cogentco.com
11  154.54.28.70  124.03 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
12  154.54.30.162  139.39 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
13  154.54.42.77  147.87 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
14  154.54.44.86  161.02 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
15  154.54.25.150  159.61 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
16  38.88.196.186  334.03 ms  AS174  美国 加利福尼亚州 洛杉矶 cogentco.com
17  101.4.117.169  338.33 ms  AS4538  中国 北京 教育网
18  101.4.117.97  338.87 ms  AS4538  中国 北京 教育网
19  101.4.114.197  338.53 ms  AS4538  中国 北京 教育网
20  219.224.102.234  337.60 ms  AS4538  中国 北京 教育网
21  202.112.38.158  333.00 ms  AS4538  中国 北京 教育网
22  202.205.109.205  337.07 ms  AS4538  中国 北京 赛尔网络信息资源部 教育网


路由追踪到 北京科技网 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 60 byte packets
 1  173.212.238.3  0.49 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.24.153  6.34 ms  AS3356  德国 level3.com
 3  *
 4  4.68.111.178  4.97 ms  AS3356  德国 黑森州 法兰克福 level3.com
 5  154.54.56.189  7.31 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 6  154.54.58.234  14.27 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 7  130.117.49.154  25.23 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 8  154.54.1.118  194.78 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 9  *
10  159.226.254.5  298.07 ms  AS7497  中国 北京 科技网
11  159.226.254.49  291.82 ms  AS7497  中国 北京 科技网
12  159.226.254.1  282.68 ms  AS7497  中国 北京 科技网


路由追踪到 北京广电网 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 60 byte packets
 1  213.136.75.1  0.49 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.155.130  3.53 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.114.146  29.80 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  80.91.249.10  29.98 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.117.193  29.23 ms  AS1299  TELIA.COM 骨干网 telia.com
 6  62.115.171.223  24.79 ms  AS1299  欧洲地区 telia.com
 7  223.120.10.41  24.81 ms  AS58453  英国 伦敦 移动
 8  *
 9  *
10  221.176.17.57  292.74 ms  AS9808  中国 上海 移动
11  *
12  *
13  *
14  211.156.132.25  285.73 ms  AS7641  中国 北京 chinabtn.com 广电网/联通/电信
15  *
16  *
17  *
18  211.156.140.17  309.25 ms  AS7641  中国 北京 chinabtn.com 广电网/联通/电信


路由追踪到 香港联通 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.160.95.218 (203.160.95.218), 30 hops max, 60 byte packets
 1  173.212.238.3  0.49 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.24.1  6.80 ms  AS3356  德国 level3.com
 3  *
 4  *
 5  195.2.16.106  187.94 ms  AS1273  欧洲地区 vodafone.com
 6  195.2.10.106  199.57 ms  AS1273  中国 香港 vodafone.com
 7  195.2.2.58  157.47 ms  AS1273  新加坡 vodafone.com
 8  195.2.10.177  190.27 ms  AS1273  中国 香港 vodafone.com
 9  195.2.26.66  180.19 ms  AS1273  中国 香港 vodafone.com
10  203.160.95.218  192.45 ms  AS10099  中国 香港 联通


路由追踪到 香港电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.215.232.173 (203.215.232.173), 30 hops max, 60 byte packets
 1  173.212.238.3  0.47 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  *
 3  *
 4  195.122.182.170  6.47 ms  AS3356  德国 黑森州 法兰克福 level3.com
 5  *
 6  203.215.232.173  290.27 ms  AS4134  中国 香港 电信


路由追踪到 香港电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.8.25.187 (203.8.25.187), 30 hops max, 60 byte packets
 1  173.212.238.3  0.78 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.24.153  8.18 ms  AS3356  德国 level3.com
 3  *
 4  *
 5  212.187.165.22  14.02 ms  AS3356  英国 伦敦 level3.com
 6  *
 7  *
 8  *
 9  203.8.25.187  216.23 ms  AS4809  中国 香港 电信


路由追踪到 香港移动 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.142.105.9 (203.142.105.9), 30 hops max, 60 byte packets
 1  173.212.238.3  0.64 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  *
 3  *
 4  213.254.196.1  9.95 ms  AS3257  德国 黑森州 法兰克福 gtt.net
 5  213.200.115.161  6.68 ms  AS3257  德国 黑森州 法兰克福 gtt.net
 6  46.33.85.26  10.02 ms  AS3257  德国 黑森州 法兰克福 gtt.net
 7  *
 8  223.118.3.74  195.35 ms  AS58453  中国 香港 移动
 9  223.119.0.2  195.70 ms  AS58453  中国 香港 移动
10  223.119.0.2  206.04 ms  AS58453  中国 香港 移动
11  203.142.100.22  196.20 ms  AS9231  中国 香港 移动
12  203.142.105.9  194.16 ms  AS9231  中国 香港 移动


路由追踪到 香港HGC (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 218.188.104.30 (218.188.104.30), 30 hops max, 60 byte packets
 1  173.212.238.3  32.63 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.26.21  4.37 ms  AS3356  德国 巴伐利亚州 纽伦堡 level3.com
 3  4.69.210.97  151.67 ms  AS3356  美国 加利福尼亚州 洛杉矶 level3.com
 4  67.17.160.102  151.36 ms  AS3549,AS4323  美国 加利福尼亚州 洛杉矶 level3.com
 5  218.189.5.146  151.51 ms  AS9304  美国 加利福尼亚州 洛杉矶 hgc.com.hk
 6  118.143.224.105  305.24 ms  AS9304  中国 香港 hgc.com.hk
 7  218.189.5.24  240.21 ms  AS9304  中国 香港 hgc.com.hk
 8  218.188.104.30  238.02 ms  AS9304  中国 香港 hgc.com.hk


路由追踪到 香港HKBN (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 210.6.23.239 (210.6.23.239), 30 hops max, 60 byte packets
 1  213.136.75.1  0.47 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.171.252  1.29 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.113.146  172.91 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.116.21  18.84 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.116.8  172.49 ms  AS1299  TELIA.COM 骨干网 telia.com
 6  80.239.133.10  173.89 ms  AS1299  TELIA.COM 骨干网 telia.com
 7  61.244.225.68  173.75 ms  AS9269  中国 香港 hkbn.com.hk
 8  203.186.235.137  176.58 ms  AS9269  中国 香港 hkbn.com.hk
 9  203.80.215.70  176.46 ms  AS9269  中国 香港 hkbn.com.hk
10  203.80.215.70  173.12 ms  AS9269  中国 香港 hkbn.com.hk
11  210.6.23.239  173.98 ms  AS9269  中国 香港 hkbn.com.hk


路由追踪到 香港PCCW (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 202.85.125.60 (202.85.125.60), 30 hops max, 60 byte packets
 1  213.136.75.1  0.41 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.172.4  1.08 ms  AS1299  欧洲地区 telia.com
 3  62.115.113.146  3.82 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.114.89  4.01 ms  AS1299  德国 黑森州 法兰克福 telia.com
 5  62.115.116.17  3.86 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  213.248.68.71  4.32 ms  AS1299  TELIA.COM 骨干网 telia.com
 7  *
 8  63.223.15.74  319.68 ms  AS3491  中国 香港 pccw.com
 9  63.218.61.174  306.80 ms  AS3491  中国 香港 pccw.com
10  203.215.254.210  306.67 ms  AS9925  中国 香港 pbase.net
11  202.153.99.204  303.13 ms  AS9925  中国 香港 pbase.net
12  203.215.244.33  299.84 ms  AS9925  中国 香港 pbase.net
13  202.85.125.60  309.63 ms  AS9925  中国 香港 pccw.com


路由追踪到 香港TGT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 61.4.15.137 (61.4.15.137), 30 hops max, 60 byte packets
 1  213.136.75.1  0.53 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.171.252  1.02 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.113.146  152.66 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.114.98  151.63 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.112.242  98.04 ms  AS1299  美国 弗吉尼亚州 阿什本 telia.com
 6  62.115.121.220  156.91 ms  AS1299  美国 加利福尼亚州 洛杉矶 telia.com
 7  213.248.78.146  152.75 ms  AS1299  美国 加利福尼亚州 洛杉矶 telia.com
 8  85.95.27.142  306.85 ms  AS15412  日本 东京都 东京 globalcloudxchange.com
 9  85.95.26.205  305.11 ms  AS15412  中国 香港 globalcloudxchange.com
10  85.95.25.90  310.89 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
11  80.77.0.198  315.02 ms  AS15412  中国 香港 globalcloudxchange.com
12  203.78.72.112  303.53 ms  AS10098  中国 香港 towngastelecom.com
13  203.78.73.73  313.14 ms  AS10098  中国 香港 towngastelecom.com
14  203.78.72.177  315.68 ms  AS10098  中国 香港 towngastelecom.com
15  202.123.74.34  315.47 ms  AS10098  中国 香港 towngastelecom.com
16  202.123.74.2  307.31 ms  AS10098  中国 香港 towngastelecom.com
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


路由追踪到 香港WTT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 59.152.252.242 (59.152.252.242), 30 hops max, 60 byte packets
 1  173.212.238.3  0.59 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  46.189.70.25  4.13 ms  AS8881  德国 巴伐利亚州 纽伦堡 versatel.de
 3  62.214.37.142  4.48 ms  AS8881  德国 黑森州 法兰克福 versatel.de
 4  80.81.195.39  191.59 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  115.160.187.110  191.73 ms  AS9381  中国 香港 wtthk.com
 6  *
 7  59.152.252.196  193.92 ms  AS9381  中国 香港 wtthk.com
 8  59.152.252.242  191.80 ms  AS9381  中国 香港 wtthk.com


路由追踪到 新加坡电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.215.233.1 (203.215.233.1), 30 hops max, 60 byte packets
 1  173.212.238.3  0.47 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  *
 3  *
 4  195.122.182.170  9.20 ms  AS3356  德国 黑森州 法兰克福 level3.com
 5  203.215.233.1  171.92 ms  AS4134  新加坡 电信


路由追踪到 新加坡电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 183.91.61.1 (183.91.61.1), 30 hops max, 60 byte packets
 1  173.212.238.3  0.69 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.24.1  6.42 ms  AS3356  德国 level3.com
 3  *
 4  *
 5  212.187.165.22  16.38 ms  AS3356  英国 伦敦 level3.com
 6  *
 7  183.91.61.1  204.95 ms  AS4809  新加坡 电信


路由追踪到 新加坡Singtel (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 118.201.1.11 (118.201.1.11), 30 hops max, 60 byte packets
 1  173.212.238.3  2.63 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.24.153  6.34 ms  AS3356  德国 level3.com
 3  *
 4  4.68.73.130  27.92 ms  AS3356  英国 伦敦 level3.com
 5  203.208.166.249  251.64 ms  AS7473  新加坡 singtel.com
 6  203.208.158.186  242.75 ms  AS7473  新加坡 singtel.com
 7  203.208.168.242  249.21 ms  AS7473  新加坡 singtel.com
 8  *
 9  165.21.49.126  243.64 ms  AS3758  新加坡 singtel.com
10  203.125.232.130  256.60 ms  AS3758  新加坡 singtel.com
11  118.201.1.11  241.81 ms  AS3758  新加坡 singtel.com


路由追踪到 新加坡StarHub (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.116.46.162 (203.116.46.162), 30 hops max, 60 byte packets
 1  173.212.238.3  1.29 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  10.0.50.2  0.56 ms  *  局域网
 3  80.249.212.55  178.01 ms  AS1200,AS9009  荷兰 北荷兰省 阿姆斯特丹 ams-ix.net
 4  203.118.12.41  182.12 ms  AS4657  新加坡 starhub.com
 5  203.118.16.30  177.87 ms  AS4657  新加坡 starhub.com
 6  203.117.188.42  179.34 ms  AS4657  新加坡 starhub.com
 7  *
 8  203.116.46.162  182.11 ms  AS4657  新加坡 starhub.com


路由追踪到 新加坡M1 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.123.8.123 (203.123.8.123), 30 hops max, 60 byte packets
 1  213.136.75.1  0.40 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.155.130  3.71 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.139.164  16.13 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  *
 5  62.115.134.135  31.12 ms  AS1299  英国 伦敦 telia.com
 6  80.239.193.226  21.10 ms  AS1299  TELIA.COM 骨干网 telia.com
 7  *
 8  *
 9  218.185.242.170  221.69 ms  AS4809  新加坡 电信
10  129.126.31.100  281.42 ms  AS17547  新加坡 m1.com.sg
11  203.211.159.50  276.72 ms  AS17547  新加坡 m1.com.sg
12  203.123.8.123  277.63 ms  AS17547  新加坡 m1.com.sg


路由追踪到 新加坡AWS (TCP 模式, 最大 50 跃点)
============================================================
traceroute to 13.228.0.251 (13.228.0.251), 50 hops max, 60 byte packets
 1  173.212.238.3  0.51 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  46.189.70.25  6.74 ms  AS8881  德国 巴伐利亚州 纽伦堡 versatel.de
 3  62.214.37.134  4.38 ms  AS8881  德国 黑森州 法兰克福 versatel.de
 4  80.150.171.165  4.62 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 5  62.154.15.118  5.36 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  62.157.249.186  6.18 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  129.250.4.10  5.08 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 8  129.250.7.63  178.08 ms  AS2914  新加坡 ntt.com
 9  129.250.3.100  168.87 ms  AS2914  新加坡 ntt.com
10  129.250.2.240  177.00 ms  AS2914  新加坡 ntt.com
11  116.51.17.130  178.61 ms  AS2914  新加坡 ntt.com
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  13.228.0.251  179.69 ms  AS16509  新加坡 amazon.com


路由追踪到 日本NTT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 61.213.155.84 (61.213.155.84), 30 hops max, 60 byte packets
 1  213.136.75.1  0.49 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.171.252  1.46 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.113.146  4.10 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.114.91  4.01 ms  AS1299  德国 黑森州 法兰克福 telia.com
 5  62.115.147.65  8.37 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  129.250.4.16  16.58 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 7  129.250.4.96  90.31 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
 8  129.250.3.189  154.08 ms  AS2914  NTT.COM 骨干网 ntt.com
 9  129.250.3.192  233.35 ms  AS2914  日本 东京都 东京 ntt.com
10  129.250.3.28  246.97 ms  AS2914  日本 东京都 东京 ntt.com
11  61.213.179.34  256.41 ms  AS2914  日本 东京都 东京 ntt.com
12  *
13  *
14  61.213.155.84  260.68 ms  AS2914  日本 东京都 东京 ntt.com


路由追踪到 日本IIJ (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 202.232.15.70 (202.232.15.70), 30 hops max, 60 byte packets
 1  173.212.238.3  0.37 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.24.1  9.15 ms  AS3356  德国 level3.com
 3  *
 4  4.69.167.162  16.12 ms  AS3356  英国 伦敦 level3.com
 5  210.130.133.37  13.81 ms  AS2497  英国 伦敦 iij.ad.jp
 6  58.138.98.133  216.46 ms  AS2497  日本 东京都 东京 iij.ad.jp
 7  58.138.102.210  219.45 ms  AS2497  日本 东京都 东京 iij.ad.jp
 8  210.130.142.114  216.75 ms  AS2497  日本 东京都 iij.ad.jp
 9  202.232.15.70  217.25 ms  AS2497  日本 iij.ad.jp


路由追踪到 日本SoftBank (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 210.175.32.26 (210.175.32.26), 30 hops max, 60 byte packets
 1  213.136.75.1  0.48 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.171.252  2.69 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.113.174  165.58 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  80.91.249.10  169.70 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.112.244  96.87 ms  AS1299  TELIA.COM 骨干网 telia.com
 6  213.155.130.129  166.14 ms  AS1299  TELIA.COM 骨干网 telia.com
 7  213.248.88.78  236.42 ms  AS1299  美国 加利福尼亚州 圣何塞 telia.com
 8  *
 9  143.90.232.241  247.48 ms  AS4725  日本 东京都 东京 odn.ne.jp
10  143.90.47.33  242.94 ms  AS4725  日本 odn.ne.jp
11  143.90.26.230  247.06 ms  AS4725  日本 odn.ne.jp
12  143.90.54.30  252.80 ms  AS4725  日本 odn.ne.jp
13  210.175.32.123  252.98 ms  AS4725  日本 odn.ne.jp
14  210.175.32.26  255.33 ms  AS4725  日本 odn.ne.jp


路由追踪到 日本KDDI (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 106.162.242.108 (106.162.242.108), 30 hops max, 60 byte packets
 1  173.212.238.3  0.67 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  *
 3  *
 4  4.7.17.18  153.95 ms  AS3356  美国 加利福尼亚州 level3.com
 5  111.87.3.121  149.73 ms  AS2516  美国 加利福尼亚州 帕洛阿尔托 kddi.com
 6  106.187.13.9  258.23 ms  AS2516  日本 东京都 东京 kddi.com
 7  27.90.191.226  257.11 ms  AS2516  日本 kddi.com
 8  111.107.101.98  261.82 ms  AS2516  日本 kddi.com
 9  59.128.99.97  253.21 ms  AS2516  日本 kddi.com
10  111.87.220.242  259.45 ms  AS2516  日本 kddi.com
11  106.162.242.108  253.93 ms  AS2516  日本 kddi.com


路由追踪到 日本电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.215.236.3 (203.215.236.3), 30 hops max, 60 byte packets
 1  213.136.75.1  0.44 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.171.252  1.44 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.140.76  7.73 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.121.1  3.98 ms  AS1299  德国 黑森州 法兰克福 telia.com
 5  202.97.58.149  4.51 ms  AS4134  德国 黑森州 法兰克福 电信
 6  *
 7  202.97.6.82  251.40 ms  AS4134  日本 东京都 东京 电信
 8  203.215.236.3  271.72 ms  AS4134  日本 东京都 东京 电信


路由追踪到 日本电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 202.55.27.4 (202.55.27.4), 30 hops max, 60 byte packets
 1  173.212.238.3  0.47 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  *
 3  *
 4  *
 5  212.187.165.22  16.49 ms  AS3356  英国 伦敦 level3.com
 6  *
 7  *
 8  202.55.27.4  257.45 ms  AS4809  日本 东京都 东京 电信


路由追踪到 日本AWS (TCP 模式, 最大 50 跃点)
============================================================
traceroute to 13.112.63.251 (13.112.63.251), 50 hops max, 60 byte packets
 1  173.212.238.3  0.53 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  46.189.70.25  4.04 ms  AS8881  德国 巴伐利亚州 纽伦堡 versatel.de
 3  62.214.37.130  4.38 ms  AS8881  德国 黑森州 法兰克福 versatel.de
 4  80.150.171.165  4.33 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 5  217.239.45.190  7.20 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  62.157.249.186  5.29 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  129.250.4.16  5.49 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 8  129.250.4.96  90.50 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
 9  129.250.3.189  156.14 ms  AS2914  NTT.COM 骨干网 ntt.com
10  129.250.3.192  244.13 ms  AS2914  日本 东京都 东京 ntt.com
11  129.250.6.129  248.68 ms  AS2914  日本 东京都 东京 ntt.com
12  61.213.161.46  240.65 ms  AS2914  日本 东京都 东京 ntt.com
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  52.95.31.33  242.53 ms  AS16509  日本 东京都 东京 amazon.com
21  52.95.31.171  247.81 ms  AS16509  日本 东京都 东京 amazon.com
22  52.95.31.220  252.04 ms  AS16509  日本 东京都 东京 amazon.com
23  52.95.31.98  256.07 ms  AS16509  日本 东京都 东京 amazon.com
24  54.239.52.187  251.93 ms  AS16509  日本 东京都 东京 amazon.com
25  *
26  *
27  *
28  *
29  *
30  *
31  13.112.63.251  237.16 ms  AS16509  日本 东京都 东京 amazon.com


路由追踪到 韩国KT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 59.10.184.64 (59.10.184.64), 30 hops max, 60 byte packets
 1  173.212.238.3  0.38 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.24.153  6.85 ms  AS3356  德国 level3.com
 3  *
 4  4.68.111.178  4.68 ms  AS3356  德国 黑森州 法兰克福 level3.com
 5  154.54.37.29  6.77 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 6  130.117.0.121  18.54 ms  AS174  荷兰 北荷兰省 阿姆斯特丹 cogentco.com
 7  154.54.56.93  114.91 ms  AS174  英国 伦敦 cogentco.com
 8  154.54.44.166  120.71 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 9  154.54.42.89  116.38 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
10  154.54.26.129  114.85 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
11  154.54.6.221  112.49 ms  AS174  美国 伊利诺伊州 芝加哥 cogentco.com
12  154.54.42.165  126.10 ms  AS174  美国 伊利诺伊州 芝加哥 cogentco.com
13  154.54.5.89  140.77 ms  AS174  美国 科罗拉多州 丹佛 cogentco.com
14  154.54.42.97  147.00 ms  AS174  美国 犹他州 盐湖城 cogentco.com
15  154.54.44.141  165.73 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
16  154.54.0.178  166.93 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
17  38.104.140.134  164.49 ms  AS174  美国 加利福尼亚州 圣何塞 cogentco.com
18  112.174.87.13  751.35 ms  AS4766  KT.COM 骨干网 kt.com
19  112.174.85.233  293.78 ms  AS4766  韩国 首尔 kt.com
20  *
21  112.174.120.66  290.10 ms  AS4766  韩国 首尔 kt.com
22  112.189.29.102  291.02 ms  AS4766  韩国 首尔 kt.com
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


路由追踪到 韩国SK (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 175.122.253.62 (175.122.253.62), 30 hops max, 60 byte packets
 1  213.136.75.1  0.38 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  10.0.50.3  0.47 ms  *  局域网
 3  *
 4  39.115.132.86  225.28 ms  AS9318  韩国 skbroadband.com
 5  175.124.172.249  227.64 ms  AS9318  韩国 首尔 skbroadband.com
 6  *
 7  175.122.253.62  231.26 ms  AS9318  韩国 skbroadband.com


路由追踪到 韩国LG (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.174.62.44 (211.174.62.44), 30 hops max, 60 byte packets
 1  173.212.238.3  2.37 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.24.53  7.33 ms  AS3356  德国 level3.com
 3  4.69.209.157  154.03 ms  AS3356  美国 加利福尼亚州 圣何塞 level3.com
 4  4.68.111.134  154.12 ms  AS3356  LEVEL3.COM 骨干网 level3.com
 5  203.255.234.133  153.94 ms  AS3786  韩国 首尔 uplus.co.kr
 6  1.208.145.205  281.15 ms  AS3786  韩国 首尔 uplus.co.kr
 7  *
 8  *
 9  1.213.150.77  293.74 ms  AS3786  韩国 首尔 uplus.co.kr
10  1.208.104.114  284.06 ms  AS3786  韩国 首尔 uplus.co.kr
11  114.108.170.54  285.88 ms  AS3786  韩国 首尔 uplus.co.kr
12  114.108.170.50  285.27 ms  AS3786  韩国 首尔 uplus.co.kr
13  211.174.62.44  293.05 ms  AS3786  韩国 首尔 uplus.co.kr


路由追踪到 韩国电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 218.185.246.1 (218.185.246.1), 30 hops max, 60 byte packets
 1  213.136.75.1  0.41 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.171.252  1.55 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.113.174  26.08 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.122.161  27.89 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.134.135  28.64 ms  AS1299  英国 伦敦 telia.com
 6  80.239.193.226  21.00 ms  AS1299  TELIA.COM 骨干网 telia.com
 7  *
 8  218.185.246.1  221.45 ms  AS4809  韩国 首尔 电信


路由追踪到 韩国AWS (TCP 模式, 最大 50 跃点)
============================================================
traceroute to 13.124.63.251 (13.124.63.251), 50 hops max, 60 byte packets
 1  173.212.238.3  0.57 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.26.21  4.26 ms  AS3356  德国 巴伐利亚州 纽伦堡 level3.com
 3  129.250.9.5  4.54 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 4  129.250.4.186  5.30 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.6.38  6.96 ms  AS2914  NTT.COM 骨干网 ntt.com
 6  129.250.4.96  90.92 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
 7  129.250.3.189  153.93 ms  AS2914  NTT.COM 骨干网 ntt.com
 8  129.250.3.192  248.17 ms  AS2914  日本 东京都 东京 ntt.com
 9  129.250.6.129  246.52 ms  AS2914  日本 东京都 东京 ntt.com
10  61.213.161.46  235.71 ms  AS2914  日本 东京都 东京 ntt.com
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  54.239.122.28  272.00 ms  AS16509  韩国 首尔 amazon.com
22  *
23  54.239.122.22  282.89 ms  AS16509  韩国 首尔 amazon.com
24  *
25  *
26  *
27  13.124.63.251  272.22 ms  AS16509  韩国 首尔 amazon.com


路由追踪到 台湾Chief (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 202.133.242.116 (202.133.242.116), 30 hops max, 60 byte packets
 1  213.136.75.1  0.62 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  80.249.211.208  261.66 ms  AS1200,AS9009  荷兰 北荷兰省 阿姆斯特丹 ams-ix.net
 3  *
 4  *
 5  113.21.95.72  257.81 ms  AS17408  中国 台湾 台北市 chief.com.tw
 6  *
 7  202.133.242.114  258.05 ms  AS17408  中国 台湾 台北市 chief.com.tw
 8  202.133.242.116  258.65 ms  AS17408  中国 台湾 台北市 chief.com.tw


路由追踪到 台湾APTG (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 210.200.69.90 (210.200.69.90), 30 hops max, 60 byte packets
 1  173.212.238.3  2.29 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  46.189.70.25  5.49 ms  AS8881  德国 巴伐利亚州 纽伦堡 versatel.de
 3  62.214.37.134  4.51 ms  AS8881  德国 黑森州 法兰克福 versatel.de
 4  80.150.171.165  4.51 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 5  62.154.14.150  17.63 ms  AS3320  英国 伦敦 telekom.de
 6  80.157.128.226  16.10 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  202.40.148.33  17.18 ms  AS4637,AS10026  英国 伦敦 reach.com
 8  202.84.141.125  231.74 ms  AS4637,AS10026  TELSTRA.COM 骨干网 telstra.com
 9  202.84.138.182  267.18 ms  AS4637,AS10026  中国 台湾 台北市 telstra.com
10  202.84.137.253  267.24 ms  AS4637,AS10026  中国 台湾 台北市 telstra.com
11  210.176.44.78  266.76 ms  AS4637,AS10026  中国 台湾 台北市 telstra.com
12  203.79.253.161  266.13 ms  AS17709  中国 台湾 台北市 aptg.com.tw
13  211.76.100.53  266.59 ms  AS17709  中国 台湾 台北市 aptg.com.tw
14  210.200.80.254  267.08 ms  AS131142  中国 台湾 台北市 aptg.com.tw
15  *
16  210.200.69.90  271.04 ms  AS131142  中国 台湾 台北市 aptg.com.tw


路由追踪到 台湾CHT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.75.129.162 (203.75.129.162), 30 hops max, 60 byte packets
 1  213.136.75.1  5.16 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  10.0.50.3  0.47 ms  *  局域网
 3  *
 4  220.128.6.38  256.69 ms  AS3462  中国 台湾 新北市 cht.com.tw
 5  220.128.7.42  254.96 ms  AS3462  中国 台湾 新北市 cht.com.tw
 6  220.128.26.78  242.76 ms  AS3462  中国 台湾 台北市 cht.com.tw
 7  220.128.1.5  248.04 ms  AS3462  中国 台湾 台北市 cht.com.tw
 8  211.22.229.45  248.24 ms  AS3462  中国 台湾 台北市 cht.com.tw
 9  1.1.1.2  244.77 ms  AS13335  CLOUDFLARE.COM apnic.net
10  *
11  203.75.129.162  243.32 ms  AS3462  中国 台湾 台北市 cht.com.tw


路由追踪到 台湾TFN (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 219.87.66.3 (219.87.66.3), 30 hops max, 60 byte packets
 1  213.136.75.1  0.43 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  10.0.50.3  0.33 ms  *  局域网
 3  62.140.24.53  6.52 ms  AS3356  德国 level3.com
 4  *
 5  4.79.238.26  153.35 ms  AS3356  美国 加利福尼亚州 圣何塞 level3.com
 6  60.199.20.33  288.33 ms  AS9924  中国 台湾 twmbroadband.com
 7  60.199.18.10  283.98 ms  AS9924  中国 台湾 台北市 twmbroadband.com
 8  60.199.3.122  282.72 ms  AS9924  中国 台湾 台北市 twmbroadband.com
 9  60.199.16.62  281.05 ms  AS9924  中国 台湾 台北市 twmbroadband.com
10  219.87.66.3  283.57 ms  AS9924  中国 台湾 台北市 twmbroadband.com


路由追踪到 台湾FET (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.73.144.38 (211.73.144.38), 30 hops max, 60 byte packets
 1  173.212.238.3  0.45 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  195.16.162.233  4.64 ms  AS3356  德国 黑森州 法兰克福 level3.com
 3  *
 4  129.250.9.5  4.76 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.6.38  15.51 ms  AS2914  NTT.COM 骨干网 ntt.com
 6  129.250.6.38  4.66 ms  AS2914  NTT.COM 骨干网 ntt.com
 7  129.250.4.96  90.31 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
 8  129.250.3.189  159.77 ms  AS2914  NTT.COM 骨干网 ntt.com
 9  129.250.3.192  240.99 ms  AS2914  日本 东京都 东京 ntt.com
10  129.250.7.15  275.15 ms  AS2914  NTT.COM 骨干网 ntt.com
11  129.250.2.106  279.92 ms  AS2914  NTT.COM 骨干网 ntt.com
12  199.245.16.34  265.14 ms  AS2914  中国 台湾 台北市 ntt.com
13  192.72.155.25  275.20 ms  AS4780  中国 台湾 台北市 fetnet.net
14  139.175.59.222  276.11 ms  AS4780  中国 台湾 台北市 fetnet.net
15  *
16  *
17  *
18  211.73.144.38  272.39 ms  AS9674  中国 台湾 fetnet.net


路由追踪到 台湾KBT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 61.63.0.102 (61.63.0.102), 30 hops max, 60 byte packets
 1  213.136.75.1  0.58 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.171.252  3.43 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.114.148  148.48 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.123.13  152.26 ms  AS1299  法国 法兰西岛大区 巴黎 telia.com
 5  62.115.112.242  98.25 ms  AS1299  美国 弗吉尼亚州 阿什本 telia.com
 6  62.115.137.37  148.64 ms  AS1299  TELIA.COM 骨干网 telia.com
 7  62.115.175.219  158.81 ms  AS1299  TELIA.COM 骨干网 telia.com
 8  203.78.181.201  283.66 ms  AS9505  中国 台湾 台北市 twgate.net
 9  175.41.61.174  281.59 ms  AS9505  中国 台湾 台北市 twgate.net
10  *
11  203.187.9.241  287.04 ms  AS9416  中国 台湾 台北市 kbtelecom.net
12  203.187.9.238  289.87 ms  AS9416  中国 台湾 台北市 kbtelecom.net
13  58.86.1.174  283.69 ms  AS18042  中国 台湾 台北市 kbtelecom.net
14  58.86.0.94  276.01 ms  AS18042  中国 台湾 台北市 kbtelecom.net
15  58.86.0.26  290.39 ms  AS18042  中国 台湾 台北市 kbtelecom.net
16  61.63.0.102  289.18 ms  AS18042  中国 台湾 台北市 kbtelecom.net


路由追踪到 台湾TAIFO (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 103.31.196.203 (103.31.196.203), 30 hops max, 60 byte packets
 1  213.136.75.1  0.58 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.155.130  3.64 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.114.148  148.50 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.123.13  152.10 ms  AS1299  法国 法兰西岛大区 巴黎 telia.com
 5  *
 6  62.115.121.220  152.20 ms  AS1299  美国 加利福尼亚州 洛杉矶 telia.com
 7  213.248.78.146  152.57 ms  AS1299  美国 加利福尼亚州 洛杉矶 telia.com
 8  85.95.26.86  253.19 ms  AS15412  日本 东京都 东京 globalcloudxchange.com
 9  85.95.27.102  294.59 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
10  80.77.2.198  290.69 ms  AS15412  中国 台湾 台北市 globalcloudxchange.com
11  *
12  113.21.95.123  289.94 ms  AS17408  中国 台湾 台北市 chief.com.tw
13  *
14  103.31.197.122  292.21 ms  AS131584  中国 台湾 台北市 taifo.com.tw
15  *
16  103.31.197.70  287.88 ms  AS131584  中国 台湾 台北市 taifo.com.tw
17  103.31.196.203  295.40 ms  AS131584  中国 台湾 台北市 taifo.com.tw


路由追踪到 美国洛杉矶电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  173.212.238.3  0.53 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  *
 3  *
 4  195.122.182.218  14.97 ms  AS3356  德国 黑森州 法兰克福 level3.com
 5  218.30.33.17  95.75 ms  AS4134  美国 ctamericas.com


路由追踪到 美国洛杉矶电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 66.102.252.100 (66.102.252.100), 30 hops max, 60 byte packets
 1  173.212.238.3  0.61 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  *
 3  *
 4  *
 5  212.187.165.22  16.98 ms  AS3356  英国 伦敦 level3.com
 6  *
 7  *
 8  66.102.252.100  155.01 ms  AS4809  美国 ctamericas.com


路由追踪到 美国洛杉矶PCCW (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 63.218.42.81 (63.218.42.81), 30 hops max, 60 byte packets
 1  173.212.238.3  0.63 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.24.1  6.55 ms  AS3356  德国 level3.com
 3  4.69.163.86  4.90 ms  AS3356  德国 黑森州 法兰克福 level3.com
 4  63.218.233.37  5.23 ms  AS3491  德国 黑森州 法兰克福 pccw.com
 5  63.218.42.81  151.18 ms  AS3491  美国 加利福尼亚州 洛杉矶 pccw.com


路由追踪到 美国洛杉矶HE (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 66.220.18.42 (66.220.18.42), 30 hops max, 60 byte packets
 1  173.212.238.3  1.64 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  10.0.50.2  0.56 ms  *  局域网
 3  *
 4  72.52.92.213  36.55 ms  AS6939  英国 伦敦 he.net
 5  72.52.92.166  87.77 ms  AS6939  美国 纽约州 纽约 he.net
 6  184.105.223.165  91.00 ms  AS6939  美国 弗吉尼亚州 阿什本 he.net
 7  184.105.80.202  151.62 ms  AS6939  美国 加利福尼亚州 洛杉矶 he.net
 8  66.220.18.42  154.40 ms  AS6939  美国 加利福尼亚州 洛杉矶 he.net


路由追踪到 美国洛杉矶GTT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 173.205.77.98 (173.205.77.98), 30 hops max, 60 byte packets
 1  173.212.238.3  0.34 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.24.53  6.40 ms  AS3356  德国 level3.com
 3  *
 4  213.254.196.1  6.58 ms  AS3257  德国 黑森州 法兰克福 gtt.net
 5  89.149.181.102  149.91 ms  AS3257  美国 加利福尼亚州 洛杉矶 gtt.net
 6  173.205.77.98  152.86 ms  AS3257  美国 加利福尼亚州 洛杉矶 gtt.net


路由追踪到 美国旧金山ATT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 12.169.215.33 (12.169.215.33), 30 hops max, 60 byte packets
 1  213.136.75.1  0.56 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  213.30.248.197  4.40 ms  AS8881  德国 versatel.de
 3  62.214.34.249  4.38 ms  AS8881  德国 versatel.de
 4  62.214.37.134  4.51 ms  AS8881  德国 黑森州 法兰克福 versatel.de
 5  80.150.171.165  4.59 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 6  217.239.40.210  97.68 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  192.205.34.181  92.33 ms  AS7018  美国 att.com
 8  12.122.131.102  162.86 ms  AS7018  美国 纽约州 纽约 att.com
 9  12.122.2.237  163.97 ms  AS7018  美国 伊利诺伊州 芝加哥 att.com
10  12.122.2.53  167.93 ms  AS7018  美国 伊利诺伊州 芝加哥 att.com
11  12.122.1.174  164.82 ms  AS7018  美国 加利福尼亚州 旧金山 att.com
12  12.122.110.13  164.19 ms  AS7018  美国 加利福尼亚州 att.com
13  12.244.156.30  166.22 ms  AS7018  美国 加利福尼亚州 att.com
14  12.169.215.33  165.40 ms  AS7018  美国 加利福尼亚州 att.com


路由追踪到 美国纽约TATA (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 66.198.181.100 (66.198.181.100), 30 hops max, 60 byte packets
 1  173.212.238.3  0.43 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.24.1  6.60 ms  AS3356  德国 level3.com
 3  *
 4  195.219.50.49  6.98 ms  AS6453  德国 黑森州 法兰克福 tatacommunications.com
 5  195.219.50.21  94.34 ms  AS6453  德国 黑森州 法兰克福 tatacommunications.com
 6  5.23.30.16  91.84 ms  AS6453  德国 黑森州 法兰克福 tatacommunications.com
 7  195.219.194.149  94.17 ms  AS6453  荷兰 北荷兰省 阿姆斯特丹 tatacommunications.com
 8  195.219.194.6  91.51 ms  AS6453  荷兰 北荷兰省 阿姆斯特丹 tatacommunications.com
 9  80.231.131.160  94.43 ms  AS6453  英国 伦敦 tatacommunications.com
10  80.231.131.158  91.83 ms  AS6453  美国 纽约州 纽约 tatacommunications.com
11  216.6.90.21  94.53 ms  AS6453  美国 纽约州 纽约 tatacommunications.com
12  216.6.90.73  92.44 ms  AS6453  美国 纽约州 纽约 tatacommunications.com
13  209.58.75.198  93.73 ms  AS6453  美国 纽约州 纽约 tatacommunications.com
14  66.198.181.100  94.06 ms  AS6453  美国 纽约州 纽约 tatacommunications.com


路由追踪到 美国圣何塞电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  173.212.238.3  0.68 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.24.1  6.37 ms  AS3356  德国 level3.com
 3  *
 4  195.122.182.170  7.78 ms  AS3356  德国 黑森州 法兰克福 level3.com
 5  218.30.33.17  91.89 ms  AS4134  美国 ctamericas.com


路由追踪到 美国圣何塞NTT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 23.11.26.62 (23.11.26.62), 30 hops max, 60 byte packets
 1  213.136.75.1  0.33 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.172.4  1.01 ms  AS1299  欧洲地区 telia.com
 3  62.115.113.146  3.90 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.114.89  4.14 ms  AS1299  德国 黑森州 法兰克福 telia.com
 5  62.115.147.65  4.63 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  129.250.4.16  6.70 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 7  129.250.4.96  93.10 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
 8  129.250.3.85  95.06 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
 9  129.250.6.237  154.48 ms  AS2914  NTT.COM 骨干网 ntt.com
10  129.250.3.121  156.06 ms  AS2914  NTT.COM 骨干网 ntt.com
11  129.250.3.163  149.58 ms  AS2914  NTT.COM 骨干网 ntt.com
12  23.11.26.62  152.19 ms  AS2914  美国 加利福尼亚州 圣何塞 akamai.com


路由追踪到 美国费利蒙HE (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 72.52.104.74 (72.52.104.74), 30 hops max, 60 byte packets
 1  173.212.238.3  0.46 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  80.81.192.172  10.74 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 3  72.52.92.13  16.43 ms  AS6939  法国 法兰西岛大区 巴黎 he.net
 4  184.105.81.77  85.13 ms  AS6939  美国 纽约州 纽约 he.net
 5  4.68.70.50  86.21 ms  AS3356  LEVEL3.COM 骨干网 level3.com
 6  184.105.81.61  153.38 ms  AS6939  美国 加利福尼亚州 费利蒙 he.net
 7  72.52.104.74  152.14 ms  AS6939  美国 加利福尼亚州 费利蒙 he.net


路由追踪到 美国达拉斯Level3 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 205.216.62.38 (205.216.62.38), 30 hops max, 60 byte packets
 1  173.212.238.3  1.23 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.24.1  8.05 ms  AS3356  德国 level3.com
 3  *
 4  63.235.42.5  93.02 ms  AS209  美国 科罗拉多州 科罗拉多斯普林斯 centurylink.com
 5  67.14.14.26  105.97 ms  AS209  美国 乔治亚州 亚特兰大 centurylink.com
 6  216.34.172.50  132.44 ms  AS3561  美国 德克萨斯州 达拉斯 centurylink.com
 7  216.34.164.106  123.47 ms  AS3561  美国 德克萨斯州 达拉斯 centurylink.com
 8  205.216.7.204  130.72 ms  AS3561  美国 德克萨斯州 达拉斯 centurylink.com
 9  *
10  205.216.62.38  131.08 ms  AS3561  美国 德克萨斯州 达拉斯 centurylink.com


路由追踪到 美国迈阿密ZAYO (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 64.125.191.144 (64.125.191.144), 30 hops max, 60 byte packets
 1  213.136.75.1  0.67 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.36.237  7.04 ms  AS1299  TELIA.COM 骨干网 telia.com
 3  62.115.113.146  4.33 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.142.47  4.06 ms  AS1299  德国 黑森州 法兰克福 telia.com
 5  62.115.148.105  9.13 ms  AS1299  TELIA.COM 骨干网 telia.com
 6  64.125.30.254  113.05 ms  AS6461  德国 黑森州 法兰克福 zayo.com
 7  64.125.29.54  114.62 ms  AS6461  德国 黑森州 法兰克福 zayo.com
 8  64.125.29.59  112.99 ms  AS6461  荷兰 北荷兰省 阿姆斯特丹 zayo.com
 9  64.125.29.80  112.80 ms  AS6461  荷兰 北荷兰省 阿姆斯特丹 zayo.com
10  64.125.29.17  116.75 ms  AS6461  英国 伯克郡 斯劳 zayo.com
11  64.125.29.118  112.53 ms  AS6461  英国 伯克郡 斯劳 zayo.com
12  64.125.29.126  115.96 ms  AS6461  美国 纽约州 纽约 zayo.com
13  64.125.29.203  112.53 ms  AS6461  美国 华盛顿 zayo.com
14  64.125.31.169  112.76 ms  AS6461  ZAYO.COM 骨干网 zayo.com
15  64.125.30.205  112.91 ms  AS6461  美国 zayo.com
16  64.125.28.17  112.74 ms  AS6461  ZAYO.COM 骨干网 zayo.com
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


路由追踪到 美国阿什本Cogentco (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 149.127.109.166 (149.127.109.166), 30 hops max, 60 byte packets
 1  213.136.75.1  0.48 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.172.2  11.60 ms  AS1299  欧洲地区 telia.com
 3  62.115.113.146  4.12 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.114.89  4.46 ms  AS1299  德国 黑森州 法兰克福 telia.com
 5  130.117.14.197  5.17 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.0.1  4.36 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 7  154.54.58.238  14.22 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 8  154.54.27.169  95.20 ms  AS174  美国 纽约州 纽约 cogentco.com
 9  154.54.40.106  98.22 ms  AS174  美国 弗吉尼亚州 阿灵顿 cogentco.com
10  154.54.46.190  100.67 ms  AS174  美国 弗吉尼亚州 赫恩登 cogentco.com
11  38.140.164.58  98.32 ms  AS174  美国 弗吉尼亚州 赫恩登 cogentco.com
12  149.127.109.2  100.18 ms  AS174  美国 弗吉尼亚州 阿什本 cogentco.com
13  149.127.109.166  102.62 ms  AS174  美国 弗吉尼亚州 阿什本 cogentco.com


路由追踪到 德国北莱茵－威斯特法伦州Telekom (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 80.146.191.1 (80.146.191.1), 30 hops max, 60 byte packets
 1  173.212.238.3  0.91 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  46.189.70.25  4.28 ms  AS8881  德国 巴伐利亚州 纽伦堡 versatel.de
 3  62.214.37.134  4.60 ms  AS8881  德国 黑森州 法兰克福 versatel.de
 4  80.150.171.165  4.70 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 5  91.23.215.109  12.88 ms  AS3320  德国 北莱茵－威斯特法伦州 telekom.de
 6  80.146.191.1  30.20 ms  AS3320  德国 北莱茵－威斯特法伦州 telekom.de


路由追踪到 德国法兰克福O2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 82.113.108.25 (82.113.108.25), 30 hops max, 60 byte packets
 1  213.136.75.1  0.51 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  213.30.248.197  4.22 ms  AS8881  德国 versatel.de
 3  62.214.34.249  4.36 ms  AS8881  德国 versatel.de
 4  62.214.37.142  4.63 ms  AS8881  德国 黑森州 法兰克福 versatel.de
 5  *
 6  62.53.28.178  6.49 ms  AS6805  德国 telefonica.de
 7  62.53.0.208  5.70 ms  AS6805  德国 telefonica.de
 8  62.53.28.149  5.59 ms  AS6805  德国 telefonica.de
 9  62.53.14.103  6.40 ms  AS6805  德国 黑森州 法兰克福 telefonica.de
10  62.53.2.63  5.41 ms  AS6805  德国 telefonica.de
11  82.113.108.25  5.53 ms  AS39706  德国 黑森州 法兰克福 o2online.de


路由追踪到 德国法兰克福Vodafone (TCP 模式, 最大 50 跃点)
============================================================
traceroute to 139.7.146.11 (139.7.146.11), 50 hops max, 60 byte packets
 1  213.136.75.1  0.45 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  213.30.248.197  4.23 ms  AS8881  德国 versatel.de
 3  62.214.34.249  12.42 ms  AS8881  德国 versatel.de
 4  62.214.37.134  4.54 ms  AS8881  德国 黑森州 法兰克福 versatel.de
 5  *
 6  92.79.215.241  10.92 ms  AS3209  德国 vodafone.de
 7  92.79.230.14  8.75 ms  AS3209  德国 vodafone.de
 8  139.7.148.84  15.49 ms  AS3209  德国 vodafone.de
 9  *
10  *
11  *
12  *
13  139.7.146.11  69.12 ms  AS3209  德国 vodafone.de


路由追踪到 德国法兰克福电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 118.85.205.101 (118.85.205.101), 30 hops max, 60 byte packets
 1  213.136.75.1  0.35 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.171.252  1.52 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.113.146  3.91 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.137.129  3.86 ms  AS1299  德国 黑森州 法兰克福 telia.com
 5  202.97.58.149  4.50 ms  AS4134  德国 黑森州 法兰克福 电信
 6  118.85.205.101  4.43 ms  AS4134  德国 黑森州 法兰克福 电信


路由追踪到 德国法兰克福电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 5.10.138.33 (5.10.138.33), 30 hops max, 60 byte packets
 1  173.212.238.3  1.14 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  46.189.70.25  4.18 ms  AS8881  德国 巴伐利亚州 纽伦堡 versatel.de
 3  62.214.37.134  5.48 ms  AS8881  德国 黑森州 法兰克福 versatel.de
 4  80.150.171.165  4.68 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 5  *
 6  87.128.235.130  16.21 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  5.10.138.33  15.47 ms  AS4809  德国 cteurope.net


路由追踪到 德国法兰克福GTT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 213.200.65.70 (213.200.65.70), 30 hops max, 60 byte packets
 1  173.212.238.3  0.89 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.140.24.153  6.25 ms  AS3356  德国 level3.com
 3  *
 4  213.254.196.1  8.10 ms  AS3257  德国 黑森州 法兰克福 gtt.net
 5  213.200.115.161  4.60 ms  AS3257  德国 黑森州 法兰克福 gtt.net
 6  213.200.65.70  6.67 ms  AS3257  GTT.NET 骨干网 gtt.net


路由追踪到 德国法兰克福Cogentco (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 212.20.150.5 (212.20.150.5), 30 hops max, 60 byte packets
 1  213.136.75.1  0.35 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.36.237  6.89 ms  AS1299  TELIA.COM 骨干网 telia.com
 3  62.115.113.146  4.18 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.114.89  4.19 ms  AS1299  德国 黑森州 法兰克福 telia.com
 5  130.117.14.197  4.36 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 6  130.117.1.118  4.74 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 7  130.117.48.94  7.99 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 8  212.20.150.5  7.83 ms  AS174  德国 cogentco.com


路由追踪到 英国Vodafone (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 194.62.232.211 (194.62.232.211), 30 hops max, 60 byte packets
 1  213.136.75.1  0.49 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.172.4  2.03 ms  AS1299  欧洲地区 telia.com
 3  62.115.114.148  4.22 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.114.91  4.00 ms  AS1299  德国 黑森州 法兰克福 telia.com
 5  62.115.155.35  4.21 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  195.2.10.181  30.40 ms  AS1273  VODAFONE.COM 骨干网 vodafone.com
 7  *
 8  *
 9  194.62.232.211  21.30 ms  AS25135  英国 vodafone.com


路由追踪到 英国BT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 213.121.43.24 (213.121.43.24), 30 hops max, 60 byte packets
 1  213.136.75.1  0.44 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.155.130  3.86 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.113.174  28.09 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  80.91.249.10  29.76 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.114.235  29.02 ms  AS1299  英国 伦敦 telia.com
 6  213.248.97.49  27.78 ms  AS1299  英国 伦敦 telia.com
 7  166.49.128.33  28.97 ms  AS5400  英国 bt.com
 8  109.159.252.87  28.87 ms  AS2856  英国 bt.com
 9  109.159.249.8  29.40 ms  AS2856  英国 bt.com
10  194.72.7.69  28.12 ms  AS2856  英国 伦敦 bt.com
11  *
12  *
13  *
14  *
15  *
16  213.121.43.24  35.71 ms  AS2856  英国 bt.com


路由追踪到 英国伦敦TATA (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 80.231.60.38 (80.231.60.38), 30 hops max, 60 byte packets
 1  213.136.75.1  1.65 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.171.252  1.29 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.113.146  3.99 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.141.241  3.71 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  213.248.82.41  3.88 ms  AS1299  TELIA.COM 骨干网 telia.com
 6  80.231.153.89  17.92 ms  AS6453  法国 法兰西岛大区 巴黎 tatacommunications.com
 7  80.231.153.50  17.53 ms  AS6453  法国 法兰西岛大区 巴黎 tatacommunications.com
 8  80.231.154.143  17.68 ms  AS6453  法国 法兰西岛大区 巴黎 tatacommunications.com
 9  80.231.130.130  18.35 ms  AS6453  英国 伦敦 tatacommunications.com
10  80.231.60.38  20.01 ms  AS6453  英国 伦敦 tatacommunications.com


路由追踪到 俄罗斯电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 118.85.205.180 (118.85.205.180), 30 hops max, 60 byte packets
 1  213.136.75.1  0.37 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.172.4  1.28 ms  AS1299  欧洲地区 telia.com
 3  62.115.140.76  7.79 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.116.162  3.56 ms  AS1299  德国 黑森州 法兰克福 telia.com
 5  202.97.58.149  7.69 ms  AS4134  德国 黑森州 法兰克福 电信
 6  *
 7  *
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


路由追踪到 俄罗斯电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 185.75.173.17 (185.75.173.17), 30 hops max, 60 byte packets
 1  173.212.238.3  0.60 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  46.189.70.25  4.15 ms  AS8881  德国 巴伐利亚州 纽伦堡 versatel.de
 3  62.214.37.130  4.41 ms  AS8881  德国 黑森州 法兰克福 versatel.de
 4  80.150.171.165  4.86 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 5  217.239.44.178  5.96 ms  AS3320  德国 telekom.de
 6  87.128.235.130  16.11 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 7  185.75.173.17  52.93 ms  AS4809  俄罗斯 莫斯科 cteurope.net


路由追踪到 俄罗斯莫斯科RT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 87.226.162.77 (87.226.162.77), 30 hops max, 60 byte packets
 1  173.212.238.3  2.96 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  *
 3  *
 4  195.122.183.218  52.64 ms  AS3356  德国 黑森州 法兰克福 level3.com
 5  213.59.211.241  49.16 ms  AS12389  俄罗斯 莫斯科 rt.ru
 6  *
 7  *
 8  87.226.162.77  41.83 ms  AS12389  俄罗斯 莫斯科 rt.ru


路由追踪到 俄罗斯莫斯科TTK (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 217.150.32.2 (217.150.32.2), 30 hops max, 60 byte packets
 1  213.136.75.1  0.50 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  62.115.171.252  1.49 ms  AS1299  德国 巴伐利亚州 纽伦堡 telia.com
 3  62.115.114.148  4.27 ms  AS1299  TELIA.COM 骨干网 telia.com
 4  62.115.116.162  12.49 ms  AS1299  德国 黑森州 法兰克福 telia.com
 5  213.248.69.66  5.70 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  *
 7  62.33.207.217  46.68 ms  AS20485  俄罗斯 莫斯科 ttk.ru
 8  80.237.46.177  44.04 ms  AS20485  俄罗斯 莫斯科 ttk.ru
 9  217.150.32.243  45.83 ms  AS20485  俄罗斯 莫斯科 ttk.ru
10  *
11  217.150.32.2  45.02 ms  AS20485  俄罗斯 莫斯科 ttk.ru


路由追踪到 俄罗斯莫斯科MTS (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 195.34.53.186 (195.34.53.186), 30 hops max, 60 byte packets
 1  213.136.75.1  0.35 ms  AS51167  德国 巴伐利亚州 纽伦堡 contabo.de
 2  213.30.248.197  4.28 ms  AS8881  德国 versatel.de
 3  62.214.34.249  4.26 ms  AS8881  德国 versatel.de
 4  62.214.37.138  4.63 ms  AS8881  德国 黑森州 法兰克福 versatel.de
 5  80.81.192.78  5.31 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 6  212.188.2.190  38.60 ms  AS8359  俄罗斯 莫斯科 mts.ru
 7  212.188.28.150  39.35 ms  AS8359  俄罗斯 莫斯科 mts.ru
 8  212.188.2.38  43.25 ms  AS8359  俄罗斯 莫斯科 mts.ru
 9  *
10  *
11  195.34.53.186  42.88 ms  AS8359  俄罗斯 莫斯科 mts.ru
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;其他&lt;/h2&gt;
&lt;p&gt;将该VPS安装成Windows Server 2019最新版后的娱乐大师跑分见下图&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/contabo.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;总体而言4.99欧元买到如此配置的VPS已经是超值的了，虽然单核性能并不强，但是四核在数量上碾压了同价位的对手。带宽200Mbps不是很大，但也足够使用，而且还是不限流量。&lt;/p&gt;
&lt;p&gt;另外contabo不定时有免设置费的活动，有需要的可以关注他家的twitter.&lt;/p&gt;
</content:encoded></item><item><title>PHP-Friends评测：2019黑五特价款</title><link>https://yushum.com/posts/php-friends%E8%AF%84%E6%B5%8B2019%E9%BB%91%E4%BA%94%E7%89%B9%E4%BB%B7%E6%AC%BE%E6%80%A7%E8%83%BD%E6%80%8E%E4%B9%88%E6%A0%B7/</link><guid isPermaLink="true">https://yushum.com/posts/php-friends%E8%AF%84%E6%B5%8B2019%E9%BB%91%E4%BA%94%E7%89%B9%E4%BB%B7%E6%AC%BE%E6%80%A7%E8%83%BD%E6%80%8E%E4%B9%88%E6%A0%B7/</guid><pubDate>Sat, 30 Nov 2019 11:32:00 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://php-friends.de&quot;&gt;PHP-Friends&lt;/a&gt;，德国老牌商家，有自建机房，VPS基于KVM，SSD硬盘，DDR4内存，E5-2630 v3 / v4，不限流量，100-200 GBit/s的DDOS防护，支持自定义ISO。&lt;/p&gt;
&lt;p&gt;需要注意的是他家虽然不限流量，其实是限的，在后台可以看到限制的流量数，超出以后会限速到10Mbps。博主本次购买的VPS后台显示5TB/月。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/image-1024x394.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;配置信息&lt;/h2&gt;
&lt;h3&gt;系统信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;系统名称:		Debian GNU/Linux &quot;Buster&quot; 10.2 (x86_64)
 CPU型号:		Intel(R) Xeon(R) CPU E5-2620 v2 @ 2.10GHz
 CPU缓存大小:		16384 KB
 CPU数量:		2 vCPU
 虚拟化类型:		KVM
 内存使用率:		79.77 MB / 5.82 GB
 Swap使用率:		[无Swap分区/文件]
 磁盘使用率:		1.59 GB / 103.19 GB
 引导设备:		/dev/vda1
 系统负载(1/5/15min):	0.00 0.00 0.00
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;网络信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;IPV4 - 本机IP:		176.96.*.*
 IPV4 - ASN信息:	AS44066 (德国 黑森州 法兰克福 )
 IPV4 - 运营商:		php-friends.de
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;流媒体解锁测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;HBO Now:		否
 巴哈姆特動畫瘋:	否
 哔哩哔哩-港澳台限定:	否
 哔哩哔哩-台湾限定:	否
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;CPU性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 线程测试:	667 分
 2 线程测试:	1343 分
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;内存性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;1 线程测试-顺序读:	4271.12K ops (3977.79 MB/s)
 1 线程测试-顺序写:	4280.47K ops (3986.50 MB/s)
 1 线程测试-随机读:	1123.21K ops (1046.06 MB/s)
 1 线程测试-随机写:	1119.02K ops (1042.17 MB/s)
 2 线程测试-顺序读:	8258.94K ops (7691.74 MB/s)
 2 线程测试-顺序写:	8167.17K ops (7606.27 MB/s)
 2 线程测试-随机读:	584.19K ops (544.06 MB/s)
 2 线程测试-随机写:	283.29K ops (263.83 MB/s)
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;磁盘性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;测试项目		写入速度				        读取速度
 10MB-4K块		25.7 MB/s (6277 IOPS, 0.41 秒)		32.0 MB/s (7810 IOPS, 0.33 秒)
 10MB-1M块		525 MB/s (500 IOPS, 0.02 秒)		708 MB/s (675 IOPS, 0.01 秒)
 100MB-4K块		27.4 MB/s (6699 IOPS, 3.82 秒)		32.4 MB/s (7920 IOPS, 3.23 秒)
 100MB-1M块		706 MB/s (673 IOPS, 0.15 秒)		1.0 GB/s (999 IOPS, 0.10 秒)
 1000MB-4K块		27.9 MB/s (6818 IOPS, 37.54 秒)		35.2 MB/s (8604 IOPS, 29.75 秒)
 1000MB-1M块		657 MB/s (626 IOPS, 1.60 秒)		1.1 GB/s (1056 IOPS, 0.95 秒)
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;网络测试&lt;/h2&gt;
&lt;h3&gt;Speedtest.net网速测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;节点名称		上传速度	下载速度	Ping延迟
 距离最近测速点		93.15 MB/s	104.22 MB/s	7.187 ms
 东北-吉林联通		0.22 MB/s	0.18 MB/s	1155.501 ms
 东北-沈阳移动		0.12 MB/s	0.20 MB/s	600212.289 ms
 华北-山东联通		0.86 MB/s	6.56 MB/s	544.337 ms
 华中-南京联通		0.26 MB/s	0.29 MB/s	1041.112 ms
 华中-杭州电信		0.22 MB/s	0.90 MB/s	559.641 ms
 华中-杭州移动		0.09 MB/s	0.25 MB/s	1398.038 ms
 华东-上海联通		0.31 MB/s	1.25 MB/s	985.461 ms
 华东-上海移动		0.87 MB/s	4.89 MB/s	306.592 ms
 华南-广州电信		 MB/s	 MB/s	No ms
 西南-重庆联通		 MB/s	 MB/s	No ms
 西南-南宁移动		 MB/s	 MB/s	No ms
 西北-兰州联通		0.19 MB/s	0.50 MB/s	1040.582 ms
 西北-兰州电信		0.26 MB/s	0.57 MB/s	2052.82 ms
 西北-兰州移动		2.81 MB/s	1.53 MB/s	312.262 ms
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;IPv4路由测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;路由追踪到 北京联通 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.30 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  7.02 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  *
 6  62.115.123.13  145.59 ms  AS1299  法国 法兰西岛大区 巴黎 telia.com
 7  *
 8  62.115.121.220  160.89 ms  AS1299  美国 加利福尼亚州 洛杉矶 telia.com
 9  *
10  *
11  219.158.3.49  303.13 ms  AS4837  中国 北京 联通
12  *
13  *
14  124.65.63.50  308.75 ms  AS4808  中国 北京 联通
15  124.65.194.50  312.43 ms  AS4808  中国 北京 联通
16  *
17  *
18  *
19  123.125.99.1  304.95 ms  AS4808  中国 北京 联通


路由追踪到 北京电信 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.38 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  0.71 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  202.97.58.149  4.27 ms  AS4134  德国 黑森州 法兰克福 电信
 6  202.97.58.77  152.83 ms  AS4134  中国 北京 电信
 7  202.97.12.53  142.03 ms  AS4134  中国 北京 电信
 8  *
 9  *
10  180.149.128.1  169.33 ms  AS23724  中国 北京 电信


路由追踪到 北京移动 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.136.88.117 (211.136.88.117), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.32 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  10.59 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.137.164  17.50 ms  AS1299  TELIA.COM 骨干网 telia.com
 6  62.115.123.13  16.72 ms  AS1299  法国 法兰西岛大区 巴黎 telia.com
 7  62.115.134.93  15.93 ms  AS1299  TELIA.COM 骨干网 telia.com
 8  62.115.117.123  18.37 ms  AS1299  TELIA.COM 骨干网 telia.com
 9  62.115.171.223  17.53 ms  AS1299  欧洲地区 telia.com
10  223.120.10.41  16.41 ms  AS58453  英国 伦敦 移动
11  *
12  *
13  *
14  *
15  221.176.16.213  248.19 ms  AS9808  中国 北京 移动
16  221.183.26.30  251.25 ms  AS9808  中国 北京 移动
17  211.136.67.190  278.38 ms  AS56048  中国 北京 移动
18  211.136.88.117  227.90 ms  AS56048  中国 北京 移动


路由追踪到 上海联通 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 58.247.0.49 (58.247.0.49), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.30 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  0.70 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.121.2  145.22 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  62.115.122.138  154.64 ms  AS1299  TELIA.COM 骨干网 telia.com
 7  62.115.112.242  94.75 ms  AS1299  美国 弗吉尼亚州 阿什本 telia.com
 8  62.115.121.220  148.91 ms  AS1299  美国 加利福尼亚州 洛杉矶 telia.com
 9  213.248.82.206  164.31 ms  AS1299  TELIA.COM 骨干网 telia.com
10  219.158.98.17  310.10 ms  AS4837  中国 北京 联通
11  219.158.16.81  311.21 ms  AS4837  中国 北京 联通
12  219.158.5.145  311.36 ms  AS4837  中国 北京 联通
13  219.158.8.242  335.27 ms  AS4837  中国 上海 联通
14  *
15  58.247.0.49  330.50 ms  AS17621  中国 上海 联通


路由追踪到 上海电信 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 180.153.28.1 (180.153.28.1), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.31 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  0.67 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  202.97.58.149  1.08 ms  AS4134  德国 黑森州 法兰克福 电信
 6  202.97.73.217  203.18 ms  *  中国 上海 电信
 7  *
 8  202.97.64.181  216.17 ms  *  中国 上海 电信
 9  101.95.88.1  199.61 ms  AS4812  中国 上海 电信
10  *
11  124.74.232.238  226.52 ms  AS4812  中国 上海 电信
12  101.227.255.46  210.34 ms  AS4812  中国 上海 电信
13  *
14  101.227.250.2  224.69 ms  AS4812  中国 上海 电信
15  *
16  *
17  *
18  180.153.28.1  220.25 ms  AS4812  中国 上海 电信


路由追踪到 上海移动 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.34 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  3.11 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.121.2  1.04 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  62.115.114.91  0.96 ms  AS1299  德国 黑森州 法兰克福 telia.com
 7  *
 8  223.120.10.153  3.75 ms  AS58453  德国 黑森州 法兰克福 移动
 9  *
10  *
11  *
12  *
13  221.176.15.206  173.18 ms  AS9808  中国 上海 移动
14  221.176.17.178  188.14 ms  AS9808  中国 上海 移动
15  *
16  221.183.55.22  260.10 ms  AS9808  中国 上海 移动


路由追踪到 广州联通 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.42 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  0.64 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.141.236  149.13 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  62.115.122.138  145.09 ms  AS1299  TELIA.COM 骨干网 telia.com
 7  62.115.122.159  87.36 ms  AS1299  美国 弗吉尼亚州 阿什本 telia.com
 8  62.115.114.86  173.57 ms  AS1299  美国 加利福尼亚州 洛杉矶 telia.com
 9  213.248.94.126  167.81 ms  AS1299  美国 加利福尼亚州 洛杉矶 telia.com
10  *
11  *
12  *
13  *
14  120.86.0.182  346.18 ms  AS17816  中国 广东 广州 联通
15  120.80.170.250  339.69 ms  AS17622  中国 广东 广州 联通
16  *
17  210.21.4.130  343.49 ms  AS17622  中国 广东 广州 联通


路由追踪到 广州电信 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.33 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  0.63 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  202.97.58.149  2.17 ms  AS4134  德国 黑森州 法兰克福 电信
 6  202.97.50.65  214.51 ms  AS4134  中国 广东 广州 电信
 7  202.97.94.113  213.44 ms  AS4134  中国 广东 广州 电信
 8  202.97.94.137  240.53 ms  AS4134  中国 广东 广州 电信
 9  113.96.4.158  234.51 ms  AS58466  中国 广东 广州 电信
10  113.108.209.1  251.36 ms  AS58466  中国 广东 广州 电信


路由追踪到 广州移动 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.139.129.5 (211.139.129.5), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  1.95 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  0.59 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.121.2  1.01 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  62.115.114.89  1.21 ms  AS1299  德国 黑森州 法兰克福 telia.com
 7  *
 8  223.120.10.121  3.98 ms  AS58453  德国 黑森州 法兰克福 移动
 9  *
10  221.183.55.90  196.52 ms  AS9808  中国 广东 广州 移动
11  *
12  221.176.22.113  193.95 ms  AS9808  中国 广东 广州 移动
13  221.183.24.70  253.81 ms  AS9808  中国 广东 深圳 移动
14  211.136.208.253  237.55 ms  AS56040  中国 广东 广州 移动
15  211.136.249.129  200.39 ms  AS56040  中国 广东 广州 移动
16  *
17  211.139.129.5  250.33 ms  AS56040  中国 广东 广州 移动


路由追踪到 上海联通精品网 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.28 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  1.21 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.121.2  90.93 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  62.115.122.138  90.91 ms  AS1299  TELIA.COM 骨干网 telia.com
 7  62.115.122.159  87.52 ms  AS1299  美国 弗吉尼亚州 阿什本 telia.com
 8  62.115.143.121  91.23 ms  AS1299  美国 弗吉尼亚州 阿什本 telia.com
 9  80.239.135.179  92.95 ms  AS1299  美国 弗吉尼亚州 阿什本 telia.com
10  140.222.236.27  147.90 ms  *  美国 加利福尼亚州 洛杉矶 verizon.com
11  208.222.0.98  248.48 ms  AS701  中国 北京 verizon.com
12  218.105.2.89  242.31 ms  AS9929  中国 北京 联通
13  218.105.2.198  240.53 ms  AS9929  中国 上海 联通
14  210.13.112.254  257.28 ms  AS9929  中国 上海 联通
15  210.13.66.237  248.06 ms  AS9929  中国 上海 联通
16  *
17  210.13.66.238  245.57 ms  AS9929  中国 上海 联通


路由追踪到 上海电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.39 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.193.79  13.47 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  202.40.148.33  15.12 ms  AS4637,AS10026  英国 伦敦 reach.com
 6  202.84.140.97  168.77 ms  AS4637,AS10026  TELSTRA.COM 骨干网 telstra.com
 7  202.84.224.197  167.33 ms  AS4637,AS10026  新加坡 telstra.com
 8  210.57.30.22  172.24 ms  AS4637,AS10026  新加坡 telstra.com
 9  59.43.249.194  267.08 ms  *  中国 上海 电信
10  *
11  59.43.130.217  194.20 ms  *  中国 上海 电信
12  101.95.88.206  198.87 ms  AS4812  中国 上海 电信
13  101.95.40.98  220.53 ms  AS4812  中国 上海 电信
14  58.32.0.1  193.90 ms  AS4812  中国 上海 电信


路由追踪到 北京鹏博士/电信通 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.31 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  0.74 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.121.8  145.30 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  62.115.122.138  145.39 ms  AS1299  TELIA.COM 骨干网 telia.com
 7  62.115.112.242  95.00 ms  AS1299  美国 弗吉尼亚州 阿什本 telia.com
 8  62.115.114.86  155.33 ms  AS1299  美国 加利福尼亚州 洛杉矶 telia.com
 9  62.115.33.230  166.40 ms  AS1299  TELIA.COM 骨干网 telia.com
10  219.158.16.97  305.08 ms  AS4837  中国 北京 联通
11  *
12  219.158.5.149  309.37 ms  AS4837  中国 北京 联通
13  125.33.186.18  308.35 ms  AS4808  中国 北京 联通
14  61.148.157.102  305.75 ms  AS4808  中国 北京 联通
15  202.106.37.90  305.03 ms  AS4808  中国 北京 联通
16  *
17  *
18  *
19  218.241.253.134  245.21 ms  AS4847  中国 北京 鹏博士/电信/联通
20  211.167.230.100  302.55 ms  AS4808,AS17964  中国 北京 鹏博士


路由追踪到 北京教育网 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.35 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.193.79  12.77 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  202.40.148.33  12.96 ms  AS4637,AS10026  英国 伦敦 reach.com
 6  202.84.136.14  232.07 ms  AS4637,AS10026  TELSTRA.COM 骨干网 telstra.com
 7  202.84.157.37  230.46 ms  AS4637,AS10026  中国 香港 telstra.com
 8  61.8.59.38  263.04 ms  AS4637  中国 香港 pacnet.com
 9  101.4.117.149  402.31 ms  AS4538  中国 北京 教育网
10  101.4.118.121  400.52 ms  AS4538  中国 北京 教育网
11  101.4.114.58  397.33 ms  AS4538  中国 北京 教育网
12  101.4.114.197  400.06 ms  AS4538  中国 北京 教育网
13  219.224.102.234  379.16 ms  AS4538  中国 北京 教育网
14  202.112.38.82  378.97 ms  AS4538  中国 北京 教育网
15  202.205.109.205  381.21 ms  AS4538  中国 北京 赛尔网络信息资源部 教育网


路由追踪到 北京科技网 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.32 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  149.14.69.193  0.88 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 5  154.54.56.189  0.93 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 6  154.54.58.234  10.63 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 7  130.117.49.154  21.59 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 8  154.54.1.118  190.96 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 9  *
10  159.226.254.5  240.28 ms  AS7497  中国 北京 科技网
11  159.226.254.1  237.73 ms  AS7497  中国 北京 科技网


路由追踪到 北京广电网 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.39 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  1.17 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.141.238  16.82 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  62.115.123.13  16.94 ms  AS1299  法国 法兰西岛大区 巴黎 telia.com
 7  62.115.114.228  17.75 ms  AS1299  TELIA.COM 骨干网 telia.com
 8  62.115.117.193  16.63 ms  AS1299  TELIA.COM 骨干网 telia.com
 9  62.115.171.223  16.56 ms  AS1299  欧洲地区 telia.com
10  223.120.10.41  16.56 ms  AS58453  英国 伦敦 移动
11  *
12  *
13  221.183.25.189  250.23 ms  AS9808  中国 上海 移动
14  221.183.23.25  276.94 ms  AS9808  中国 上海 移动
15  221.176.22.38  235.25 ms  AS9808  中国 上海 移动
16  221.183.65.66  239.94 ms  AS9808  中国 上海 移动
17  211.156.132.25  308.15 ms  AS7641  中国 北京 chinabtn.com 广电网/联通/电信
18  *
19  211.156.128.229  302.00 ms  AS7641  中国 北京 chinabtn.com 广电网/联通/电信
20  211.156.140.17  259.60 ms  AS7641  中国 北京 chinabtn.com 广电网/联通/电信


路由追踪到 香港联通 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.160.95.218 (203.160.95.218), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.30 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.194.117  1.31 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  217.150.59.246  165.65 ms  AS20485  俄罗斯 ttk.ru
 6  217.150.59.245  169.35 ms  AS20485  俄罗斯 ttk.ru
 7  43.252.86.65  173.71 ms  AS10099  中国 香港 联通
 8  119.252.139.14  168.43 ms  AS10099  中国 香港 联通
 9  202.77.22.89  166.19 ms  AS10099  中国 香港 联通
10  203.160.95.218  166.11 ms  AS10099  中国 香港 联通


路由追踪到 香港电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.215.232.173 (203.215.232.173), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.32 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  213.198.77.85  0.80 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.2.61  6.08 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  129.250.9.154  3.60 ms  AS2914  NTT.COM 骨干网 ntt.com
 7  202.97.13.29  200.51 ms  AS4134  中国 电信
 8  203.215.232.173  248.66 ms  AS4134  中国 香港 电信


路由追踪到 香港电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.8.25.187 (203.8.25.187), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.45 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  13.67 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.121.2  0.82 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  62.115.122.138  10.41 ms  AS1299  TELIA.COM 骨干网 telia.com
 7  62.115.114.228  29.79 ms  AS1299  TELIA.COM 骨干网 telia.com
 8  62.115.134.135  17.62 ms  AS1299  英国 伦敦 telia.com
 9  80.239.193.226  17.10 ms  AS1299  TELIA.COM 骨干网 telia.com
10  59.43.246.165  138.57 ms  *  中国 北京 电信
11  59.43.246.210  194.89 ms  *  中国 香港 电信
12  59.43.186.126  205.74 ms  *  中国 香港 电信
13  203.8.25.187  195.23 ms  AS4809  中国 香港 电信


路由追踪到 香港移动 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.142.105.9 (203.142.105.9), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.34 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.193.51  1.72 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  *
 6  223.118.3.74  189.40 ms  AS58453  中国 香港 移动
 7  223.119.0.2  189.67 ms  AS58453  中国 香港 移动
 8  203.142.100.165  189.93 ms  AS9231  中国 香港 移动
 9  203.142.100.22  190.34 ms  AS9231  中国 香港 移动
10  203.142.105.9  190.44 ms  AS9231  中国 香港 移动


路由追踪到 香港HGC (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 218.188.104.30 (218.188.104.30), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  4.65 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.192.172  0.51 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  80.81.192.64  27.12 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 6  62.216.129.238  258.34 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
 7  85.95.25.105  250.68 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
 8  85.95.25.218  252.79 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
 9  80.77.1.126  243.57 ms  AS15412  中国 香港 globalcloudxchange.com
10  218.189.5.56  209.20 ms  AS9304  中国 香港 hgc.com.hk
11  218.188.104.30  208.49 ms  AS9304  中国 香港 hgc.com.hk


路由追踪到 香港HKBN (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 210.6.23.239 (210.6.23.239), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.30 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.193.79  15.95 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  202.40.148.33  17.25 ms  AS4637,AS10026  英国 伦敦 reach.com
 6  202.84.136.14  228.14 ms  AS4637,AS10026  TELSTRA.COM 骨干网 telstra.com
 7  202.84.157.37  228.32 ms  AS4637,AS10026  中国 香港 telstra.com
 8  210.57.80.194  204.54 ms  AS4637,AS10026  中国 香港 telstra.com
 9  61.244.225.66  201.06 ms  AS9269  中国 香港 hkbn.com.hk
10  203.186.235.137  209.07 ms  AS9269  中国 香港 hkbn.com.hk
11  203.80.215.70  204.54 ms  AS9269  中国 香港 hkbn.com.hk
12  210.6.23.239  204.92 ms  AS9269  中国 香港 hkbn.com.hk


路由追踪到 香港PCCW (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 202.85.125.60 (202.85.125.60), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.34 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  0.66 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.137.164  1.12 ms  AS1299  TELIA.COM 骨干网 telia.com
 6  62.115.114.91  1.03 ms  AS1299  德国 黑森州 法兰克福 telia.com
 7  62.115.116.17  1.95 ms  AS1299  德国 黑森州 法兰克福 telia.com
 8  213.248.68.71  1.63 ms  AS1299  TELIA.COM 骨干网 telia.com
 9  *
10  63.223.15.154  265.99 ms  AS3491  中国 香港 pccw.com
11  203.215.255.197  272.29 ms  AS9925  中国 香港 pbase.net
12  203.215.255.197  266.68 ms  AS9925  中国 香港 pbase.net
13  203.215.244.33  258.82 ms  AS9925  中国 香港 pbase.net
14  203.215.244.33  265.95 ms  AS9925  中国 香港 pbase.net
15  202.85.125.60  256.84 ms  AS9925  中国 香港 pccw.com


路由追踪到 香港TGT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 61.4.15.137 (61.4.15.137), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.27 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.194.24  0.84 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  *
 6  123.255.91.105  239.85 ms  AS135423  中国 香港 hkix.net
 7  202.123.74.2  258.49 ms  AS10098  中国 香港 towngastelecom.com
 8  *
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


路由追踪到 香港WTT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 59.152.252.242 (59.152.252.242), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  1.04 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.195.39  183.54 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  115.160.187.110  188.21 ms  AS9381  中国 香港 wtthk.com
 6  10.104.131.158  187.71 ms  *  局域网
 7  59.152.252.196  187.78 ms  AS9381  中国 香港 wtthk.com
 8  59.152.252.242  187.97 ms  AS9381  中国 香港 wtthk.com


路由追踪到 新加坡电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.215.233.1 (203.215.233.1), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.30 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  213.198.77.85  0.55 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.2.61  1.10 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  129.250.9.154  4.67 ms  AS2914  NTT.COM 骨干网 ntt.com
 7  202.97.17.81  191.70 ms  AS4134  新加坡 电信
 8  203.215.233.1  164.11 ms  AS4134  新加坡 电信


路由追踪到 新加坡电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 183.91.61.1 (183.91.61.1), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.29 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.193.79  17.62 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  202.40.148.33  15.16 ms  AS4637,AS10026  英国 伦敦 reach.com
 6  202.84.140.97  168.90 ms  AS4637,AS10026  TELSTRA.COM 骨干网 telstra.com
 7  202.84.224.197  168.38 ms  AS4637,AS10026  新加坡 telstra.com
 8  210.57.30.130  173.72 ms  AS4637,AS10026  新加坡 telstra.com
 9  183.91.61.1  174.40 ms  AS4809  新加坡 电信


路由追踪到 新加坡Singtel (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 118.201.1.11 (118.201.1.11), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.31 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  0.76 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.141.236  149.08 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  62.115.123.13  145.46 ms  AS1299  法国 法兰西岛大区 巴黎 telia.com
 7  62.115.112.242  94.73 ms  AS1299  美国 弗吉尼亚州 阿什本 telia.com
 8  62.115.114.86  147.39 ms  AS1299  美国 加利福尼亚州 洛杉矶 telia.com
 9  62.115.8.203  188.03 ms  AS1299  TELIA.COM 骨干网 telia.com
10  203.208.171.117  161.22 ms  AS7473  美国 加利福尼亚州 洛杉矶 singtel.com
11  203.208.172.145  330.04 ms  AS7473  新加坡 singtel.com
12  203.208.175.58  327.65 ms  AS7473  新加坡 singtel.com
13  *
14  203.208.158.42  320.64 ms  AS7473  新加坡 singtel.com
15  203.208.192.106  337.70 ms  AS7473  新加坡 singtel.com
16  118.201.1.11  332.76 ms  AS3758  新加坡 singtel.com


路由追踪到 新加坡StarHub (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.116.46.162 (203.116.46.162), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  5.29 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.192.172  0.47 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  184.105.65.29  6.13 ms  AS6939  瑞士 苏黎世州 苏黎世 he.net
 6  72.52.92.130  6.35 ms  AS6939  瑞士 苏黎世州 苏黎世 he.net
 7  184.104.193.134  9.82 ms  AS6939  瑞士 日内瓦州 日内瓦 he.net
 8  184.104.193.125  16.02 ms  AS6939  法国 普罗旺斯－阿尔卑斯－蓝色海岸大区 马赛 he.net
 9  184.105.65.13  151.12 ms  AS6939  新加坡 he.net
10  27.50.36.182  151.66 ms  AS6939  新加坡 he.net
11  203.118.6.82  152.03 ms  AS4657  新加坡 starhub.com
12  203.116.189.178  151.69 ms  AS38861  新加坡 starhub.com
13  203.118.6.29  154.39 ms  AS4657  新加坡 starhub.com
14  203.118.12.2  153.86 ms  AS4657  新加坡 starhub.com
15  203.117.188.42  154.10 ms  AS4657  新加坡 starhub.com
16  *
17  203.116.46.162  154.16 ms  AS4657  新加坡 starhub.com


路由追踪到 新加坡M1 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.123.8.123 (203.123.8.123), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.30 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.193.79  12.84 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  202.84.178.5  13.98 ms  AS4637,AS10026  英国 伦敦 telstra.com
 6  202.84.136.14  226.34 ms  AS4637,AS10026  TELSTRA.COM 骨干网 telstra.com
 7  202.84.224.194  164.21 ms  AS4637,AS10026  新加坡 telstra.com
 8  202.84.224.194  163.97 ms  AS4637,AS10026  新加坡 telstra.com
 9  210.176.138.174  158.59 ms  AS4637,AS10026  新加坡 telstra.com
10  203.118.15.133  158.59 ms  AS4657  新加坡 starhub.com
11  203.118.6.97  208.29 ms  AS4657  新加坡 starhub.com
12  203.116.245.154  175.39 ms  AS4657  新加坡 starhub.com
13  203.211.158.72  174.17 ms  AS17547  新加坡 m1.com.sg
14  203.123.8.123  175.43 ms  AS17547  新加坡 m1.com.sg


路由追踪到 新加坡AWS (TCP 模式, 最大 50 跃点)
============================================================
traceroute to 13.228.0.251 (13.228.0.251), 50 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.26 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  213.198.77.85  0.62 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.2.84  1.16 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  129.250.7.63  183.20 ms  AS2914  新加坡 ntt.com
 7  129.250.3.100  183.10 ms  AS2914  新加坡 ntt.com
 8  129.250.2.92  174.46 ms  AS2914  新加坡 ntt.com
 9  116.51.17.130  183.63 ms  AS2914  新加坡 ntt.com
10  *
11  *
12  52.93.10.15  184.52 ms  *  新加坡 amazon.com
13  52.93.11.43  175.43 ms  *  新加坡 amazon.com
14  52.93.11.18  184.59 ms  *  新加坡 amazon.com
15  52.93.8.159  175.67 ms  *  新加坡 amazon.com
16  203.83.223.196  184.20 ms  AS16509,AS38895  新加坡 amazon.com
17  *
18  *
19  *
20  *
21  *
22  13.228.0.251  175.29 ms  AS16509  新加坡 amazon.com


路由追踪到 日本NTT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 61.213.155.84 (61.213.155.84), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.77 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  213.198.77.85  0.61 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.2.100  0.73 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  129.250.4.96  86.52 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
 7  129.250.3.189  152.26 ms  AS2914  NTT.COM 骨干网 ntt.com
 8  129.250.3.192  261.00 ms  AS2914  日本 东京都 东京 ntt.com
 9  129.250.3.28  253.74 ms  AS2914  日本 东京都 东京 ntt.com
10  61.213.179.34  267.96 ms  AS2914  日本 东京都 东京 ntt.com
11  *
12  *
13  61.213.155.84  283.83 ms  AS2914  日本 东京都 东京 ntt.com


路由追踪到 日本IIJ (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 202.232.15.70 (202.232.15.70), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.29 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  0.61 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.137.168  17.81 ms  AS1299  TELIA.COM 骨干网 telia.com
 6  62.115.122.138  16.57 ms  AS1299  TELIA.COM 骨干网 telia.com
 7  62.115.114.228  18.60 ms  AS1299  TELIA.COM 骨干网 telia.com
 8  62.115.143.27  17.90 ms  AS1299  英国 伦敦 telia.com
 9  202.232.1.61  15.75 ms  AS2497  英国 伦敦 iij.ad.jp
10  58.138.98.137  203.37 ms  AS2497  日本 东京都 东京 iij.ad.jp
11  58.138.102.214  232.75 ms  AS2497  日本 东京都 东京 iij.ad.jp
12  210.130.142.114  226.41 ms  AS2497  日本 东京都 iij.ad.jp
13  202.232.15.70  206.43 ms  AS2497  日本 iij.ad.jp


路由追踪到 日本SoftBank (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 210.175.32.26 (210.175.32.26), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.30 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  0.76 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.121.0  157.28 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  62.115.123.13  157.60 ms  AS1299  法国 法兰西岛大区 巴黎 telia.com
 7  62.115.134.93  160.84 ms  AS1299  TELIA.COM 骨干网 telia.com
 8  *
 9  62.115.119.229  157.57 ms  AS1299  TELIA.COM 骨干网 telia.com
10  213.248.88.78  281.29 ms  AS1299  美国 加利福尼亚州 圣何塞 telia.com
11  *
12  143.90.232.241  259.43 ms  AS4725  日本 东京都 东京 odn.ne.jp
13  143.90.47.9  263.62 ms  AS4725  日本 odn.ne.jp
14  143.90.26.226  282.42 ms  AS4725  日本 odn.ne.jp
15  143.90.54.30  280.85 ms  AS4725  日本 odn.ne.jp
16  210.175.32.123  267.45 ms  AS4725  日本 odn.ne.jp
17  210.175.32.26  274.34 ms  AS4725  日本 odn.ne.jp


路由追踪到 日本KDDI (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 106.162.242.108 (106.162.242.108), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.29 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  1.78 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.116.159  141.64 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  62.115.123.13  145.44 ms  AS1299  法国 法兰西岛大区 巴黎 telia.com
 7  62.115.122.159  87.53 ms  AS1299  美国 弗吉尼亚州 阿什本 telia.com
 8  62.115.137.39  145.99 ms  AS1299  TELIA.COM 骨干网 telia.com
 9  62.115.180.210  154.02 ms  AS1299  欧洲地区 telia.com
10  203.181.106.173  147.70 ms  AS2516  美国 加利福尼亚州 洛杉矶 kddi.com
11  106.187.12.25  252.71 ms  AS2516  日本 大阪府 大阪 kddi.com
12  118.152.213.70  265.60 ms  AS2516  日本 kddi.com
13  59.128.99.90  262.63 ms  AS2516  日本 kddi.com
14  111.87.220.242  259.93 ms  AS2516  日本 kddi.com
15  106.162.242.108  258.06 ms  AS2516  日本 kddi.com


路由追踪到 日本电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.215.236.3 (203.215.236.3), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.31 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  213.198.77.85  0.57 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.2.61  1.01 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  129.250.9.154  2.30 ms  AS2914  NTT.COM 骨干网 ntt.com
 7  202.97.94.85  237.69 ms  AS4134  中国 上海 电信
 8  202.97.6.70  261.72 ms  AS4134  日本 东京都 东京 电信
 9  203.215.236.3  261.54 ms  AS4134  日本 东京都 东京 电信


路由追踪到 日本电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 202.55.27.4 (202.55.27.4), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.35 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.193.79  12.90 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  202.40.148.33  15.06 ms  AS4637,AS10026  英国 伦敦 reach.com
 6  202.84.140.97  167.44 ms  AS4637,AS10026  TELSTRA.COM 骨干网 telstra.com
 7  202.84.224.197  166.68 ms  AS4637,AS10026  新加坡 telstra.com
 8  210.57.30.22  172.31 ms  AS4637,AS10026  新加坡 telstra.com
 9  59.43.247.238  211.17 ms  *  中国 电信
10  202.55.27.4  210.69 ms  AS4809  日本 东京都 东京 电信


路由追踪到 日本AWS (TCP 模式, 最大 50 跃点)
============================================================
traceroute to 13.112.63.251 (13.112.63.251), 50 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.32 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  213.198.77.85  0.95 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.2.100  0.77 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  129.250.4.96  85.84 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
 7  129.250.3.189  152.22 ms  AS2914  NTT.COM 骨干网 ntt.com
 8  129.250.3.192  262.85 ms  AS2914  日本 东京都 东京 ntt.com
 9  129.250.6.129  263.88 ms  AS2914  日本 东京都 东京 ntt.com
10  61.213.161.46  260.31 ms  AS2914  日本 东京都 东京 ntt.com
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  52.95.31.49  270.67 ms  AS16509  日本 东京都 东京 amazon.com
19  52.95.31.217  259.72 ms  AS16509  日本 东京都 东京 amazon.com
20  52.95.31.214  266.79 ms  AS16509  日本 东京都 东京 amazon.com
21  52.95.31.102  266.13 ms  AS16509  日本 东京都 东京 amazon.com
22  54.239.52.187  271.29 ms  AS16509  日本 东京都 东京 amazon.com
23  *
24  *
25  *
26  *
27  *
28  *
29  13.112.63.251  261.50 ms  AS16509  日本 东京都 东京 amazon.com


路由追踪到 韩国KT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 59.10.184.64 (59.10.184.64), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.28 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.192.172  0.44 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  72.52.92.13  10.27 ms  AS6939  法国 法兰西岛大区 巴黎 he.net
 6  184.105.81.77  80.37 ms  AS6939  美国 纽约州 纽约 he.net
 7  184.105.81.218  140.55 ms  AS6939  美国 加利福尼亚州 圣何塞 he.net
 8  72.52.92.158  143.50 ms  AS6939  HE.NET 骨干网 he.net
 9  66.220.12.30  158.69 ms  AS6939  美国 加利福尼亚州 帕洛阿尔托 he.net
10  112.174.88.213  738.81 ms  AS4766  KT.COM 骨干网 kt.com
11  112.174.85.73  277.87 ms  AS4766  韩国 首尔 kt.com
12  *
13  112.174.104.74  285.29 ms  AS4766  韩国 首尔 kt.com
14  112.189.29.146  290.67 ms  AS4766  韩国 首尔 kt.com
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


路由追踪到 韩国SK (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 175.122.253.62 (175.122.253.62), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  3.98 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.195.146  196.71 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  39.115.132.182  234.34 ms  AS9318  韩国 skbroadband.com
 6  118.221.7.129  233.53 ms  AS9318  韩国 首尔 skbroadband.com
 7  *
 8  175.122.253.62  230.59 ms  AS9318  韩国 skbroadband.com


路由追踪到 韩国LG (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.174.62.44 (211.174.62.44), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  1.07 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  213.198.77.85  0.64 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.2.100  0.77 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  129.250.4.96  85.85 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
 7  129.250.3.189  149.68 ms  AS2914  NTT.COM 骨干网 ntt.com
 8  129.250.6.49  149.68 ms  AS2914  美国 加利福尼亚州 洛杉矶 ntt.com
 9  129.250.2.214  154.50 ms  AS2914  美国 加利福尼亚州 洛杉矶 ntt.com
10  168.143.229.202  153.03 ms  AS2914  美国 ntt.com
11  211.118.180.145  148.38 ms  AS3786  美国 加利福尼亚州 洛杉矶 uplus.co.kr
12  1.213.150.153  282.53 ms  AS3786  韩国 首尔 uplus.co.kr
13  *
14  1.208.172.38  288.09 ms  AS3786  韩国 首尔 uplus.co.kr
15  1.208.148.142  295.78 ms  AS3786  韩国 首尔 uplus.co.kr
16  117.52.240.62  273.96 ms  AS3786  韩国 首尔 uplus.co.kr
17  61.111.0.246  269.93 ms  AS3786  韩国 首尔 uplus.co.kr
18  211.174.62.44  270.26 ms  AS3786  韩国 首尔 uplus.co.kr


路由追踪到 韩国电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 218.185.246.1 (218.185.246.1), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.30 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.193.79  14.62 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  202.40.148.33  14.34 ms  AS4637,AS10026  英国 伦敦 reach.com
 6  202.84.140.97  169.12 ms  AS4637,AS10026  TELSTRA.COM 骨干网 telstra.com
 7  202.84.224.197  168.56 ms  AS4637,AS10026  新加坡 telstra.com
 8  210.57.30.22  173.76 ms  AS4637,AS10026  新加坡 telstra.com
 9  59.43.249.194  194.01 ms  *  中国 上海 电信
10  218.185.246.1  214.48 ms  AS4809  韩国 首尔 电信


路由追踪到 韩国AWS (TCP 模式, 最大 50 跃点)
============================================================
traceroute to 13.124.63.251 (13.124.63.251), 50 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.37 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  213.198.77.85  0.69 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.2.100  0.88 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  129.250.4.96  86.43 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
 7  129.250.3.189  152.44 ms  AS2914  NTT.COM 骨干网 ntt.com
 8  129.250.3.192  267.24 ms  AS2914  日本 东京都 东京 ntt.com
 9  129.250.6.133  256.40 ms  AS2914  日本 东京都 东京 ntt.com
10  61.213.161.50  249.67 ms  AS2914  日本 东京都 东京 ntt.com
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  52.93.248.220  293.86 ms  *  韩国 首尔 amazon.com
19  54.239.123.114  287.23 ms  AS16509  韩国 首尔 amazon.com
20  52.93.248.238  281.25 ms  *  韩国 首尔 amazon.com
21  54.239.122.28  289.72 ms  AS16509  韩国 首尔 amazon.com
22  *
23  54.239.122.28  287.34 ms  AS16509  韩国 首尔 amazon.com
24  *
25  13.124.63.251  290.66 ms  AS16509  韩国 首尔 amazon.com


路由追踪到 台湾Chief (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 202.133.242.116 (202.133.242.116), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.31 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.196.59  246.21 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  220.128.6.30  249.94 ms  AS3462  中国 台湾 新北市 cht.com.tw
 6  220.128.7.46  243.65 ms  AS3462  中国 台湾 新北市 cht.com.tw
 7  220.128.27.82  241.69 ms  AS3462  中国 台湾 台北市 cht.com.tw
 8  220.128.2.237  238.86 ms  AS3462  中国 台湾 台北市 cht.com.tw
 9  203.75.228.157  241.85 ms  AS3462  中国 台湾 台北市 cht.com.tw
10  *
11  113.21.95.72  243.80 ms  AS17408  中国 台湾 台北市 chief.com.tw
12  *
13  202.133.242.114  238.21 ms  AS17408  中国 台湾 台北市 chief.com.tw
14  202.133.242.116  234.88 ms  AS17408  中国 台湾 台北市 chief.com.tw


路由追踪到 台湾APTG (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 210.200.69.90 (210.200.69.90), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.86 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.193.79  16.21 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  202.40.148.33  16.81 ms  AS4637,AS10026  英国 伦敦 reach.com
 6  202.84.141.125  230.47 ms  AS4637,AS10026  TELSTRA.COM 骨干网 telstra.com
 7  202.84.138.182  248.84 ms  AS4637,AS10026  中国 台湾 台北市 telstra.com
 8  202.84.137.253  248.85 ms  AS4637,AS10026  中国 台湾 台北市 telstra.com
 9  210.176.44.78  249.88 ms  AS4637,AS10026  中国 台湾 台北市 telstra.com
10  211.76.96.76  248.50 ms  AS17709  中国 台湾 台北市 aptg.com.tw
11  211.76.100.53  248.90 ms  AS17709  中国 台湾 台北市 aptg.com.tw
12  210.200.80.254  249.51 ms  AS131142  中国 台湾 台北市 aptg.com.tw
13  *
14  210.200.69.90  225.18 ms  AS131142  中国 台湾 台北市 aptg.com.tw


路由追踪到 台湾CHT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 203.75.129.162 (203.75.129.162), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.31 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.196.59  243.76 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  220.128.6.34  243.76 ms  AS3462  中国 台湾 新北市 cht.com.tw
 6  220.128.7.42  238.89 ms  AS3462  中国 台湾 新北市 cht.com.tw
 7  220.128.26.106  241.27 ms  AS3462  中国 台湾 台北市 cht.com.tw
 8  220.128.1.5  239.15 ms  AS3462  中国 台湾 台北市 cht.com.tw
 9  211.22.229.45  242.27 ms  AS3462  中国 台湾 台北市 cht.com.tw
10  1.1.1.2  239.61 ms  AS13335  CLOUDFLARE.COM apnic.net
11  *
12  203.75.129.162  241.26 ms  AS3462  中国 台湾 台北市 cht.com.tw


路由追踪到 台湾TFN (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 219.87.66.3 (219.87.66.3), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.33 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  149.14.69.193  1.03 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 5  *
 6  *
 7  4.79.238.26  150.07 ms  AS3356  美国 加利福尼亚州 圣何塞 level3.com
 8  60.199.20.33  281.33 ms  AS9924  中国 台湾 twmbroadband.com
 9  60.199.4.150  291.33 ms  AS9924  中国 台湾 台北市 twmbroadband.com
10  60.199.3.138  287.25 ms  AS9924  中国 台湾 台北市 twmbroadband.com
11  60.199.16.62  282.08 ms  AS9924  中国 台湾 台北市 twmbroadband.com
12  219.87.66.3  287.02 ms  AS9924  中国 台湾 台北市 twmbroadband.com


路由追踪到 台湾FET (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 211.73.144.38 (211.73.144.38), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.46 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.192.172  0.43 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  72.52.92.13  9.67 ms  AS6939  法国 法兰西岛大区 巴黎 he.net
 6  216.66.89.214  17.84 ms  AS6939  法国 法兰西岛大区 巴黎 he.net
 7  62.216.129.173  279.16 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
 8  85.95.25.157  278.87 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
 9  85.95.26.14  275.93 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
10  85.95.27.142  245.35 ms  AS15412  日本 东京都 东京 globalcloudxchange.com
11  85.95.27.102  279.27 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
12  80.81.69.46  293.70 ms  AS15412  中国 台湾 台北市 globalcloudxchange.com
13  192.72.155.113  306.48 ms  AS4780  中国 台湾 台北市 fetnet.net
14  139.175.59.222  299.04 ms  AS4780  中国 台湾 台北市 fetnet.net
15  *
16  *
17  *
18  211.73.144.38  288.66 ms  AS9674  中国 台湾 fetnet.net


路由追踪到 台湾KBT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 61.63.0.102 (61.63.0.102), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.29 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  213.198.77.85  0.71 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.2.100  0.76 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  *
 7  129.250.3.189  152.32 ms  AS2914  NTT.COM 骨干网 ntt.com
 8  129.250.2.206  155.13 ms  AS2914  NTT.COM 骨干网 ntt.com
 9  129.250.2.177  250.73 ms  AS2914  NTT.COM 骨干网 ntt.com
10  129.250.4.182  314.11 ms  AS2914  NTT.COM 骨干网 ntt.com
11  129.250.2.107  292.33 ms  AS2914  NTT.COM 骨干网 ntt.com
12  129.250.7.41  307.30 ms  AS2914  NTT.COM 骨干网 ntt.com
13  61.58.33.194  300.95 ms  AS2914  中国 台湾 台北市 ntt.com
14  203.187.3.25  287.44 ms  AS9416  中国 台湾 台北市 kbtelecom.net
15  203.187.9.226  278.87 ms  AS9416  中国 台湾 台北市 kbtelecom.net
16  58.86.1.174  295.66 ms  AS18042  中国 台湾 台北市 kbtelecom.net
17  58.86.0.94  309.99 ms  AS18042  中国 台湾 台北市 kbtelecom.net
18  58.86.0.26  292.37 ms  AS18042  中国 台湾 台北市 kbtelecom.net
19  61.63.0.102  298.88 ms  AS18042  中国 台湾 台北市 kbtelecom.net


路由追踪到 台湾TAIFO (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 103.31.196.203 (103.31.196.203), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.36 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.192.172  0.58 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  72.52.92.13  15.86 ms  AS6939  法国 法兰西岛大区 巴黎 he.net
 6  216.66.89.214  17.85 ms  AS6939  法国 法兰西岛大区 巴黎 he.net
 7  62.216.129.173  288.16 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
 8  85.95.25.102  280.46 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
 9  85.95.26.14  288.78 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
10  85.95.26.86  254.76 ms  AS15412  日本 东京都 东京 globalcloudxchange.com
11  85.95.27.102  282.49 ms  AS15412  GLOBALCLOUDXCHANGE.COM 骨干网 globalcloudxchange.com
12  80.77.2.202  282.91 ms  AS15412  中国 台湾 台北市 globalcloudxchange.com
13  *
14  113.21.95.123  280.49 ms  AS17408  中国 台湾 台北市 chief.com.tw
15  *
16  103.31.197.122  291.69 ms  AS131584  中国 台湾 台北市 taifo.com.tw
17  *
18  103.31.197.70  285.47 ms  AS131584  中国 台湾 台北市 taifo.com.tw
19  103.31.196.203  270.21 ms  AS131584  中国 台湾 台北市 taifo.com.tw


路由追踪到 美国洛杉矶电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.29 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  213.198.77.85  0.65 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.2.61  0.54 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  129.250.9.154  3.50 ms  AS2914  NTT.COM 骨干网 ntt.com
 7  218.30.33.17  91.84 ms  AS4134  美国 ctamericas.com


路由追踪到 美国洛杉矶电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 66.102.252.100 (66.102.252.100), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.34 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  0.59 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.116.165  141.79 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  62.115.123.13  145.44 ms  AS1299  法国 法兰西岛大区 巴黎 telia.com
 7  62.115.122.159  87.39 ms  AS1299  美国 弗吉尼亚州 阿什本 telia.com
 8  62.115.114.86  145.77 ms  AS1299  美国 加利福尼亚州 洛杉矶 telia.com
 9  213.248.79.253  144.70 ms  AS1299  TELIA.COM 骨干网 telia.com
10  66.102.252.100  144.47 ms  AS4809  美国 ctamericas.com


路由追踪到 美国洛杉矶PCCW (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 63.218.42.81 (63.218.42.81), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.37 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  2.96 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.141.238  0.85 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  *
 7  62.115.116.17  0.88 ms  AS1299  德国 黑森州 法兰克福 telia.com
 8  213.248.68.71  1.45 ms  AS1299  TELIA.COM 骨干网 telia.com
 9  63.218.42.81  144.43 ms  AS3491  美国 加利福尼亚州 洛杉矶 pccw.com


路由追踪到 美国洛杉矶HE (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 66.220.18.42 (66.220.18.42), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  4.03 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.192.172  0.50 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  72.52.92.13  9.73 ms  AS6939  法国 法兰西岛大区 巴黎 he.net
 6  184.105.213.173  85.44 ms  AS6939  美国 弗吉尼亚州 阿什本 he.net
 7  184.105.80.202  139.75 ms  AS6939  美国 加利福尼亚州 洛杉矶 he.net
 8  66.220.18.42  139.45 ms  AS6939  美国 加利福尼亚州 洛杉矶 he.net


路由追踪到 美国洛杉矶GTT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 173.205.77.98 (173.205.77.98), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  1.24 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  78.152.43.129  18.19 ms  AS5580  ATRATO.COM 骨干网 hibernianetworks.com
 5  89.149.187.114  141.39 ms  AS3257  美国 加利福尼亚州 洛杉矶 gtt.net
 6  173.205.77.98  141.53 ms  AS3257  美国 加利福尼亚州 洛杉矶 gtt.net


路由追踪到 美国旧金山ATT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 12.169.215.33 (12.169.215.33), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.37 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  149.14.69.193  0.85 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 5  154.54.37.29  1.07 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 6  154.54.58.238  10.57 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 7  154.54.27.169  84.26 ms  AS174  美国 纽约州 纽约 cogentco.com
 8  154.54.0.142  83.96 ms  AS174  美国 纽约州 纽约 cogentco.com
 9  154.54.10.98  88.49 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
10  12.122.131.102  157.57 ms  AS7018  美国 纽约州 纽约 att.com
11  12.122.2.237  160.78 ms  AS7018  美国 伊利诺伊州 芝加哥 att.com
12  12.122.2.53  155.96 ms  AS7018  美国 伊利诺伊州 芝加哥 att.com
13  12.122.1.174  160.12 ms  AS7018  美国 加利福尼亚州 旧金山 att.com
14  12.122.110.13  157.07 ms  AS7018  美国 加利福尼亚州 att.com
15  12.244.156.30  158.53 ms  AS7018  美国 加利福尼亚州 att.com
16  12.169.215.33  159.36 ms  AS7018  美国 加利福尼亚州 att.com


路由追踪到 美国纽约TATA (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 66.198.181.100 (66.198.181.100), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.32 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  78.152.43.129  0.52 ms  AS5580  ATRATO.COM 骨干网 hibernianetworks.com
 5  141.136.110.54  6.85 ms  AS3257  GTT.NET 骨干网 gtt.net
 6  195.219.50.137  0.50 ms  AS6453  德国 黑森州 法兰克福 tatacommunications.com
 7  195.219.50.21  88.34 ms  AS6453  德国 黑森州 法兰克福 tatacommunications.com
 8  5.23.30.16  89.32 ms  AS6453  德国 黑森州 法兰克福 tatacommunications.com
 9  195.219.194.149  88.50 ms  AS6453  荷兰 北荷兰省 阿姆斯特丹 tatacommunications.com
10  195.219.194.6  88.22 ms  AS6453  荷兰 北荷兰省 阿姆斯特丹 tatacommunications.com
11  80.231.131.160  88.82 ms  AS6453  英国 伦敦 tatacommunications.com
12  80.231.131.158  87.97 ms  AS6453  美国 纽约州 纽约 tatacommunications.com
13  216.6.90.21  88.30 ms  AS6453  美国 纽约州 纽约 tatacommunications.com
14  216.6.90.73  88.29 ms  AS6453  美国 纽约州 纽约 tatacommunications.com
15  209.58.75.198  88.39 ms  AS6453  美国 纽约州 纽约 tatacommunications.com
16  66.198.181.100  89.71 ms  AS6453  美国 纽约州 纽约 tatacommunications.com


路由追踪到 美国圣何塞电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  2.12 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  213.198.77.85  0.70 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.2.61  0.87 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  129.250.9.154  0.78 ms  AS2914  NTT.COM 骨干网 ntt.com
 7  218.30.33.17  91.83 ms  AS4134  美国 ctamericas.com


路由追踪到 美国圣何塞NTT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 23.11.26.62 (23.11.26.62), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  3.55 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  213.198.77.85  0.61 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.2.100  0.73 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  *
 7  129.250.3.85  85.87 ms  AS2914  美国 弗吉尼亚州 阿什本 ntt.com
 8  129.250.6.237  153.09 ms  AS2914  NTT.COM 骨干网 ntt.com
 9  129.250.3.27  145.88 ms  AS2914  NTT.COM 骨干网 ntt.com
10  129.250.3.163  147.34 ms  AS2914  NTT.COM 骨干网 ntt.com
11  23.11.26.62  149.93 ms  AS2914  美国 加利福尼亚州 圣何塞 akamai.com


路由追踪到 美国费利蒙HE (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 72.52.104.74 (72.52.104.74), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.31 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.192.172  0.38 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  72.52.92.13  9.68 ms  AS6939  法国 法兰西岛大区 巴黎 he.net
 6  184.105.81.77  80.24 ms  AS6939  美国 纽约州 纽约 he.net
 7  184.104.192.242  79.81 ms  AS6939  HE.NET 骨干网 he.net
 8  184.105.81.61  144.59 ms  AS6939  美国 加利福尼亚州 费利蒙 he.net
 9  72.52.104.74  143.93 ms  AS6939  美国 加利福尼亚州 费利蒙 he.net


路由追踪到 美国达拉斯Level3 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 205.216.62.38 (205.216.62.38), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  3.25 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  1.89 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.116.165  87.54 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  62.115.123.13  90.90 ms  AS1299  法国 法兰西岛大区 巴黎 telia.com
 7  *
 8  213.155.136.39  95.16 ms  AS1299  美国 弗吉尼亚州 阿什本 telia.com
 9  80.239.192.99  100.61 ms  AS1299  美国 弗吉尼亚州 阿什本 telia.com
10  67.14.14.26  108.72 ms  AS209  美国 乔治亚州 亚特兰大 centurylink.com
11  216.34.172.50  127.98 ms  AS3561  美国 德克萨斯州 达拉斯 centurylink.com
12  216.34.164.90  132.15 ms  AS3561  美国 德克萨斯州 达拉斯 centurylink.com
13  205.216.7.204  129.90 ms  AS3561  美国 德克萨斯州 达拉斯 centurylink.com
14  *
15  205.216.62.38  130.70 ms  AS3561  美国 德克萨斯州 达拉斯 centurylink.com


路由追踪到 美国迈阿密ZAYO (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 64.125.191.144 (64.125.191.144), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.28 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  0.59 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.137.166  1.19 ms  AS1299  TELIA.COM 骨干网 telia.com
 6  62.115.142.47  0.89 ms  AS1299  德国 黑森州 法兰克福 telia.com
 7  62.115.148.105  1.00 ms  AS1299  TELIA.COM 骨干网 telia.com
 8  64.125.30.254  114.83 ms  AS6461  德国 黑森州 法兰克福 zayo.com
 9  64.125.29.54  111.31 ms  AS6461  德国 黑森州 法兰克福 zayo.com
10  64.125.29.59  114.78 ms  AS6461  荷兰 北荷兰省 阿姆斯特丹 zayo.com
11  64.125.29.80  111.31 ms  AS6461  荷兰 北荷兰省 阿姆斯特丹 zayo.com
12  64.125.29.17  114.85 ms  AS6461  英国 伯克郡 斯劳 zayo.com
13  64.125.29.118  120.66 ms  AS6461  英国 伯克郡 斯劳 zayo.com
14  *
15  *
16  64.125.31.169  114.03 ms  AS6461  ZAYO.COM 骨干网 zayo.com
17  64.125.30.205  109.54 ms  AS6461  美国 zayo.com
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


路由追踪到 美国阿什本Cogentco (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 149.127.109.166 (149.127.109.166), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.39 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  149.14.69.193  0.84 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 5  154.54.56.189  1.41 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 6  154.54.58.234  10.50 ms  AS174  COGENTCO.COM 骨干网 cogentco.com
 7  66.28.4.197  84.41 ms  AS174  美国 纽约州 纽约 cogentco.com
 8  154.54.40.110  91.30 ms  AS174  美国 弗吉尼亚州 阿灵顿 cogentco.com
 9  154.54.46.194  89.96 ms  AS174  美国 弗吉尼亚州 赫恩登 cogentco.com
10  38.140.164.58  92.58 ms  AS174  美国 弗吉尼亚州 赫恩登 cogentco.com
11  149.127.109.2  88.47 ms  AS174  美国 弗吉尼亚州 阿什本 cogentco.com
12  149.127.109.166  91.11 ms  AS174  美国 弗吉尼亚州 阿什本 cogentco.com


路由追踪到 德国北莱茵－威斯特法伦州Telekom (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 80.146.191.1 (80.146.191.1), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.35 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  87.190.233.113  2.87 ms  AS3320  TELEKOM.DE 骨干网 telekom.de
 5  91.23.215.105  6.51 ms  AS3320  德国 北莱茵－威斯特法伦州 telekom.de
 6  80.146.191.1  12.51 ms  AS3320  德国 北莱茵－威斯特法伦州 telekom.de


路由追踪到 德国法兰克福O2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 82.113.108.25 (82.113.108.25), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.29 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.192.89  1.38 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  62.53.10.50  1.28 ms  AS6805  德国 telefonica.de
 6  62.53.2.45  1.17 ms  AS6805  德国 telefonica.de
 7  62.53.2.55  1.05 ms  AS6805  德国 黑森州 法兰克福 telefonica.de
 8  82.113.108.25  1.19 ms  AS39706  德国 黑森州 法兰克福 o2online.de


路由追踪到 德国法兰克福Vodafone (TCP 模式, 最大 50 跃点)
============================================================
traceroute to 139.7.146.11 (139.7.146.11), 50 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.38 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.193.117  1.16 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  92.79.215.241  7.19 ms  AS3209  德国 vodafone.de
 6  92.79.230.14  4.94 ms  AS3209  德国 vodafone.de
 7  139.7.148.84  4.51 ms  AS3209  德国 vodafone.de
 8  *
 9  *
10  *
11  *
12  139.7.146.11  51.05 ms  AS3209  德国 vodafone.de


路由追踪到 德国法兰克福电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 118.85.205.101 (118.85.205.101), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.31 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  213.198.77.85  0.88 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.2.61  1.11 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  118.85.205.101  0.71 ms  AS4134  德国 黑森州 法兰克福 电信


路由追踪到 德国法兰克福电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 5.10.138.33 (5.10.138.33), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.31 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  0.67 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.137.168  0.94 ms  AS1299  TELIA.COM 骨干网 telia.com
 6  62.115.122.138  10.32 ms  AS1299  TELIA.COM 骨干网 telia.com
 7  62.115.134.93  15.73 ms  AS1299  TELIA.COM 骨干网 telia.com
 8  62.115.134.135  28.67 ms  AS1299  英国 伦敦 telia.com
 9  80.239.193.226  16.58 ms  AS1299  TELIA.COM 骨干网 telia.com
10  59.43.180.113  15.30 ms  *  欧洲地区 电信
11  5.10.138.33  15.86 ms  AS4809  德国 cteurope.net


路由追踪到 德国法兰克福GTT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 213.200.65.70 (213.200.65.70), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.41 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  78.152.43.129  0.56 ms  AS5580  ATRATO.COM 骨干网 hibernianetworks.com
 5  213.200.115.169  1.38 ms  AS3257  德国 黑森州 法兰克福 gtt.net
 6  213.200.65.70  1.00 ms  AS3257  GTT.NET 骨干网 gtt.net


路由追踪到 德国法兰克福Cogentco (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 212.20.150.5 (212.20.150.5), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.35 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  149.14.69.193  1.08 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 5  154.54.37.29  1.20 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 6  154.54.56.34  1.27 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 7  212.20.150.5  1.15 ms  AS174  德国 cogentco.com


路由追踪到 英国Vodafone (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 194.62.232.211 (194.62.232.211), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  4.23 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  6.89 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  *
 6  195.2.16.98  8.83 ms  AS1273  欧洲地区 vodafone.com
 7  195.2.3.246  15.71 ms  AS1273  欧洲地区 vodafone.com
 8  *
 9  *
10  194.62.232.211  17.93 ms  AS25135  英国 vodafone.com


路由追踪到 英国BT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 213.121.43.24 (213.121.43.24), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.35 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  149.14.69.193  1.02 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 5  154.54.56.189  1.42 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 6  130.117.0.2  1.34 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 7  130.117.15.174  18.24 ms  AS174  西班牙 马德里自治区 马德里 cogentco.com
 8  166.49.195.124  17.49 ms  AS5400  BT.COM 骨干网 bt.com
 9  166.49.128.33  16.73 ms  AS5400  英国 bt.com
10  62.6.201.223  17.88 ms  AS2856  英国 bt.com
11  109.159.249.0  18.01 ms  AS2856  英国 bt.com
12  194.72.7.69  16.95 ms  AS2856  英国 伦敦 bt.com
13  *
14  *
15  *
16  *
17  *
18  213.121.43.24  24.02 ms  AS2856  英国 bt.com


路由追踪到 英国伦敦TATA (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 80.231.60.38 (80.231.60.38), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  1.11 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  78.152.43.129  0.65 ms  AS5580  ATRATO.COM 骨干网 hibernianetworks.com
 5  141.136.110.50  0.44 ms  AS3257  GTT.NET 骨干网 gtt.net
 6  195.219.50.137  0.65 ms  AS6453  德国 黑森州 法兰克福 tatacommunications.com
 7  195.219.87.17  17.64 ms  AS6453  德国 黑森州 法兰克福 tatacommunications.com
 8  80.231.153.89  16.90 ms  AS6453  法国 法兰西岛大区 巴黎 tatacommunications.com
 9  80.231.153.50  14.74 ms  AS6453  法国 法兰西岛大区 巴黎 tatacommunications.com
10  80.231.154.143  16.70 ms  AS6453  法国 法兰西岛大区 巴黎 tatacommunications.com
11  80.231.130.130  14.74 ms  AS6453  英国 伦敦 tatacommunications.com
12  80.231.60.38  17.20 ms  AS6453  英国 伦敦 tatacommunications.com


路由追踪到 俄罗斯电信163 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 118.85.205.180 (118.85.205.180), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  1.16 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  213.198.77.85  0.70 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 5  129.250.2.61  1.20 ms  AS2914  德国 黑森州 法兰克福 ntt.com
 6  129.250.9.154  1.53 ms  AS2914  NTT.COM 骨干网 ntt.com
 7  202.97.52.66  3.52 ms  AS4134  德国 黑森州 法兰克福 电信
 8  202.97.67.233  148.85 ms  *  俄罗斯 电信
 9  *
10  *
11  *
12  *
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  *
29  *
30  *


路由追踪到 俄罗斯电信CN2 (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 185.75.173.17 (185.75.173.17), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  1.70 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  62.115.51.73  0.65 ms  AS1299  TELIA.COM 骨干网 telia.com
 5  62.115.116.159  1.37 ms  AS1299  德国 黑森州 法兰克福 telia.com
 6  *
 7  62.115.134.93  15.82 ms  AS1299  TELIA.COM 骨干网 telia.com
 8  62.115.134.135  22.84 ms  AS1299  英国 伦敦 telia.com
 9  80.239.193.226  16.85 ms  AS1299  TELIA.COM 骨干网 telia.com
10  59.43.180.113  15.94 ms  *  欧洲地区 电信
11  185.75.173.17  52.78 ms  AS4809  俄罗斯 莫斯科 cteurope.net


路由追踪到 俄罗斯莫斯科RT (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 87.226.162.77 (87.226.162.77), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.37 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  149.14.69.193  1.03 ms  AS174  德国 黑森州 法兰克福 cogentco.com
 5  *
 6  *
 7  195.122.183.218  0.97 ms  AS3356  德国 黑森州 法兰克福 level3.com
 8  213.59.211.241  55.14 ms  AS12389  俄罗斯 莫斯科 rt.ru
 9  87.226.140.2  40.58 ms  AS12389  俄罗斯 莫斯科 rt.ru
10  *
11  87.226.162.77  40.67 ms  AS12389  俄罗斯 莫斯科 rt.ru


路由追踪到 俄罗斯莫斯科TTK (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 217.150.32.2 (217.150.32.2), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.45 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.194.117  1.28 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  *
 6  62.33.207.217  35.08 ms  AS20485  俄罗斯 莫斯科 ttk.ru
 7  80.237.46.177  45.52 ms  AS20485  俄罗斯 莫斯科 ttk.ru
 8  217.150.32.243  36.30 ms  AS20485  俄罗斯 莫斯科 ttk.ru
 9  *
10  217.150.32.2  46.91 ms  AS20485  俄罗斯 莫斯科 ttk.ru


路由追踪到 俄罗斯莫斯科MTS (TCP 模式, 最大 30 跃点)
============================================================
traceroute to 195.34.53.186 (195.34.53.186), 30 hops max, 60 byte packets
 1  *
 2  *
 3  176.96.136.1  0.33 ms  AS44066  德国 黑森州 法兰克福 php-friends.de
 4  80.81.192.78  1.06 ms  AS29686  德国 黑森州 法兰克福 de-cix.net
 5  212.188.55.54  38.74 ms  AS8359  俄罗斯 mts.ru
 6  212.188.54.1  30.86 ms  AS8359  俄罗斯 圣彼得堡 mts.ru
 7  212.188.2.38  37.96 ms  AS8359  俄罗斯 莫斯科 mts.ru
 8  195.34.53.186  36.12 ms  AS8359  俄罗斯 莫斯科 mts.ru
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;其他&lt;/h2&gt;
&lt;p&gt;博主dd了Windows Server 2019，顺便分享一下娱乐大师跑分。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/phpfriends.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;评价&lt;/h2&gt;
&lt;p&gt;黑五款和平时不同的地方是CPU不独享，PHP-Friends唯一的优点没了，因此不推荐。&lt;/p&gt;
</content:encoded></item><item><title>Windows常用软件推荐</title><link>https://yushum.com/posts/windows%E8%89%AF%E5%BF%83%E8%BD%AF%E4%BB%B6%E6%8E%A8%E8%8D%90/</link><guid isPermaLink="true">https://yushum.com/posts/windows%E8%89%AF%E5%BF%83%E8%BD%AF%E4%BB%B6%E6%8E%A8%E8%8D%90/</guid><pubDate>Tue, 17 Sep 2019 00:13:00 GMT</pubDate><content:encoded>&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;以下软件存在UWP版的默认推荐UWP版，个别情况以备注为准。&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;压缩文件密码均为yushum.com。&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;不推荐使用破解版，建议支持正版。&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;不推荐安装使用任何国产软件。&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;解压缩&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;名称&lt;/td&gt;
&lt;td&gt;下载地址&lt;/td&gt;
&lt;td&gt;备注&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.7-zip.org&quot;&gt;7-zip&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://www.7-zip.org/a/7z1900-x64.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;开源&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;浏览器&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;名称&lt;/td&gt;
&lt;td&gt;下载地址&lt;/td&gt;
&lt;td&gt;备注&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.google.com/chrome&quot;&gt;Google Chrome&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7BB2B7201C-68D2-88E6-1441-DB9FB93E7B58%7D%26lang%3Dzh-CN%26browser%3D4%26usagestats%3D0%26appname%3DGoogle%2520Chrome%26needsadmin%3Dprefers%26ap%3Dx64-stable-statsdef_1%26installdataindex%3Dempty/update2/installers/ChromeSetup.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.mozilla.org&quot;&gt;Mozilla Firefox&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://download-installer.cdn.mozilla.net/pub/firefox/releases/74.0/win32/zh-CN/Firefox%20Installer.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;网络工具&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;名称&lt;/td&gt;
&lt;td&gt;下载地址&lt;/td&gt;
&lt;td&gt;备注&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.proxifier.com&quot;&gt;Proxifier&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://www.proxifier.com/download/ProxifierSetup.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;5EZ8G-C3WL5-B56YG-SCXM9-6QZAP&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.ipip.net/product/client.html&quot;&gt;BestTrace&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://cdn.ipip.net/17mon/besttrace.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;下载工具&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;名称&lt;/td&gt;
&lt;td&gt;下载地址&lt;/td&gt;
&lt;td&gt;备注&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.internetdownloadmanager.com&quot;&gt;Internet Download Manager&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;http://mirror2.internetdownloadmanager.com/idman636build7.exe?v=lt&amp;amp;filename=idman636build7.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://down.yushum.com/%E7%A8%8B%E5%BA%8F/IDM/IDM_6.3x_Crack_v16.7.7z&quot;&gt;破解工具&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.qbittorrent.org/&quot;&gt;qBittorrent&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://www.fosshub.com/qBittorrent.html?dwl=qbittorrent_4.2.2_x64_setup.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;开源&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.emule-project.net&quot;&gt;eMule&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://www.emule-project.net/files/emule/eMule0.51d-Installer.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;开源&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;图像影音&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;名称&lt;/td&gt;
&lt;td&gt;下载地址&lt;/td&gt;
&lt;td&gt;备注&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.videolan.org&quot;&gt;VLC&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://www.microsoft.com/store/apps/vlc/9nblggh4vvnh&quot;&gt;UWP版&lt;/a&gt; &lt;a href=&quot;https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;开源&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;http://www.splayer.org/zh-Hans&quot;&gt;射手影音&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://www.microsoft.com/store/productId/9P385S0S69H7&quot;&gt;UWP版&lt;/a&gt; &lt;a href=&quot;https://cdn.splayer.org/download/SPlayer-Setup-4.9.1.exe&quot;&gt;Window版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.spotify.com&quot;&gt;Spotify&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://www.microsoft.com/en-us/p/spotify-music/9ncbcszsjrsb&quot;&gt;UWP版&lt;/a&gt; &lt;a href=&quot;https://download.scdn.co/SpotifySetup.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;系统美化&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;名称&lt;/td&gt;
&lt;td&gt;下载地址&lt;/td&gt;
&lt;td&gt;备注&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.mactype.net&quot;&gt;MacType&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://github.com/snowie2000/mactype/releases/download/2019.1-beta6/MacTypeInstaller_2019.1-beta6.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;开源  注册表加载方式需关闭安全启动&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://github.com/TranslucentTB/TranslucentTB&quot;&gt;TranslucentTB&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://www.microsoft.com/store/apps/9PF4KZ2VN4W9&quot;&gt;UWP版&lt;/a&gt; &lt;a href=&quot;https://github.com/TranslucentTB/TranslucentTB/releases/download/2020.1/TranslucentTB-setup.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;开源&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.wallpaperengine.io&quot;&gt;Wallpaper Engine&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://store.steampowered.com/app/431960/Wallpaper_Engine/&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;专业软件&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;名称&lt;/td&gt;
&lt;td&gt;下载地址&lt;/td&gt;
&lt;td&gt;备注&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.autodesk.com/products/autocad/overview&quot;&gt;AutoCAD&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://trial2.autodesk.com/NetSWDLD/2020/ACD/D98B88A0-50EC-4B88-9CA3-EA909DD6BC8C/SFX/AutoCAD_2020_Simplified_Chinese_Win_64bit_dlm.sfx.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://down.yushum.com/%E7%A8%8B%E5%BA%8F/AutoCAD2020/AutoCAD2020%E6%B3%A8%E5%86%8C%E6%9C%BA.7z&quot;&gt;注册机&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://otp.landian.vip&quot;&gt;Office Tool Plus&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://download.coolhub.top/Office%20Tool%20v7.5.zip&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.teamviewer.com&quot;&gt;Teamviewer&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://download.teamviewer.com/download/TeamViewer_Setup.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.adobe.com/cn/products/photoshop.html&quot;&gt;Adobe Photoshop&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://down.yushum.com/%E7%A8%8B%E5%BA%8F/Adobe/Adobe-Photoshop-2020-v21.0.0.37-x64-Offline.zip&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.adobe.com/cn/products/premiere.html&quot;&gt;Adobe Premiere Pro&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://down.yushum.com/%E7%A8%8B%E5%BA%8F/Adobe/Adobe-Premiere-Pro-2020-v14.0.0.571-Multilingual.zip&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://acrobat.adobe.com/cn/zh-Hans/acrobat/pdf-reader.html&quot;&gt;Adobe Acrobat&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://down.yushum.com/%E7%A8%8B%E5%BA%8F/Adobe/Adobe%20Acrobat%20Pro%20DC%202019%20u8%20Multilingual.iso&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.aspentech.com&quot;&gt;AspenTech aspenONE Suite&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://down.yushum.com/%E7%A8%8B%E5%BA%8F/AspenTech%20aspenONE%20Suite%2011.0/AspenTech%20aspenONE%20Engineering%20Suite%2011.0.7z&quot;&gt;AspenTech aspenONE Engineering Suite&lt;/a&gt; &lt;a href=&quot;https://down.yushum.com/%E7%A8%8B%E5%BA%8F/AspenTech%20aspenONE%20Suite%2011.0/AspenTech%20Exchanger%20Design%20and%20Rating%20with%20Aspen%20Properties%20ASW%20and%20AVCA%2011.0.7z&quot;&gt;AspenTech Exchanger Design and Rating with Aspen Properties, ASW and AVCA&lt;/a&gt; &lt;a href=&quot;https://down.yushum.com/%E7%A8%8B%E5%BA%8F/AspenTech%20aspenONE%20Suite%2011.0/AspenTech%20CIM-IO%20and%20Process%20Data%2011.0.7z&quot;&gt;AspenTech CIM IO and Process Data&lt;/a&gt; &lt;a href=&quot;https://down.yushum.com/%E7%A8%8B%E5%BA%8F/AspenTech%20aspenONE%20Suite%2011.0/AspenTech%20Simulation%20Workbook%2011.0.7z&quot;&gt;AspenTech Simulation Workbook&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://visualstudio.microsoft.com/zh-hans&quot;&gt;Microsoft Visual Studio&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://download.visualstudio.microsoft.com/download/pr/69b51b7f-ea5e-4729-9e7e-9ff9e2457545/793eaaecb6642236394073981c15e6826782a836810eede4bd2c9f90b56ca114/vs_Enterprise.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Enterprise:BF8Y8-GN2QH-T84XB-QVY3B-RC4DF Professional:NYWVH-HT4XC-R2WYW-9Y3CM-X4V3Y&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;社交聊天&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;名称&lt;/td&gt;
&lt;td&gt;下载地址&lt;/td&gt;
&lt;td&gt;备注&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://telegram.org&quot;&gt;Telegram&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://www.microsoft.com/store/productId/9NZTWSQNTD0S&quot;&gt;UWP版&lt;/a&gt; &lt;a href=&quot;https://telegram.org/dl/desktop/win&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;开源&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;实用工具&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;名称&lt;/td&gt;
&lt;td&gt;下载地址&lt;/td&gt;
&lt;td&gt;备注&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.chiark.greenend.org.uk/~sgtatham/putty&quot;&gt;PuTTY&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://the.earth.li/~sgtatham/putty/latest/w64/putty-64bit-0.73-installer.msi&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;开源&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://winscp.net&quot;&gt;WinSCP&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://www.microsoft.com/store/apps/9p0pq8b65n8x&quot;&gt;UWP版&lt;/a&gt; &lt;a href=&quot;https://winscp.net/download/WinSCP-5.17.2-Setup.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;土豪随意&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.ccleaner.com&quot;&gt;CCleaner&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://www.ccleaner.com/ccleaner/download/professional&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;C2YW-XZT7-A4SE-UD89-YZPC&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.aida64.com&quot;&gt;AIDA64&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;http://download.aida64.com/aida64extreme620.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;AIDA64 Extreme: FARRD-CU2D6-J9D59-LD2Q4-3AJG7 AIDA64 Engineer: ULUS1-2RHDB-HGDNX-BDM84-FFZCQ AIDA64 Business: YFDIR-Y14D6-6AD5Z-6DSJ4-RILYB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;http://implbits.com/products/hashtab&quot;&gt;HashTab&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;http://implbits.com/products/hashtab/HashTab_v6.0.0.34_Setup.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://notepad-plus-plus.org&quot;&gt;Notepad++&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v7.8.5/npp.7.8.5.Installer.x64.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;游戏平台&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;名称&lt;/td&gt;
&lt;td&gt;下载地址&lt;/td&gt;
&lt;td&gt;备注&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://store.steampowered.com&quot;&gt;Steam&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://epicgames.com&quot;&gt;Epic Games&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;https://launcher-public-service-prod06.ol.epicgames.com/launcher/api/installer/download/EpicGamesLauncherInstaller.msi&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://uplay.ubisoft.com&quot;&gt;Uplay&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;http://ubi.li/4vxt9&quot;&gt;Windows版&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
</content:encoded></item><item><title>通过VNC更改root帐户的密码</title><link>https://yushum.com/posts/%E9%80%9A%E8%BF%87vnc%E6%9B%B4%E6%94%B9root%E5%B8%90%E6%88%B7%E7%9A%84%E5%AF%86%E7%A0%81/</link><guid isPermaLink="true">https://yushum.com/posts/%E9%80%9A%E8%BF%87vnc%E6%9B%B4%E6%94%B9root%E5%B8%90%E6%88%B7%E7%9A%84%E5%AF%86%E7%A0%81/</guid><pubDate>Wed, 07 Nov 2018 12:04:28 GMT</pubDate><content:encoded>&lt;h2&gt;Debian&lt;/h2&gt;
&lt;p&gt;重启，在GRUB菜单中，将光标设置为Debian GNU/Linux条目，然后按e键进入编辑。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/1-1.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;在编辑窗口中，转到以linux条目开头的行。在参数root=UUID=8c132507-315c…之后删除信息，并将其替换为以下条目：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;rw init=/bin/bash
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/2-1.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;更改参数后，按CTRL+x或F10启动系统。&lt;/p&gt;
&lt;h3&gt;重置root密码&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;检查文件系统是否已安装在读/写（rw）模式下。&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;root@(none):/# mount | grep -w /
&lt;/code&gt;&lt;/pre&gt;
&lt;ol&gt;
&lt;li&gt;输入&lt;code&gt;passwd&lt;/code&gt;命令并输入root帐户的新密码。&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;root@(none):/# passwd
&lt;/code&gt;&lt;/pre&gt;
&lt;ol&gt;
&lt;li&gt;创建自动标记文件。&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;root@(none):/# touch /.autorelabel
&lt;/code&gt;&lt;/pre&gt;
&lt;ol&gt;
&lt;li&gt;重新启动系统。&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;root@(none):/# exec /sbin/reboot -f
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/3-1024x247.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Centos&lt;/h2&gt;
&lt;p&gt;重启，在开始屏幕上，将光标设置为CentOS Linux，然后按e并转到编辑。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/4-1024x560.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;在编辑窗口中，转到以linux条目开头的行。在参数root=UUID=e35103f0-80…之后删除信息，并将其替换为以下条目：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;rw init=/bin/bash
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/5-1024x563.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;更改参数后，按CTRL+x或F10启动系统。&lt;/p&gt;
&lt;h3&gt;重置root密码&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;检查文件系统是否已安装在读/写（rw）模式下。&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;root@(none):/# mount | grep -w /
&lt;/code&gt;&lt;/pre&gt;
&lt;ol&gt;
&lt;li&gt;输入&lt;code&gt;passwd&lt;/code&gt;命令并输入root帐户的新密码。&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;root@(none):/# passwd
&lt;/code&gt;&lt;/pre&gt;
&lt;ol&gt;
&lt;li&gt;创建自动标记文件。&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;root@(none):/# touch /.autorelabel
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/6-1024x476.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;重新启动系统。&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;root@(none):/# exec /sbin/reboot -f
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Ubuntu&lt;/h2&gt;
&lt;p&gt;重启，在GRUB菜单中，将光标放在Ubuntu项目上，然后按e并转到编辑。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/11.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;在编辑窗口中，转到以linux条目开头的行。在参数root=UUID=43ad24d3-ec5b…之后删除信息，并将其替换为以下条目：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;rw init=/bin/bash
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/12.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;更改参数后，按CTRL+x或F10启动系统。&lt;/p&gt;
&lt;h3&gt;重置root密码&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;检查文件系统是否已安装在读/写（rw）模式下。&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;root@(none):/# mount | grep -w /
&lt;/code&gt;&lt;/pre&gt;
&lt;ol&gt;
&lt;li&gt;输入passwd命令并输入root帐户的新密码。&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;root@(none):/# passwd
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/13-1024x178.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;重新启动系统。&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;root@(none):/# exec /sbin/reboot -f
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Fedora&lt;/h2&gt;
&lt;p&gt;重启，在GRUB菜单中，将光标设置为Fedora，然后按e并转到编辑。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/14-1024x560.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;在编辑窗口中，转到以linux条目开头的行。在参数root=UUID=45738e43-d533…之后删除信息，并将其替换为以下条目：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;rw init=/bin/bash
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/15-1024x551.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;重置root密码&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;检查文件系统是否已安装在读/写（rw）模式下。&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;root@(none):/# mount | grep -w /
&lt;/code&gt;&lt;/pre&gt;
&lt;ol&gt;
&lt;li&gt;输入&lt;code&gt;passwd&lt;/code&gt;命令并输入root帐户的新密码。&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;root@(none):/# passwd
&lt;/code&gt;&lt;/pre&gt;
&lt;ol&gt;
&lt;li&gt;重新启动系统。&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;root@(none):/# exec /sbin/reboot -f
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/16-1024x178.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
</content:encoded></item><item><title>无法登录phpMyAdmin</title><link>https://yushum.com/posts/%E6%97%A0%E6%B3%95%E7%99%BB%E5%BD%95phpmyadmin/</link><guid isPermaLink="true">https://yushum.com/posts/%E6%97%A0%E6%B3%95%E7%99%BB%E5%BD%95phpmyadmin/</guid><pubDate>Sat, 03 Nov 2018 12:13:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/access-denied-for-user-root-localhost-e1522710959636.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;安装phpMyAdmin后无法使用root帐户登录&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;mysqli_real_connect(): (HY000/1698): Access denied for user &apos;root&apos;@&apos;localhost&apos;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;这是因为出于安全原因，MySQL不允许远程用户以root用户身份登录。由于机器人和黑客不断扫描这些帐户，因此不建议你允许通过phpMyAdmin远程访问root帐户,而是使用不同的用户名创建新的超级用户帐户&lt;/p&gt;
&lt;p&gt;在终端中，以root身份登录MySQL。你可能在第一次安装MySQL时创建了root密码，或者密码可能为空，在这种情况下，只要在提示输入密码时按ENTER键即可&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo mysql -p -u root
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;现在添加一个新MySQL用户。在这个例子中，我们称之为pmauser。确保将password_here替换为你自己的密码。你可以在&lt;a href=&quot;https://passgen.co/&quot;&gt;此处生成密码&lt;/a&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;CREATE USER &apos;pmauser&apos;@&apos;localhost&apos; IDENTIFIED BY &apos;password_here&apos;;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;为新用户授予超级用户权限&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;GRANT ALL PRIVILEGES ON *.* TO &apos;pmauser&apos;@&apos;localhost&apos; WITH GRANT OPTION;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;你现在应该可以使用此新用户帐户访问phpMyAdmin了&lt;/p&gt;
</content:encoded></item><item><title>Linux系统CPU频率调整工具使用</title><link>https://yushum.com/posts/linux%E7%B3%BB%E7%BB%9Fcpu%E9%A2%91%E7%8E%87%E8%B0%83%E6%95%B4%E5%B7%A5%E5%85%B7%E4%BD%BF%E7%94%A8/</link><guid isPermaLink="true">https://yushum.com/posts/linux%E7%B3%BB%E7%BB%9Fcpu%E9%A2%91%E7%8E%87%E8%B0%83%E6%95%B4%E5%B7%A5%E5%85%B7%E4%BD%BF%E7%94%A8/</guid><pubDate>Sun, 28 Oct 2018 12:20:00 GMT</pubDate><content:encoded>&lt;p&gt;在进行CPU频率优化之前，我们首先需要使用命令&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;lsmod | grep &quot;acpi_cpufreq&quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;查看内核是否加载了acpi_cpufreq模块，如果加载了此模块，按照一般情况发行版都会将CPU设置为 “ondemand”模式&lt;br /&gt;
之后可以通过命令&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;来进一步确认CPU节能模式，但此时用户无法进行修改，需要进行修改必须使用命令安装cpufreq管理软件，在Debian下使用如下命令&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;apt install cpufrequtils
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;之后我们就可以通过修改相应系统所在配置文件&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;vi /etc/init.d/cpufrequtils
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;修改配置文件中&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;GOVERNOR=&quot;ondemand&quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;为&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;GOVERNOR=&quot;performance&quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后执行&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;/etc/init.d/cpufrequtils restart
&lt;/code&gt;&lt;/pre&gt;
</content:encoded></item><item><title>HostHatch评测：1T大盘鸡</title><link>https://yushum.com/posts/hosthatch%E8%AF%84%E6%B5%8B1t%E5%A4%A7%E7%9B%98%E9%B8%A1/</link><guid isPermaLink="true">https://yushum.com/posts/hosthatch%E8%AF%84%E6%B5%8B1t%E5%A4%A7%E7%9B%98%E9%B8%A1/</guid><pubDate>Fri, 26 Oct 2018 19:25:00 GMT</pubDate><content:encoded>&lt;h2&gt;简介&lt;/h2&gt;
&lt;p&gt;HostHatch是一家美国主机商，成立于2011年，拥有自己的机房网络，采用G口，速度非常快。拥有的数据中心非常的多，有香港、洛杉矶、芝加哥、纽约、阿姆斯特丹、奥斯陆、斯德哥尔摩、维也纳。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/04/hosthatch-1024x523.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;配置信息&lt;/h2&gt;
&lt;h3&gt;系统信息&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;CPU model : Intel(R) Xeon(R) CPU E5-2690 v2 @ 3.00GHz
Number of cores : 1
CPU frequency : 2999.998 MHz
Total size of Disk : 984.5 GB (1.3 GB Used)
Total amount of Mem : 996 MB (35 MB Used)
Total amount of Swap : 1023 MB (0 MB Used)
System uptime : 0 days, 0 hour 7 min
Load average : 0.37, 0.11, 0.03
OS : Debian GNU/Linux 9
Arch : x86_64 (64 Bit)
Kernel : 4.9.0-8-amd64
ipaddr : 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
vm : kvm
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;硬盘性能测试&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;ioping: seek rate
min/avg/max/mdev = 76.0 us / 98.5 us / 19.8 ms / 152.0 us
ioping: sequential speed
generated 9.05 k requests in 5.00 s, 2.21 GiB, 1.81 k iops, 452.7 MiB/s
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;网络测试&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;Node Name: IPv4 address: Download Speed
CacheFly: 205.234.175.175: 57.92 MiB/s | 463.37 Mbps
Linode, Tokyo, JP: 106.187.96.148: 8.48 MiB/s | 67.83 Mbps
Linode, Tokyo2, JP: 139.162.65.37: 9.07 MiB/s | 72.54 Mbps
Linode, Singapore, SG: 139.162.23.4: 8.10 MiB/s | 64.79 Mbps
Linode, Fremont, CA: 50.116.14.9: 1.40 MiB/s | 11.17 Mbps
Linode, Newark, NJ: 50.116.57.237: 1.56 MiB/s | 12.48 Mbps
Linode, London, UK: 176.58.107.39: 61.07 MiB/s | 488.59 Mbps
Linode, Frankfurt, DE: 139.162.130.8: 92.66 MiB/s | 741.25 Mbps
Softlayer, Tokyo, JP: 161.202.125.20: 3.94 MiB/s | 31.55 Mbps
Softlayer, Singapore, SG: 119.81.28.170: 12.00 MiB/s | 96.04 Mbps
Softlayer, Seoul, KR: 119.81.28.170: 12.53 MiB/s | 100.28 Mbps
Softlayer, HongKong, CN: 119.81.130.170: 10.97 MiB/s | 87.72 Mbps
Softlayer, Dallas, TX: 169.48.124.82: 4.40 MiB/s | 35.18 Mbps
Softlayer, Seattle, WA: 67.228.112.250: 12.49 MiB/s | 99.93 Mbps
Softlayer, Frankfurt, DE: 159.122.69.4: 42.98 MiB/s | 343.86 Mbps
Softlayer, Paris, FR: 159.8.64.212: 49.73 MiB/s | 397.86 Mbps
Leaseweb, HongKong, CN: 43.249.36.49: 19.32 MiB/s | 154.60 Mbps
Leaseweb, Singapore, SG: 103.254.153.18: 11.31 MiB/s | 90.48 Mbps
Leaseweb, Washington D.C., US: 207.244.94.80: 44.35 MiB/s | 354.82 Mbps
Leaseweb, San Francisco, US: 209.58.135.187: 26.91 MiB/s | 215.29 Mbps
Leaseweb, Netherlands, NL: 5.79.108.33: 177.32 MiB/s | 1418.54 Mbps
OVH, Montreal, CA: 192.99.19.165: 12.62 MiB/s | 100.96 Mbps

Hinet, Taiwan, TW: 210.61.132.1: 268.76 KiB/s | 2.10 Mbps

节点名称: IP地址: 下载速度
安徽合肥电信: 61.191.111.11: 5.48 MiB/s | 43.85 Mbps
江苏南京电信: 202.102.23.133: 63.04 KiB/s | 0.49 Mbps
江西南昌电信: 182.98.238.226: 2.83 KiB/s | 0.02 Mbps
新疆昌吉电信: 61.128.107.242: 61.99 KiB/s | 0.48 Mbps
安徽合肥联通: 112.122.10.26: 2.25 MiB/s | 17.99 Mbps
山东济南联通: 221.214.108.58: 4.59 MiB/s | 36.76 Mbps
吉林长春联通: 221.9.246.35: 3.19 MiB/s | 25.56 Mbps
湖北武汉联通: 113.57.249.2: 849.18 KiB/s | 6.63 Mbps
西藏拉萨联通: 221.13.70.244: 2.09 MiB/s | 16.71 Mbps
辽宁沈阳联通: 175.167.135.234: 3.31 MiB/s | 26.51 Mbps
山西太原联通: 218.26.109.107: 4.19 MiB/s | 33.52 Mbps
江苏南京联通: 153.37.96.226: 145.07 KiB/s | 1.13 Mbps
安徽合肥移动: 120.209.140.60: 1.25 MiB/s | 10.00 Mbps
山西太原移动: 183.203.24.210: 8.25 MiB/s | 65.96 Mbps
四川成都移动: 183.221.247.9: 223.58 KiB/s | 1.75 Mbps
新疆昌吉移动: 117.190.59.82: 11.13 MiB/s | 89.02 Mbps
吉林长春移动: 111.26.139.78: 5.67 MiB/s | 45.35 Mbps
西藏拉萨移动: 211.139.74.234: 7.06 MiB/s | 56.51 Mbps
辽宁沈阳移动: 221.180.176.102: 0 B/s | N/A
湖北武汉移动: 111.48.26.136: 0 B/s | N/A

四川成都教育网: 202.115.1.138: 151.19 KiB/s | 1.18 Mbps

===== 测试 [安徽合肥电信] 的回程路由 =====
traceroute to speedtest1.ah163.com (61.191.111.11), 30 hops max, 60 byte packets
1 185.213.24.1 0.28 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 1.75 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.67 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 s-b5-link.telia.net (62.115.145.10) 1.23 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
5 s-bb3-link.telia.net (62.115.136.80) 0.73 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
6 ffm-bb3-link.telia.net (62.115.138.237) 23.65 ms AS1299 德国 黑森州 法兰克福 telia.com
7 ffm-b4-link.telia.net (62.115.120.0) 25.36 ms AS1299 德国 黑森州 法兰克福 telia.com
8 118.85.205.81 25.78 ms AS4134 德国 黑森州 法兰克福 电信
9 202.97.90.181 368.71 ms AS4134 中国 上海 电信
10 *
11 202.97.57.146 359.48 ms AS4134 中国 上海 电信
12 *
13 *
14 *
15 *
16 *
17 61.191.111.11 376.42 ms AS4134 中国 安徽 合肥 电信

===== 回程 [安徽合肥电信] 路由测试结束 =====
===== 测试 [江苏南京电信] 的回程路由 =====
traceroute to 4gnanjing1.speedtest.jsinfo.net (202.102.23.133), 30 hops max, 60 byte packets
1 185.213.24.1 0.23 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.47 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.69 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 s-b5-link.telia.net (62.115.145.10) 0.93 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
5 s-bb3-link.telia.net (213.155.133.16) 1.04 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
6 ffm-bb3-link.telia.net (62.115.138.237) 22.36 ms AS1299 德国 黑森州 法兰克福 telia.com
7 ffm-b4-link.telia.net (62.115.120.0) 24.30 ms AS1299 德国 黑森州 法兰克福 telia.com
8 118.85.205.81 25.36 ms AS4134 德国 黑森州 法兰克福 电信
9 202.97.90.181 366.07 ms AS4134 中国 上海 电信
10 202.97.33.1 379.00 ms AS4134 中国 上海 电信
11 *
12 *
13 202.102.36.122 398.32 ms AS4134 中国 江苏 南京 电信
14 *
15 *
16 202.102.23.133 401.35 ms AS4134 中国 江苏 南京 电信

===== 回程 [江苏南京电信] 路由测试结束 =====
===== 测试 [江西南昌电信] 的回程路由 =====
traceroute to swxwyzx.f3322.net (182.98.238.226), 30 hops max, 60 byte packets
1 185.213.24.1 0.24 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.30 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.64 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 s-b5-link.telia.net (62.115.145.10) 2.72 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
5 s-bb3-link.telia.net (62.115.133.24) 0.84 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
6 ffm-bb3-link.telia.net (62.115.138.237) 23.64 ms AS1299 德国 黑森州 法兰克福 telia.com
7 ffm-b4-link.telia.net (62.115.120.0) 35.52 ms AS1299 德国 黑森州 法兰克福 telia.com
8 118.85.205.81 31.02 ms AS4134 德国 黑森州 法兰克福 电信
9 202.97.94.85 371.90 ms AS4134 中国 电信
10 *
11 202.97.24.145 392.22 ms AS4134 中国 上海 电信
12 202.97.39.70 403.49 ms AS4134 中国 江西 南昌 电信
13 182.98.241.2 497.82 ms AS4134 中国 江西 南昌 电信
14 182.98.238.225 409.51 ms AS4134 中国 江西 南昌 电信
15 *
16 182.98.238.226 420.63 ms AS4134 中国 江西 南昌 电信

===== 回程 [江西南昌电信] 路由测试结束 =====
===== 测试 [新疆昌吉电信] 的回程路由 =====
traceroute to 61.128.107.242 (61.128.107.242), 30 hops max, 60 byte packets
1 185.213.24.1 0.25 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.34 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.67 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 s-b5-link.telia.net (62.115.145.10) 0.82 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
5 s-bb4-link.telia.net (62.115.136.110) 0.86 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
6 ffm-bb4-link.telia.net (62.115.138.105) 19.84 ms AS1299 德国 黑森州 法兰克福 telia.com
7 ffm-b4-link.telia.net (62.115.120.6) 22.62 ms AS1299 德国 黑森州 法兰克福 telia.com
8 118.85.205.81 27.69 ms AS4134 德国 黑森州 法兰克福 电信
9 202.97.58.69 204.80 ms AS4134 中国 北京 电信
10 202.97.53.237 200.33 ms AS4134 中国 北京 电信
11 202.97.94.209 249.58 ms AS4134 中国 北京 电信
12 202.97.85.18 256.09 ms AS4134 中国 新疆 乌鲁木齐 电信
13 222.83.20.249 247.89 ms AS4134 中国 新疆 乌鲁木齐 电信
14 218.31.159.242 247.37 ms AS4134 中国 新疆 乌鲁木齐 电信
15 *
16 61.128.107.242 262.00 ms AS4134 中国 新疆 乌鲁木齐 电信

===== 回程 [新疆昌吉电信] 路由测试结束 =====
===== 测试 [安徽合肥联通] 的回程路由 =====
traceroute to 112.122.10.26 (112.122.10.26), 30 hops max, 60 byte packets
1 185.213.24.1 0.21 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.30 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.62 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 s-b5-link.telia.net (62.115.145.10) 0.91 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
5 s-bb3-link.telia.net (62.115.137.158) 163.08 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
6 kbn-bb3-link.telia.net (62.115.139.169) 164.47 ms AS1299 丹麦 首都大区 哥本哈根 telia.com
7 nyk-bb3-link.telia.net (213.155.134.50) 110.30 ms AS1299 美国 纽约州 纽约 telia.com
8 sjo-b21-link.telia.net (213.155.130.129) 163.47 ms AS1299 美国 加利福尼亚州 圣何塞 telia.com
9 chinaunicom-ic-141282-sjo-b21.c.telia.net (213.248.71.90) 418.98 ms AS1299 美国 加利福尼亚州 圣何塞 telia.com
10 219.158.25.53 378.63 ms AS4837 中国 广东 广州 联通
11 *
12 219.158.8.117 384.49 ms AS4837 中国 广东 广州 联通
13 219.158.8.162 380.17 ms AS4837 中国 湖北 武汉 联通
14 219.158.115.34 389.20 ms AS4837 中国 安徽 合肥 联通
15 58.242.193.74 388.49 ms AS4837 中国 安徽 合肥 联通
16 58.242.193.134 400.79 ms AS4837 中国 安徽 合肥 联通
17 58.242.193.29 397.29 ms AS4837 中国 安徽 合肥 联通
18 *
19 112.122.10.26 393.47 ms AS4837 中国 安徽 合肥 联通

===== 回程 [安徽合肥联通] 路由测试结束 =====
===== 测试 [山东济南联通] 的回程路由 =====
traceroute to speedtest.jnltwy.com (221.214.108.58), 30 hops max, 60 byte packets
1 185.213.24.1 0.41 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.35 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.72 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 s-b5-link.telia.net (62.115.145.10) 0.95 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
5 s-bb3-link.telia.net (213.155.133.18) 160.95 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
6 kbn-bb3-link.telia.net (62.115.139.169) 163.51 ms AS1299 丹麦 首都大区 哥本哈根 telia.com
7 nyk-bb3-link.telia.net (213.155.134.50) 100.69 ms AS1299 美国 纽约州 纽约 telia.com
8 sjo-b21-link.telia.net (213.155.130.129) 167.42 ms AS1299 美国 加利福尼亚州 圣何塞 telia.com
9 chinaunicom-ic-127288-sjo-b21.c.telia.net (213.248.73.190) 395.70 ms AS1299 美国 加利福尼亚州 圣何塞 telia.com
10 219.158.30.181 395.86 ms AS4837 中国 广东 广州 联通
11 219.158.96.210 396.93 ms AS4837 中国 广东 广州 联通
12 *
13 219.158.114.234 400.85 ms AS4837 中国 联通
14 124.128.40.58 409.71 ms AS4837 中国 山东 济南 联通
15 112.232.116.14 416.41 ms AS4837 中国 山东 济南 联通
16 112.232.115.186 410.70 ms AS4837 中国 山东 济南 联通
17 221.214.108.58 405.38 ms AS4837 中国 山东 济南 联通

===== 回程 [山东济南联通] 路由测试结束 =====
===== 测试 [湖北武汉联通] 的回程路由 =====
traceroute to 113.57.249.2 (113.57.249.2), 30 hops max, 60 byte packets
1 185.213.24.1 0.25 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.30 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.57 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 s-b5-link.telia.net (62.115.145.10) 0.90 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
5 s-bb3-link.telia.net (62.115.133.24) 159.43 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
6 kbn-bb3-link.telia.net (62.115.139.169) 163.44 ms AS1299 丹麦 首都大区 哥本哈根 telia.com
7 nyk-bb3-link.telia.net (213.155.134.50) 90.75 ms AS1299 美国 纽约州 纽约 telia.com
8 sjo-b21-link.telia.net (213.155.130.129) 163.48 ms AS1299 美国 加利福尼亚州 圣何塞 telia.com
9 chinaunicom-ic-127288-sjo-b21.c.telia.net (213.248.73.190) 391.17 ms AS1299 美国 加利福尼亚州 圣何塞 telia.com
10 219.158.25.53 377.72 ms AS4837 中国 广东 广州 联通
11 *
12 219.158.8.113 374.90 ms AS4837 中国 广东 广州 联通
13 219.158.8.162 381.29 ms AS4837 中国 湖北 武汉 联通
14 *
15 *
16 *
17 113.57.249.2 373.05 ms AS9929 中国 湖北 武汉 联通

===== 回程 [湖北武汉联通] 路由测试结束 =====
===== 测试 [西藏拉萨联通] 的回程路由 =====
traceroute to 221.13.70.244 (221.13.70.244), 30 hops max, 60 byte packets
1 185.213.24.1 0.24 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 15.54 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.66 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 s-b5-link.telia.net (62.115.145.10) 0.83 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
5 s-bb4-link.telia.net (80.91.249.218) 164.31 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
6 kbn-bb4-link.telia.net (62.115.139.173) 169.34 ms AS1299 丹麦 首都大区 哥本哈根 telia.com
7 nyk-bb4-link.telia.net (80.91.254.91) 205.00 ms AS1299 美国 纽约州 纽约 telia.com
8 219.158.97.30 318.73 ms AS4837 中国 广东 广州 联通
9 219.158.19.65 309.48 ms AS4837 中国 广东 广州 联通
10 219.158.104.246 356.13 ms AS4837 中国 西藏 拉萨 联通
11 *
12 *
13 221.13.70.244 365.52 ms AS4837 中国 西藏 拉萨 联通

===== 回程 [西藏拉萨联通] 路由测试结束 =====
===== 测试 [辽宁沈阳联通] 的回程路由 =====
traceroute to speedtest1.online.ln.cn (175.167.135.234), 30 hops max, 60 byte packets
1 185.213.24.1 0.49 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.63 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.59 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 s-b5-link.telia.net (62.115.145.10) 0.91 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
5 s-bb4-link.telia.net (62.115.119.110) 1.06 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
6 hbg-bb4-link.telia.net (62.115.115.58) 11.53 ms AS1299 德国 汉堡州 汉堡 telia.com
7 ldn-bb4-link.telia.net (62.115.122.161) 23.31 ms AS1299 英国 伦敦 telia.com
8 ldn-b4-link.telia.net (62.115.134.139) 27.67 ms AS1299 英国 伦敦 telia.com
9 chinaunicom-ic-324709-ldn-b4.c.telia.net (62.115.154.221) 26.52 ms AS1299 英国 伦敦 telia.com
10 219.158.29.77 264.50 ms AS4837 中国 北京 联通
11 219.158.3.145 272.28 ms AS4837 中国 北京 联通
12 219.158.5.145 270.91 ms AS4837 中国 北京 联通
13 219.158.100.54 282.35 ms AS4837 中国 辽宁 大连 联通
14 113.230.183.2 282.13 ms AS4837 中国 辽宁 沈阳 联通
15 *
16 220.201.28.41 294.27 ms AS4837 中国 辽宁 沈阳 联通
17 175.167.135.234 296.86 ms AS4837 中国 辽宁 沈阳 联通

===== 回程 [辽宁沈阳联通] 路由测试结束 =====
===== 测试 [山西太原联通] 的回程路由 =====
traceroute to speedtest.sxunicomjzjk.cn (218.26.109.107), 30 hops max, 60 byte packets
1 185.213.24.1 0.27 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.85 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.67 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 s-b5-link.telia.net (62.115.145.10) 1.23 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
5 s-bb3-link.telia.net (62.115.119.108) 167.76 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
6 kbn-bb3-link.telia.net (62.115.139.169) 163.82 ms AS1299 丹麦 首都大区 哥本哈根 telia.com
7 nyk-bb3-link.telia.net (213.155.134.50) 108.20 ms AS1299 美国 纽约州 纽约 telia.com
8 sjo-b21-link.telia.net (213.155.130.129) 167.65 ms AS1299 美国 加利福尼亚州 圣何塞 telia.com
9 chinaunicom-ic-141282-sjo-b21.c.telia.net (213.248.71.90) 396.22 ms AS1299 美国 加利福尼亚州 圣何塞 telia.com
10 219.158.30.181 395.44 ms AS4837 中国 广东 广州 联通
11 219.158.103.29 399.17 ms AS4837 中国 广东 广州 联通
12 219.158.103.217 398.43 ms AS4837 中国 广东 广州 联通
13 219.158.115.130 406.39 ms AS4837 中国 联通
14 202.131.26.218.router-switch.sx.cn (218.26.131.202) 399.68 ms AS4837 中国 山西 太原 联通
15 202.99.223.210 402.85 ms AS4837 中国 山西 太原 联通
16 14.24.26.218.internet.sx.cn (218.26.24.14) 405.53 ms AS4837 中国 山西 太原 联通
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *

===== 回程 [山西太原联通] 路由测试结束 =====
===== 测试 [江苏南京联通] 的回程路由 =====
traceroute to speedtest02.js165.com (153.37.96.226), 30 hops max, 60 byte packets
1 185.213.24.1 0.26 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.31 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.66 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 s-b5-link.telia.net (62.115.145.10) 0.90 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
5 s-bb3-link.telia.net (62.115.137.158) 163.27 ms AS1299 瑞典 斯德哥尔摩省 斯德哥尔摩 telia.com
6 kbn-bb3-link.telia.net (62.115.139.169) 163.65 ms AS1299 丹麦 首都大区 哥本哈根 telia.com
7 nyk-bb3-link.telia.net (213.155.134.50) 115.28 ms AS1299 美国 纽约州 纽约 telia.com
8 sjo-b21-link.telia.net (213.155.130.129) 167.53 ms AS1299 美国 加利福尼亚州 圣何塞 telia.com
9 chinaunicom-ic-141282-sjo-b21.c.telia.net (213.248.71.90) 397.37 ms AS1299 美国 加利福尼亚州 圣何塞 telia.com
10 219.158.25.53 381.76 ms AS4837 中国 广东 广州 联通
11 219.158.97.30 379.76 ms AS4837 中国 广东 广州 联通
12 219.158.24.125 382.01 ms AS4837 中国 广东 广州 联通
13 219.158.12.2 388.03 ms AS4837 中国 江苏 南京 联通
14 153.3.228.170 390.26 ms AS4837 中国 江苏 南京 联通
15 153.37.96.226 390.02 ms AS4837 中国 江苏 南京 联通

===== 回程 [江苏南京联通] 路由测试结束 =====
===== 测试 [安徽合肥移动] 的回程路由 =====
traceroute to 4gtest.ahydnet.com (120.209.140.60), 30 hops max, 60 byte packets
1 185.213.24.1 0.24 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.35 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.55 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 be-1.cr1.sto2.se.portlane.net (80.67.4.208) 1.41 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
5 te-0-0-0-39.cr2.ams1.nl.portlane.net (80.67.4.179) 22.68 ms AS42708 荷兰 北荷兰省 阿姆斯特丹 portlane.com
6 po-2.lon1.uk.portlane.net (80.67.4.224) 32.70 ms AS42708 英国 伦敦 portlane.com
7 195.66.226.5 35.49 ms AS7713,AS18403,AS37468,AS39326 英国 伦敦 linx.net
8 221.183.30.217 296.58 ms AS9808 中国 北京 移动
9 221.183.46.250 298.65 ms AS9808 中国 北京 移动
10 *
11 221.183.25.26 322.80 ms AS9808 中国 上海 移动
12 221.176.27.177 345.95 ms AS9808 中国 安徽 合肥 移动
13 221.183.19.130 341.94 ms AS9808 中国 安徽 合肥 移动
14 *
15 120.209.143.178 338.55 ms AS9808 中国 安徽 合肥 移动
16 120.209.143.82 290.05 ms AS9808 中国 安徽 合肥 移动
17 120.209.140.60 342.36 ms AS9808 中国 安徽 合肥 移动

===== 回程 [安徽合肥移动] 路由测试结束 =====
===== 测试 [山西太原移动] 的回程路由 =====
traceroute to sp.sx.chinamobile.com (183.203.24.210), 30 hops max, 60 byte packets
1 185.213.24.1 0.23 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.31 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.56 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 te-3-1.mal1.se.portlane.net (80.67.4.163) 7.83 ms AS42708 瑞典 斯科讷省 马尔默 portlane.com
5 te-0-0-0-38.cr2.ams1.nl.portlane.net (80.67.4.135) 19.02 ms AS42708 荷兰 北荷兰省 阿姆斯特丹 portlane.com
6 po-2.lon1.uk.portlane.net (80.67.4.224) 30.71 ms AS42708 英国 伦敦 portlane.com
7 195.66.226.5 34.83 ms AS7713,AS18403,AS37468,AS39326 英国 伦敦 linx.net
8 221.183.30.221 294.73 ms AS9808 中国 北京 移动
9 221.183.46.250 295.19 ms AS9808 中国 北京 移动
10 *
11 221.176.17.202 310.02 ms AS9808 中国 山西 太原 移动
12 221.183.26.22 303.91 ms AS9808 中国 山西 太原 移动
13 183.203.31.238 308.84 ms AS132510 中国 山西 太原 移动
14 183.203.24.210 302.66 ms AS132510 中国 山西 太原 移动

===== 回程 [山西太原移动] 路由测试结束 =====
===== 测试 [四川成都移动] 的回程路由 =====
traceroute to 183.221.247.9 (183.221.247.9), 30 hops max, 60 byte packets
1 185.213.24.1 0.27 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.41 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.75 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 be-1.cr1.sto2.se.portlane.net (80.67.4.208) 1.58 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
5 te-0-0-0-39.cr2.ams1.nl.portlane.net (80.67.4.179) 22.60 ms AS42708 荷兰 北荷兰省 阿姆斯特丹 portlane.com
6 po-2.lon1.uk.portlane.net (80.67.4.224) 39.72 ms AS42708 英国 伦敦 portlane.com
7 195.66.226.5 35.79 ms AS7713,AS18403,AS37468,AS39326 英国 伦敦 linx.net
8 223.120.15.46 229.10 ms AS58453 中国 移动
9 221.183.55.58 229.08 ms AS9808 中国 广东 广州 移动
10 221.183.25.118 228.76 ms AS9808 中国 广东 广州 移动
11 221.176.24.5 280.55 ms AS9808 中国 广东 广州 移动
12 221.176.21.118 284.45 ms AS9808 中国 广东 广州 移动
13 221.176.22.94 288.60 ms AS9808 中国 广东 广州 移动
14 221.176.20.126 243.88 ms AS9808 中国 四川 成都 移动
15 221.183.19.42 256.42 ms AS9808 中国 四川 成都 移动
16 117.139.26.253 296.28 ms AS9808 中国 四川 成都 移动
17 117.177.244.17 259.17 ms AS9808 中国 四川 成都 移动
18 117.172.50.46 328.14 ms AS9808 中国 四川 成都 移动
19 117.172.4.46 247.88 ms AS9808 中国 四川 成都 移动
20 183.221.240.70 301.00 ms AS9808 中国 四川 成都 移动
21 183.221.247.9 294.71 ms AS9808 中国 四川 成都 移动

===== 回程 [四川成都移动] 路由测试结束 =====
===== 测试 [新疆昌吉移动] 的回程路由 =====
traceroute to speedtest5.xj.chinamobile.com (117.190.59.82), 30 hops max, 60 byte packets
1 185.213.24.1 0.22 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.31 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.67 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 te-3-1.mal1.se.portlane.net (80.67.4.163) 110.78 ms AS42708 瑞典 斯科讷省 马尔默 portlane.com
5 te-0-0-0-38.cr2.ams1.nl.portlane.net (80.67.4.135) 18.64 ms AS42708 荷兰 北荷兰省 阿姆斯特丹 portlane.com
6 po-2.lon1.uk.portlane.net (80.67.4.224) 30.73 ms AS42708 英国 伦敦 portlane.com
7 195.66.226.5 32.87 ms AS7713,AS18403,AS37468,AS39326 英国 伦敦 linx.net
8 221.183.30.209 243.20 ms AS9808 中国 北京 移动
9 221.183.46.250 242.99 ms AS9808 中国 北京 移动
10 221.176.21.229 204.50 ms AS9808 中国 北京 移动
11 221.183.36.30 307.30 ms AS9808 中国 新疆 乌鲁木齐 移动
12 *
13 117.191.0.58 303.36 ms AS9808 中国 新疆 阿勒泰地区 移动
14 117.190.59.82 303.76 ms AS9808 中国 新疆 阿勒泰地区 移动

===== 回程 [新疆昌吉移动] 路由测试结束 =====
===== 测试 [吉林长春移动] 的回程路由 =====
traceroute to speedtest2.jl.chinamobile.com (111.26.139.78), 30 hops max, 60 byte packets
1 185.213.24.1 0.27 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.39 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.67 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 te-3-1.mal1.se.portlane.net (80.67.4.163) 7.96 ms AS42708 瑞典 斯科讷省 马尔默 portlane.com
5 te-0-0-0-38.cr2.ams1.nl.portlane.net (80.67.4.135) 18.91 ms AS42708 荷兰 北荷兰省 阿姆斯特丹 portlane.com
6 po-2.lon1.uk.portlane.net (80.67.4.224) 30.71 ms AS42708 英国 伦敦 portlane.com
7 195.66.226.5 33.48 ms AS7713,AS18403,AS37468,AS39326 英国 伦敦 linx.net
8 221.183.30.217 321.91 ms AS9808 中国 北京 移动
9 221.183.46.254 274.13 ms AS9808 中国 北京 移动
10 221.176.27.253 301.77 ms AS9808 中国 北京 移动
11 221.176.18.161 261.89 ms AS9808 中国 吉林 长春 移动
12 *
13 111.26.138.166 274.77 ms AS134810 中国 吉林 长春 移动
14 111.26.139.78 270.82 ms AS134810 中国 吉林 长春 移动

===== 回程 [吉林长春移动] 路由测试结束 =====
===== 测试 [西藏拉萨移动] 的回程路由 =====
traceroute to speedtest1.xz.chinamobile.com (211.139.74.234), 30 hops max, 60 byte packets
1 185.213.24.1 0.33 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.33 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.60 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 te-3-1.mal1.se.portlane.net (80.67.4.163) 7.80 ms AS42708 瑞典 斯科讷省 马尔默 portlane.com
5 te-0-0-0-38.cr2.ams1.nl.portlane.net (80.67.4.135) 19.04 ms AS42708 荷兰 北荷兰省 阿姆斯特丹 portlane.com
6 po-2.lon1.uk.portlane.net (80.67.4.224) 30.72 ms AS42708 英国 伦敦 portlane.com
7 195.66.226.5 33.48 ms AS7713,AS18403,AS37468,AS39326 英国 伦敦 linx.net
8 221.183.30.209 243.46 ms AS9808 中国 北京 移动
9 221.183.46.254 209.35 ms AS9808 中国 北京 移动
10 221.176.27.253 252.48 ms AS9808 中国 北京 移动
11 221.183.36.46 248.46 ms AS9808 中国 移动
12 *
13 211.139.74.234 297.08 ms AS9808 中国 西藏 拉萨 移动

===== 回程 [西藏拉萨移动] 路由测试结束 =====
===== 测试 [辽宁沈阳移动] 的回程路由 =====
traceroute to speedtest1.ln.chinamobile.com (221.180.176.102), 30 hops max, 60 byte packets
1 185.213.24.1 0.23 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.35 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.72 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 be-1.cr1.sto2.se.portlane.net (80.67.4.208) 1.86 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
5 te-0-0-0-39.cr2.ams1.nl.portlane.net (80.67.4.179) 22.55 ms AS42708 荷兰 北荷兰省 阿姆斯特丹 portlane.com
6 po-2.lon1.uk.portlane.net (80.67.4.224) 33.62 ms AS42708 英国 伦敦 portlane.com
7 195.66.226.5 36.33 ms AS7713,AS18403,AS37468,AS39326 英国 伦敦 linx.net
8 221.183.30.221 296.54 ms AS9808 中国 北京 移动
9 221.183.46.254 258.02 ms AS9808 中国 北京 移动
10 221.176.27.253 304.23 ms AS9808 中国 北京 移动
11 221.183.23.161 258.61 ms AS9808 中国 辽宁 沈阳 移动
12 *
13 221.180.168.6 335.80 ms AS56044 中国 辽宁 沈阳 移动
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *

===== 回程 [辽宁沈阳移动] 路由测试结束 =====
===== 测试 [湖北武汉移动] 的回程路由 =====
traceroute to speedtest1.hb.chinamobile.com (111.48.26.136), 30 hops max, 60 byte packets
1 185.213.24.1 0.23 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.32 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.72 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 te-3-1.mal1.se.portlane.net (80.67.4.163) 7.72 ms AS42708 瑞典 斯科讷省 马尔默 portlane.com
5 te-0-0-0-38.cr2.ams1.nl.portlane.net (80.67.4.135) 18.84 ms AS42708 荷兰 北荷兰省 阿姆斯特丹 portlane.com
6 po-2.lon1.uk.portlane.net (80.67.4.224) 30.87 ms AS42708 英国 伦敦 portlane.com
7 195.66.226.5 34.77 ms AS7713,AS18403,AS37468,AS39326 英国 伦敦 linx.net
8 221.183.30.209 243.33 ms AS9808 中国 北京 移动
9 221.183.46.250 242.44 ms AS9808 中国 北京 移动
10 221.176.21.185 245.88 ms AS9808 中国 北京 移动
11 *
12 221.183.19.38 264.20 ms AS9808 中国 湖北 武汉 移动
13 111.48.24.186 265.40 ms AS9808 中国 湖北 武汉 移动
14 111.48.24.82 285.37 ms AS9808 中国 湖北 武汉 移动
15 111.48.26.136 221.06 ms AS9808 中国 湖北 武汉 移动

===== 回程 [湖北武汉移动] 路由测试结束 =====
===== 测试 [四川成都教育网] 的回程路由 =====
traceroute to sp1.uestc.edu.cn (202.115.1.138), 30 hops max, 60 byte packets
1 185.213.24.1 0.27 ms AS63473 瑞典 斯德哥尔摩省 斯德哥尔摩 hosthatch.com
2 vl-121.pe1.sto1.se.portlane.net (80.67.0.168) 0.28 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
3 be-4.cr1.sto1.se.portlane.net (80.67.4.192) 0.61 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
4 be-1.cr1.sto2.se.portlane.net (80.67.4.208) 1.58 ms AS42708 瑞典 斯德哥尔摩省 斯德哥尔摩 portlane.com
5 10gigabitethernet1-3.core1.sto1.he.net (194.68.128.187) 0.59 ms AS7713 瑞典 斯德哥尔摩省 斯德哥尔摩 netnod.se
6 100ge8-2.core1.ams1.he.net (184.105.65.125) 40.78 ms AS6939 荷兰 北荷兰省 阿姆斯特丹 he.net
7 100ge8-1.core1.man1.he.net (184.105.213.66) 35.95 ms AS6939 英国 大曼彻斯特郡 曼彻斯特 he.net
8 100ge8-1.core1.dub1.he.net (72.52.92.198) 40.07 ms AS6939 爱尔兰 都柏林郡 都柏林 he.net
9 100ge5-2.core1.nyc5.he.net (184.105.65.245) 97.87 ms AS6939 美国 新泽西州 锡考克斯 he.net
10 100ge10-1.core2.ash1.he.net (184.105.81.150) 103.04 ms AS6939 美国 弗吉尼亚州 阿什本 he.net
11 100ge1-2.core1.ash1.he.net (72.52.92.225) 103.27 ms AS6939 美国 弗吉尼亚州 阿什本 he.net
12 100ge10-2.core1.lax1.he.net (184.105.80.202) 158.61 ms AS6939 美国 加利福尼亚州 洛杉矶 he.net
13 100ge14-1.core1.lax2.he.net (72.52.92.122) 158.77 ms AS6939 美国 加利福尼亚州 洛杉矶 he.net
14 erx-cernet-bkb-as4538.10gigabitethernet3-2.core1.lax2.he.net (216.218.244.106) 153.50 ms AS6939 美国 加利福尼亚州 洛杉矶 he.net
15 101.4.117.185 156.97 ms AS4538 美国 加利福尼亚州 洛杉矶 教育网
16 101.4.117.213 361.30 ms AS4538 中国 北京 教育网
17 101.4.117.101 365.99 ms AS4538 中国 北京 教育网
18 101.4.114.173 370.86 ms AS4538 中国 教育网
19 101.4.115.114 412.92 ms AS4538 中国 四川 成都 教育网
24 202.115.1.138 397.80 ms AS4538 中国 四川 成都 电子科技大学 教育网

===== 回程 [四川成都教育网] 路由测试结束 =====

【安徽合肥电信】 – speedtest1.ah163.com
10 packets transmitted, 8 received, 20% packet loss, time 9290ms

rtt min/avg/max/mdev = 376.247/376.458/376.826/0.557 ms

【江苏南京电信】 – 4gnanjing1.speedtest.jsinfo.net
10 packets transmitted, 6 received, 40% packet loss, time 9047ms

rtt min/avg/max/mdev = 385.262/391.114/398.168/4.813 ms

【江西南昌电信】 – swxwyzx.f3322.net
10 packets transmitted, 10 received, 0% packet loss, time 9005ms

rtt min/avg/max/mdev = 290.462/307.401/410.940/34.698 ms

【新疆昌吉电信】 – 61.128.107.242
10 packets transmitted, 8 received, 20% packet loss, time 9025ms

rtt min/avg/max/mdev = 261.947/262.687/264.300/0.814 ms

【安徽合肥联通】 – 112.122.10.26
10 packets transmitted, 8 received, 20% packet loss, time 9053ms

rtt min/avg/max/mdev = 393.646/393.950/394.723/0.667 ms

【山东济南联通】 – speedtest.jnltwy.com
10 packets transmitted, 10 received, 0% packet loss, time 9140ms

rtt min/avg/max/mdev = 404.107/404.710/405.487/0.691 ms

【湖北武汉联通】 – 113.57.249.2
10 packets transmitted, 6 received, 40% packet loss, time 9081ms

rtt min/avg/max/mdev = 372.689/372.890/373.093/0.717 ms

【西藏拉萨联通】 – 221.13.70.244
10 packets transmitted, 9 received, 10% packet loss, time 9027ms

rtt min/avg/max/mdev = 362.413/365.359/368.717/2.035 ms

【辽宁沈阳联通】 – speedtest1.online.ln.cn
10 packets transmitted, 10 received, 0% packet loss, time 9009ms

rtt min/avg/max/mdev = 285.820/292.297/297.808/4.154 ms

【山西太原联通】 – speedtest.sxunicomjzjk.cn
10 packets transmitted, 0 received, 100% packet loss, time 9200ms

【江苏南京联通】 – speedtest02.js165.com
10 packets transmitted, 10 received, 0% packet loss, time 13621ms

rtt min/avg/max/mdev = 389.879/390.961/391.642/0.812 ms

【安徽合肥移动】 – 4gtest.ahydnet.com
10 packets transmitted, 10 received, 0% packet loss, time 23651ms

rtt min/avg/max/mdev = 338.264/339.995/341.682/1.120 ms

【山西太原移动】 – sp.sx.chinamobile.com
10 packets transmitted, 10 received, 0% packet loss, time 13464ms

rtt min/avg/max/mdev = 301.784/303.275/308.094/2.083 ms

【四川成都移动】 – 183.221.247.9
10 packets transmitted, 10 received, 0% packet loss, time 9012ms

rtt min/avg/max/mdev = 294.384/300.681/323.791/10.223 ms

【新疆昌吉移动】 – speedtest5.xj.chinamobile.com
10 packets transmitted, 10 received, 0% packet loss, time 9002ms

rtt min/avg/max/mdev = 303.552/303.766/304.086/0.665 ms

【吉林长春移动】 – speedtest2.jl.chinamobile.com
10 packets transmitted, 0 received, 100% packet loss, time 9219ms

【西藏拉萨移动】 – speedtest1.xz.chinamobile.com
10 packets transmitted, 10 received, 0% packet loss, time 8999ms

rtt min/avg/max/mdev = 297.119/298.580/302.162/1.987 ms

【辽宁沈阳移动】 – speedtest1.ln.chinamobile.com
10 packets transmitted, 0 received, +5 errors, 100% packet loss, time 12244ms

pipe 2

【湖北武汉移动】 – speedtest1.hb.chinamobile.com
10 packets transmitted, 4 received, 60% packet loss, time 10939ms

rtt min/avg/max/mdev = 217.192/240.156/261.334/21.200 ms

【四川成都教育网】 – sp1.uestc.edu.cn
10 packets transmitted, 10 received, 0% packet loss, time 9932ms

rtt min/avg/max/mdev = 397.860/409.170/418.592/6.311 ms

min:最低延迟
avg:平均延迟
max:最高延迟

mdev:平均偏差
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;UnixBench测试&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;BYTE UNIX Benchmarks (Version 5.1.3)

System: server: GNU/Linux
OS: GNU/Linux — 4.9.0-8-amd64 — #1 SMP Debian 4.9.110-3+deb9u6 (2018-10-08)
Machine: x86_64 (unknown)
Language: en_US.utf8 (charmap=”UTF-8″, collate=”UTF-8″)
CPU 0: Intel(R) Xeon(R) CPU E5-2690 v2 @ 3.00GHz (6000.0 bogomips)
x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
08:24:47 up 24 min, 1 user, load average: 0.00, 0.01, 0.00; runlevel 5

Benchmark Run: Fri Oct 26 2018 08:24:47 – 08:52:49
1 CPU in system; running 1 parallel copy of tests

Dhrystone 2 using register variables 35259723.0 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4543.8 MWIPS (9.9 s, 7 samples)
Execl Throughput 5110.0 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 766152.1 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 199553.5 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2285649.5 KBps (30.0 s, 2 samples)
Pipe Throughput 1077530.7 lps (10.0 s, 7 samples)
Pipe-based Context Switching 164710.2 lps (10.0 s, 7 samples)
Process Creation 12012.6 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 9315.3 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 1229.3 lpm (60.0 s, 2 samples)
System Call Overhead 712253.6 lps (10.0 s, 7 samples)

System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 35259723.0 3021.4
Double-Precision Whetstone 55.0 4543.8 826.2
Execl Throughput 43.0 5110.0 1188.4
File Copy 1024 bufsize 2000 maxblocks 3960.0 766152.1 1934.7
File Copy 256 bufsize 500 maxblocks 1655.0 199553.5 1205.8
File Copy 4096 bufsize 8000 maxblocks 5800.0 2285649.5 3940.8
Pipe Throughput 12440.0 1077530.7 866.2
Pipe-based Context Switching 4000.0 164710.2 411.8
Process Creation 126.0 12012.6 953.4
Shell Scripts (1 concurrent) 42.4 9315.3 2197.0
Shell Scripts (8 concurrent) 6.0 1229.3 2048.8

System Call Overhead 15000.0 712253.6 474.8

System Benchmarks Index Score 1282.6
&lt;/code&gt;&lt;/pre&gt;
</content:encoded></item><item><title>使用acme.sh申请Let&apos;s Encrypt通配符证书</title><link>https://yushum.com/posts/%E4%BD%BF%E7%94%A8acme-sh%E7%94%B3%E8%AF%B7lets-encrypt%E9%80%9A%E9%85%8D%E7%AC%A6%E8%AF%81%E4%B9%A6/</link><guid isPermaLink="true">https://yushum.com/posts/%E4%BD%BF%E7%94%A8acme-sh%E7%94%B3%E8%AF%B7lets-encrypt%E9%80%9A%E9%85%8D%E7%AC%A6%E8%AF%81%E4%B9%A6/</guid><pubDate>Fri, 26 Oct 2018 17:10:00 GMT</pubDate><content:encoded>&lt;h2&gt;安装&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;curl  https://get.acme.sh | sh
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;具体说明可以参考&lt;a href=&quot;https://github.com/Neilpang/acme.sh/wiki/%E8%AF%B4%E6%98%8E&quot;&gt;acme.sh&lt;/a&gt;, 安装好&lt;code&gt;logout&lt;/code&gt;使环境变量生效&lt;/p&gt;
&lt;h2&gt;利用DNS API申请通配符证书&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;acme.sh&lt;/code&gt;目前支持cloudflare, dnspod, cloudxns, godaddy以及ovh等数十种解析商的API, 可以自动添加TXT记录来验证, 不需要人工操作, 详细可以看&lt;a href=&quot;https://github.com/Neilpang/acme.sh/blob/master/dnsapi/README.md#how-to-use-dns-api&quot;&gt;How to use DNS API&lt;/a&gt;&lt;br /&gt;
这里以 CloudFlare 为例，首先登录 CloudFlare，点击右上角头像-My Profile，拉到最下面点击API Key中Global API Key后面的View，就可以看到Your API Key, 记下来&lt;/p&gt;
&lt;h2&gt;开始申请&lt;/h2&gt;
&lt;p&gt;首先设置临时环境变量, 配置我们刚才得到的API信息&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;export CF_Key=&quot;sdfsdfsdfljlbjkljlkjsdfoiwje&quot;
export CF_Email=&quot;xxxx@sss.com&quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;这个临时环境变量只需配置这一次，当成功申请证书后，API 信息会被自动保存在&lt;code&gt;~/.acme.sh/account.conf&lt;/code&gt;, 下次你使用&lt;code&gt;acme.sh&lt;/code&gt;的时候会被自动使用&lt;br /&gt;
接下来正式开始申请泛域名证书，将&lt;code&gt;example.com&lt;/code&gt;换成你自己的域名&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;acme.sh --issue --dns dns_cf -d example.com -d *.example.com -k ec-256
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后等待20秒即可&lt;/p&gt;
&lt;h2&gt;得到证书&lt;/h2&gt;
&lt;p&gt;申请完成后你将会在&lt;code&gt;~/.acme.sh/example.com_ecc&lt;/code&gt;目录下看到你的证书文件&lt;/p&gt;
&lt;p&gt;证书是&lt;code&gt;fullchain.cer&lt;/code&gt;&lt;br /&gt;
密匙是&lt;code&gt;example.com.key&lt;/code&gt;&lt;/p&gt;
</content:encoded></item><item><title>通过Tunnel Broker添加IPv6地址</title><link>https://yushum.com/posts/%E9%80%9A%E8%BF%87tunnel-broker%E6%B7%BB%E5%8A%A0ipv6%E5%9C%B0%E5%9D%80/</link><guid isPermaLink="true">https://yushum.com/posts/%E9%80%9A%E8%BF%87tunnel-broker%E6%B7%BB%E5%8A%A0ipv6%E5%9C%B0%E5%9D%80/</guid><pubDate>Sat, 20 Oct 2018 11:56:00 GMT</pubDate><content:encoded>&lt;h1&gt;添加IPv6&lt;/h1&gt;
&lt;p&gt;首先到&lt;a href=&quot;https://tunnelbroker.net/&quot;&gt;Hurricane Electric Free IPv6 Tunnel Broker&lt;/a&gt;注册，登陆后点击&lt;a href=&quot;https://tunnelbroker.net/new_tunnel.php&quot;&gt;Create Regular Tunnel&lt;/a&gt;，按提示创建好&lt;br /&gt;
打开Tunnel Details后选择Example Configuration,如下图所示&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://b2.yushum.com/images/2020/03/20181019165657.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;选择使用的系统按提示操作&lt;/p&gt;
&lt;h1&gt;IPv4优先 （可选）&lt;/h1&gt;
&lt;p&gt;默认不修改情况下，如linux主机中有IPv6地址， 会优先走IPv6通道，例如debian的源dns解析会默认返回AAAA记录(IPv6)，要使用IPv4 连接优先而不必禁用IPv6，需要修改gai.conf配置文件使其生效。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;vi /etc/gai.conf
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;取消下面这行的注释&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;precedence ::ffff:0:0/96  100
&lt;/code&gt;&lt;/pre&gt;
&lt;h1&gt;注意&lt;/h1&gt;
&lt;p&gt;有些VPS如&lt;a href=&quot;https://bandwagonhost.com/aff.php?aff=6989&quot;&gt;Bandwagon&lt;/a&gt;的KVM系列，还需要修改&lt;code&gt;/etc/sysctl.conf&lt;/code&gt;文件&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;vi /etc/sysctl.conf
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;添加这三行&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;net.ipv6.conf.all.disable_ipv6 = 0
net.ipv6.conf.default.disable_ipv6 = 0
net.ipv6.conf.lo.disable_ipv6 = 0
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;最后重启即可&lt;/p&gt;
</content:encoded></item><item><title>Debian 10 系统/网络参数优化</title><link>https://yushum.com/posts/debian-10-%E7%B3%BB%E7%BB%9F-%E7%BD%91%E7%BB%9C%E5%8F%82%E6%95%B0%E4%BC%98%E5%8C%96/</link><guid isPermaLink="true">https://yushum.com/posts/debian-10-%E7%B3%BB%E7%BB%9F-%E7%BD%91%E7%BB%9C%E5%8F%82%E6%95%B0%E4%BC%98%E5%8C%96/</guid><pubDate>Fri, 19 Oct 2018 16:35:00 GMT</pubDate><content:encoded>&lt;h2&gt;调整内核参数&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;vi /etc/sysctl.d/99-custom.conf
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;添加以下内容&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;vm.swappiness=10

fs.file-max = 51200

net.core.rmem_max = 67108864
net.core.wmem_max = 67108864
net.core.netdev_max_backlog = 250000
net.core.somaxconn = 4096
net.core.default_qdisc = fq

net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_tw_reuse = 1
net.ipv4.tcp_tw_recycle = 0
net.ipv4.tcp_fin_timeout = 30
net.ipv4.tcp_keepalive_time = 1200
net.ipv4.ip_local_port_range = 10000 65000
net.ipv4.tcp_max_syn_backlog = 8192
net.ipv4.tcp_max_tw_buckets = 5000
net.ipv4.tcp_fastopen = 3
net.ipv4.tcp_mem = 25600 51200 102400
net.ipv4.tcp_rmem = 4096 87380 67108864
net.ipv4.tcp_wmem = 4096 65536 67108864
net.ipv4.tcp_mtu_probing = 1
net.ipv4.tcp_congestion_control = bbr
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;保存生效&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sysctl --system
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;增加打开文件描述符的最大数量&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;vi /etc/security/limits.d/custom.conf
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;添加如下内容&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;* soft nofile 51200
* hard nofile 51200

# for server running in root:
root soft nofile 51200
root hard nofile 51200
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;执行下面的命令来立即生效&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;ulimit -n 51200
&lt;/code&gt;&lt;/pre&gt;
</content:encoded></item><item><title>Debian挂载Google Drive</title><link>https://yushum.com/posts/debian%E6%8C%82%E8%BD%BDgoogle-drive/</link><guid isPermaLink="true">https://yushum.com/posts/debian%E6%8C%82%E8%BD%BDgoogle-drive/</guid><pubDate>Sun, 22 Oct 2017 11:42:00 GMT</pubDate><content:encoded>&lt;h2&gt;安装google-drive-ocamlfuse&lt;/h2&gt;
&lt;p&gt;挂载Google Drive还是用google-drive-ocamlfuse，比较舒服。试过rclone，复制和移动命令总有各种问题。&lt;br /&gt;
以下操作默认以root用户登陆。&lt;/p&gt;
&lt;h3&gt;安装OPAM&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;apt install vim sudo software-properties-common ocaml
apt install opam
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;初始化OPAM&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;opam init
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;更新OPAM&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;opam update
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;安装外部依赖&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;opam install depext
opam depext google-drive-ocamlfuse
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;安装google-drive-ocamlfuse&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;opam install google-drive-ocamlfuse
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;至此google-drive-ocamlfuse安装完成。&lt;/p&gt;
&lt;h2&gt;挂载&lt;/h2&gt;
&lt;p&gt;进入到&lt;a href=&quot;https://console.developers.google.com/apis/api/drive.googleapis.com/&quot;&gt;Google Drive&lt;/a&gt;获取一个API，类型选择“其他”。接着输入以下命令绑定Google Drive的API。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt install xdg-utils --fix-missing
&lt;/code&gt;&lt;/pre&gt;
&lt;blockquote&gt;
&lt;p&gt;将client-ID、client-secret 替换为自己的。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;pre&gt;&lt;code&gt;google-drive-ocamlfuse -headless -label me -id client-ID -secret client-secret
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;之后会出现一行链接，复制、粘贴到浏览器，打开&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;mkdir /home/google-drive
google-drive-ocamlfuse -label me /home/google-drive
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;如果出现错误：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;fuse: mountpoint is not empty
fuse: if you are sure this is safe, use the &apos;nonempty&apos; mount option
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;使用以下命令&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;google-drive-ocamlfuse -label me /home/google-drive -o nonempty
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;设置开机自启动&lt;/h2&gt;
&lt;p&gt;google-drive-ocamlfuse没有自启动的服务，因此需要手工添加，推荐添加命令到&lt;code&gt;/etc/rc.local&lt;/code&gt;文件，但是Debian 9默认不带&lt;code&gt;etc/rc.local&lt;/code&gt;文件，而&lt;code&gt;rc.local&lt;/code&gt;服务却还是自带的。&lt;br /&gt;
一次复制以下命令并执行&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;cat &amp;lt;/etc/rc.local
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will &quot;exit 0&quot; on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

exit 0
EOF
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后赋予权限&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;chmod +x /etc/rc.local
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;接着启动&lt;code&gt;rc-local&lt;/code&gt;服务&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;systemctl start rc-local
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后添加以下命令到&lt;code&gt;/etc/rc.local&lt;/code&gt;，放在&lt;code&gt;exit 0&lt;/code&gt;前面即可。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;su root -l -c &apos;google-drive-ocamlfuse -label me /home/gdrive&apos;
&lt;/code&gt;&lt;/pre&gt;
</content:encoded></item></channel></rss>