今天在 Google + 上发现了有人分享了 Sentris Network LLC 超便宜的 VPS,于是小小的折腾一下,就又剁手了下(如果 3.5 美元也算剁手的话)
3.5 刀三年付,折合每年约人民币 7.5 元
配置:OpenVZ/1vCPU/64M 内存 (16M SWAP) /1G 硬盘 / 250G / 月 / 1 IPv4
这配置基本上也就是搭建个 shadowsocks,剩下估计啥也干不了。
关于shadowsocks的使用方法,看这篇博文https://dmesg.app/shadowsocks-displays-set-up-and-use-a-simple-tutorial.html
这是我搭建好 ss 之后的速度,感觉还可以的,我挺满足的。
购买地址:支持 PayPal、信用卡、比特币支付,不能退款。
https://www.sentris.net/billing/cart.php?a=confproduct&i=0
如果不是超低价的,请点击这个 http://t.cn/RbHpSj7
注意:默认流量为 500G 每月,请手动改为 250G 每月才能享受最低价格,选择三年期可以用 5 折优惠券 ISCVJZ0365
超低价主机商说不定要超售多少,也说不定啥时候就跑路了,建议谨慎购买。不过也就是 3.5 美元,23 元谁心疼呢是不是,万一主机商良心了开了好几年呢。
测试 IP:63.216.14.61
附:
Top(本人心狠手辣卸载了 httpd,sendmail 等等,命令为 yum remove httpd)
服务器网速测试,还不错哎!
内存这么小,就老老实实的安装 32 位的操作系统吧,我选择的是 CentOS 6 x86
Libev 版本的 shadowsocks 比较省内存,如果只是自己用的话,那么用这个就可以了;否则可以考虑用 Go 或者 Python 版的。
三个版本的重启、停止等命令:
启动:
- /etc/init.d/shadowsocks start
停止:
- /etc/init.d/shadowsocks stop
重启:
- /etc/init.d/shadowsocks restart
查看状态:
- /etc/init.d/shadowsocks status
Shadowsocks-libev 一键安装脚本(CentOS 6/7 不支持多用户)
- wget --no-check-certificate https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocks-libev.sh
- chmod +x shadowsocks-libev.sh
- ./shadowsocks-libev.sh 2>&1 | tee shadowsocks-libev.log
配置文件路径:
/etc/shadowsocks-libev/config.json
Python 版本(支持多用户 CentOS 6/7,Debian,Ubuntu)
- wget --no-check-certificate https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocks.sh
- chmod +x shadowsocks.sh
- ./shadowsocks.sh 2>&1 | tee shadowsocks.log
多用户多端口配置文件 Sample
配置文件路径:
/etc/shadowsocks.json
- {
- "server":"0.0.0.0",
- "local_address":"127.0.0.1",
- "local_port":1080,
- "port_password":{
- "8989":"password0",
- "9001":"password1",
- "9002":"password2",
- "9003":"password3",
- "9004":"password4"
- },
- "timeout":300,
- "method":"aes-256-cfb",
- "fast_open": false
- }
Go 版(支持多用户,CentOS 6/7,Debian,Ubuntu)
- wget --no-check-certificate https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocks-go.sh
- chmod +x shadowsocks-go.sh
- ./shadowsocks-go.sh 2>&1 | tee shadowsocks-go.log
多用户多端口配置文件 sample
配置文件路径:
/etc/shadowsocks/config.json
- {
- "port_password":{
- "8989":"password0",
- "9001":"password1",
- "9002":"password2",
- "9003":"password3",
- "9004":"password4"
- },
- "method":"aes-256-cfb",
- "timeout":600
- }