根据中国移动测试要求|:
极好点: RSRP>-85dBm; SINR>25
好点: RSRP=-85~-95dBm;SINR:16-25
中点: RSRP=-95~-105dBm;SINR:11-15
差点: RSRP=-105~-115dBm;SINR:3-10
极差点: RSRP<-115dB;SINR<3
这些值当然越大越好

PS:LTE常用名词解释
SINR:信号与干扰加噪声比 (Signal to Interference plus Noise Ratio)是
指接收到的有用信号的强度与接收到的干扰信号(噪声和干扰)的强度的比值;
可以简单的理解为“信噪比”。

RSRP:(Reference Signal Receiving Power,参考信号接收功率) 是LTE网络中可
以代表无线信号强度的关键参数以及物理层测量需求之一,是在某个符号内承载参
考信号的所有RE(资源粒子)上接收到的信号功率的平均值。

RSRQ:(ReferenceSignalReceivingQuality)表示LTE参考信号接收质量,这种度量
主要是根据信号质量来对不同LTE候选小区进行排序。这种测量用作切换和小区重选
决定的输入。

RSRQ被定义为N*RSRP/(LTE载波RSSI)之比,其中N是LTE载波RSSI测量带宽的资

源块(RB)个数。RSRQ实现了一种有效的方式报告信号强度和干扰相结合的效果。

RSSI: Received Signal Strength Indication接收的信号强度指示,无线发送层的
可选部分,用来判定链接质量,以及是否增大广播发送强度。

amazon账号关联就两点:浏览器信息和ip信息。我目前的操作是分别用两个浏览器firefox和waterfox,一个浏览器通过ss走代理,一个浏览器通过v2走代理,代-理都是开机自启动。amazon在注册账号时会验证ip,只要是用机房ip注册账号,都是直接封号的。但是账号注册好后就不管ip了,只要注意每个账号用不同的浏览器和ip就行了,一台电脑上可以管理很多账号。

就是注册时比较麻烦,找朋友的家宽注册账号,不要用机房ip注册。注册好后就可以走机房ip了。

虽然有一键脚本,但是纯粹的是为了翻墙,好像没有PHP,也没有vhost的设置等等.
如果我在现有的网站VPS,增加V2RAY的功能.还是用如下的方式比较好.

1,设置LNMP
wget http://mirrors.linuxeye.com/oneinstack-full.tar.gz
tar zxvf oneinstack-full.tar.gz
cd oneinstack
./install.sh
设置一大堆.

2,一键安装了V2RAY

bash <(curl -L -s https://install.direct/go.sh)
上面的命令已经失效了。

需要改成下面的:

curl -O https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh
bash install-release.sh
systemctl enable v2ray
systemctl start v2ray

安装完之后呢.要改一下参数.下面的port,id,path自己更改
vim /usr/local/etc/v2ray/config.json

{
  "inbounds": [
    {
    "port":23333,
      "listen": "127.0.0.1",
      "tag": "vmess-in",
      "protocol": "vmess",
      "settings": {
        "clients": [
          {
          "id":"9999d32c-5719-4fd5-ba8d-569b0b150888",
          "alterId":64
          }
        ]
      },
      "streamSettings": {
        "network": "ws",
        "wsSettings": {
          "path":"/t00ls.kele/"
        }
      }
    }
  ],
  "outbounds": [
    {
      "protocol": "freedom",
      "settings": { },
      "tag": "direct"
    },
    {
      "protocol": "blackhole",
      "settings": { },
      "tag": "blocked"
    }
  ],
  "routing": {
    "domainStrategy": "AsIs",
    "rules": [
      {
        "type": "field",
        "inboundTag": [
          "vmess-in"
        ],
        "outboundTag": "direct"
      }
    ]
  }
}

改完之后
service v2ray start

3,设置虚拟主机
cd oneinstack
./vhost.sh
又是一大堆的设置,比如域名是s1.gg.com
添加完虚拟主机之后,
更改/usr/local/nginx/conf/vhost/s1.gg.com.conf
添加:

  location /t00ls.kele/
  {
    proxy_redirect off;
    proxy_pass http://127.0.0.1:23333;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
    proxy_set_header Host $http_host;
  }

4,设置防火墙
我不爱用iptables,先停掉
systemctl stop iptables.service
systemctl disable iptables.service
启用firewalld
yum -y install firewalld
systemctl unmask firewalld.service
systemctl start firewalld.service
systemctl enable firewalld.service
firewall-cmd --zone=public --add-port=22/tcp --permanent
firewall-cmd --zone=public --add-port=80/tcp --permanent
firewall-cmd --zone=public --add-port=443/tcp --permanent
firewall-cmd --reload
firewall-cmd --list-all

5,手动设置各个客户端就可以了.
地址(address):s1.gg.com
端口(port):443
ID:9999d32c-5719-4fd5-ba8d-569b0b150888
alterId:64
加密(security):auto
传输协议(network):ws
伪装类型(type):none
path:/t00ls.kele/
底层传输安全:tls

最后,网上有人做的一键脚本:

bash <(curl -L -s https://raw.githubusercontent.com/wulabing/V2Ray_ws-tls_bash_onekey/master/install.sh) | tee v2ray_ins.log