全球主机交流论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

CeraNetworks网络延迟测速工具IP归属甄别会员请立即修改密码
查看: 3905|回复: 17

[美国VPS] Buyvm|frantech无限流量、解锁流媒体、2$每月低价VPS测评

[复制链接]
发表于 2021-9-24 10:58:03 | 显示全部楼层 |阅读模式
一、Buyvm简介
buyvm是frantech的分销商,最近正式推出了全新解锁多流媒体的VPS,一次性帮你搞定很多很多平时对IP要求严格的平台。netflix奈非、Tiktok(抖音海外版)、disneyplus(迪士尼影视)、HBO、HULU、FOX、dazn、youtebe premium、amazon prime video、steam currency、hotstar、TVBanywhere、iqyi、britbox 、sling tv、pluto tv、encoretvb、paramount+、peacock TV、acorn tv,都可以解锁…

支持信用卡、PayPal、支付宝付款,支付宝付款用的是加元汇率,貌似便宜一点!

官方网站:https://buyvm.net
支持信用卡、PayPal、支付宝付款,支付宝付款用的是加元汇率,貌似便宜一点!

卢森堡机房:比较特殊,无视版权投诉!

二、BuyVM VPS 配置内网 IP
流媒体解锁IP不同于VPS的默认IP,用户必须在后台把outgoing IP改成 steam IP,并且steam IP不能设置为main IP,这样做是为了防止steam IP被和谐,一旦steam IP被和谐是不给退款而且不给更换的。默认流媒体IP是没有绑定网卡的,请大家手工绑定到eth0:1就可以了!

BuyVM VPS 都是 Las Vegas 的(网上貌似都在说拉斯维加斯的比其他的要好一点),系统均安装 Ubuntu 20.04,刚好有个服务要做负载均衡,可以用来尝试。

在 VPS 管理面板的“Networking”选项卡中,可以看到一个公网 IP 和一个 172 开头的内网IP,它们的 Status 都是开启状态。如果Internal ip是关闭状态(如下图),你可以在登录buyvm stallion找到Private Networking中开启私有网络。

貌似默认情况下并没有在网卡中绑定这个内外IP,也可能是俺没有找到?因为几台 VPS 之间用内网 IP 无法 ping 通。

1、SSH 连接 VPS 后,使用 ip a 或 ifconfig 命令查看网卡详情,提示找不到 ifconfig 命令就先安装:apt install net-tools。

看到默认只有一个网卡,绑定了公网 IP:
  1. root@localhost:~# ifconfig
  2. eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
  3.         inet 209.202.122.123  netmask 255.255.255.0  broadcast 209.202.60.255
  4.         inet6 fe80::216:c9ff:fe62:953f  prefixlen 64  scopeid 0x20
  5.         ether 00:16:c9:62:95:8f  txqueuelen 1000  (Ethernet)
  6.         RX packets 76302  bytes 126219152 (126.2 MB)
  7.         RX errors 0  dropped 0  overruns 0  frame 0
  8.         TX packets 43962  bytes 6028503 (6.0 MB)
  9.         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

  10. lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
  11.         inet 127.0.0.1  netmask 255.0.0.0
  12.         inet6 ::1  prefixlen 128  scopeid 0x10
  13.         loop  txqueuelen 1000  (Local Loopback)
  14.         RX packets 319  bytes 26951 (26.9 KB)
  15.         RX errors 0  dropped 0  overruns 0  frame 0
  16.         TX packets 319  bytes 26951 (26.9 KB)
  17.         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
复制代码

2、开始配置。网上有些教程让编辑 /etc/network/interfaces ,但在没有安装桌面环境的 Ubuntu 20.04 里找不到这个 /etc/network/interfaces 文件,包括 BuyVM VPS 中安装的 Ubuntu 20.04 里也没有,此时要用 Netplan 来配置(Netplan 是一个Linux 发行版上配置网络连接的命令行工具,使用 YAML 描述文件来配置网络接口)。
所以直接编辑相关配置文件:vi /etc/netplan/01-netcfg.yaml,其中 01-netcfg.yaml 可能每台机器不同。打开后如下,默认只配置了 eth0,在下方添加 eth1:dhcp4: yes 即可。因为 BuyVM 官方已为我们分配好了 IP 地址,这里 dhcp4: yes 即开启从 DHCP 服务器动态获取 IP 了;如需配置静态 IP 可看文末参考资料。

编辑前可先备份文件;添加时注意缩进,否则会失败。
  1. # This file describes the network interfaces available on your system
  2. # For more information, see netplan(5).
  3. network:
  4.   version: 2
  5.   renderer: networkd
  6.   ethernets:
  7.     eth0:
  8.       dhcp4: yes
  9. # 添加下面两行,注意缩进。
  10.     eth1:
  11.       dhcp4: yes
复制代码

编辑完成后,用 netplan apply 命令使配置生效,可能需要等待个几十秒。

成功后 ip a 或 ifconfig 命令再次查看网络连接,成功绑定局域网 IP 了,几台机器间也能成功 ping 通:
  1. root@localhost:~# ifconfig
  2. eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
  3.         inet 209.202.122.123  netmask 255.255.255.0  broadcast 209.202.60.255
  4.         inet6 fe80::216:c9ff:fe62:958f  prefixlen 64  scopeid 0x20
  5.         ether 00:16:c9:62:95:8f  txqueuelen 1000  (Ethernet)
  6.         RX packets 87250  bytes 141805357 (141.8 MB)
  7.         RX errors 0  dropped 0  overruns 0  frame 0
  8.         TX packets 48492  bytes 6463946 (6.4 MB)
  9.         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

  10. eth1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
  11.         inet 172.16.196.14  netmask 255.255.0.0  broadcast 172.16.255.255
  12.         inet6 fe80::216:deff:fe78:456  prefixlen 64  scopeid 0x20
  13.         ether 00:16:de:78:04:56  txqueuelen 1000  (Ethernet)
  14.         RX packets 1373  bytes 298746 (298.7 KB)
  15.         RX errors 0  dropped 0  overruns 0  frame 0
  16.         TX packets 14  bytes 1596 (1.5 KB)
  17.         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

  18. lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
  19.         inet 127.0.0.1  netmask 255.0.0.0
  20.         inet6 ::1  prefixlen 128  scopeid 0x10
  21.         loop  txqueuelen 1000  (Local Loopback)
  22.         RX packets 325  bytes 27567 (27.5 KB)
  23.         RX errors 0  dropped 0  overruns 0  frame 0
  24.         TX packets 325  bytes 27567 (27.5 KB)
  25.         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
复制代码

三、解锁流媒体特别版VPS
解锁流媒体,1Gbps带宽,不限制流量,AMD Ryzen 9 3900X+DDR4+NVMe,下面的链接是China Special 版
<table style="border-collapse: collapse; width: 100%;">
<tbody>
<tr>
<td style="width: 16.6667%;"><span style="color: #ff0000;"><strong>内存</strong></span></td>
<td style="width: 16.6667%;"><span style="color: #ff0000;"><strong>CPU</strong></span></td>
<td style="width: 16.6667%;"><span style="color: #ff0000;"><strong>NVMe</strong></span></td>
<td style="width: 16.6667%;"><span style="color: #ff0000;"><strong>价格</strong></span></td>
<td style="width: 16.6667%;"><span style="color: #ff0000;"><strong>购买</strong></span></td>
</tr>
<tr>
<td style="width: 16.6667%;">1G</td>
<td style="width: 16.6667%;">1核</td>
<td style="width: 16.6667%;">20G</td>
<td style="width: 16.6667%;">$5/月</td>
<td style="width: 16.6667%;"><strong><a href="https://my.frantech.ca/aff.php?aff=4929&amp;pid=1524" target="_blank" rel="external nofollow noopener">链接</a></strong></td>
</tr>
<tr>
<td style="width: 16.6667%;">2G</td>
<td style="width: 16.6667%;">1核</td>
<td style="width: 16.6667%;">40G</td>
<td style="width: 16.6667%;">$9/月</td>
<td style="width: 16.6667%;"><strong><a href="https://my.frantech.ca/aff.php?aff=4929&amp;pid=1525" target="_blank" rel="external nofollow noopener">链接</a></strong></td>
</tr>
<tr>
<td style="width: 16.6667%;">4G</td>
<td style="width: 16.6667%;">1核</td>
<td style="width: 16.6667%;">80G</td>
<td style="width: 16.6667%;">$18/月</td>
<td style="width: 16.6667%;"><strong><a href="https://my.frantech.ca/aff.php?aff=4929&amp;pid=1526" target="_blank" rel="external nofollow noopener">链接</a></strong></td>
</tr>
</tbody>
</table>
下面是常规VPS,不能解锁流媒体!

VPS方案
拉斯维加斯:https://my.frantech.ca/cart.php?gid=37

纽约:https://my.frantech.ca/cart.php?gid=38

迈阿密:https://my.frantech.ca/cart.php?gid=48

卢森堡:https://my.frantech.ca/cart.php?gid=39

块存储方案
拉斯维加斯:https://my.frantech.ca/cart.php?gid=42

纽约:https://my.frantech.ca/cart.php?gid=45

迈阿密:https://my.frantech.ca/cart.php?gid=49

卢森堡:https://my.frantech.ca/cart.php?gid=46

站长提供的最低配VPS的演示:

拉斯维加斯:http://209.141.43.220/ ,  http://209.141.43.220/1gb.bin

卢森堡:http://104.244.77.176/ ,  http://104.244.77.176/1gb.bin

纽约:http://199.195.254.131/http://199.195.254.131/1gb.bin

迈阿密:http://45.61.184.128/http://45.61.184.128/1gb.bin

四、拉斯维加斯vps测评
CPU、主频、大致I/O比较清楚了:
发表于 2021-9-24 12:54:17 | 显示全部楼层
我说你注册个小号来发aff,你发就发,还隐藏起来,有意思吗?又没说不让发

外星人 该用户已被删除
发表于 2021-9-24 10:59:36 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
 楼主| 发表于 2021-9-24 10:59:06 | 显示全部楼层
原文:https://www.maskviral.com/buyvm-frantech-vps-reviews.html
这也是配置buyvm内网ip的教程
发表于 2021-9-24 11:00:48 | 显示全部楼层
签名站有补货通知
 楼主| 发表于 2021-9-24 11:01:08 | 显示全部楼层

新人贴
发表于 2021-9-24 11:42:35 | 显示全部楼层
这款最搞笑的是不解锁油管会员,而且不保证解锁
发表于 2021-9-24 12:38:04 | 显示全部楼层
解锁多流媒体的VPS最低5元每月
发表于 2021-9-24 12:39:22 | 显示全部楼层
warp 众机平等
发表于 2021-9-24 12:51:56 | 显示全部楼层
为什么几乎所有评测都把stream ip写成了steam ip
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|小黑屋|全球主机交流论坛

GMT+8, 2024-5-9 03:30 , Processed in 0.066040 second(s), 11 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表