今天在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 }