使用Vultr.com 建立

vultr地址:https://www.vultr.com/

vultr可使用paypal支付,地址:https://www.paypal.com

建立机器

在vultr官网,Server选项依次选择各项配置,创建即可完成。需要注意的是,使用vultr之前需要先绑定支付方式。

选择地区时,建议使用东京,新加坡,或者洛杉矶。流量按照自己的需求选择。目前的使用情况是,东京优于新加坡。

操作系统也按照自己的需求选择,如果选择CentOS 6的话,由于CentOS 6自带的Python版本是2.6可能会对安装的软件有所影响。需要重新安装Python 2.7.

创建服务

建议首先升级:yum update -y 这个过程大概需要 5 min.

# 获取执行脚本:
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

# 设定密码和端口
Please input password for shadowsocks-python:
(Default password: 默认密码): xxx

---------------------------
password = xxx
---------------------------

Please input port for shadowsocks-python [1-65535]:
(Default port: 8989):8388

启动软件

[root@vultr init.d]# pwd
/etc/rc.d/init.d
[root@vultr init.d]# ls
functions  netconsole  network  README  shadowsocks
[root@vultr init.d]# ./shadowsocks start
Shadowsocks (pid 9381) is already running...
[root@vultr init.d]# ps -ef | grep 9381
root      9381     1  0 15:03 ?        00:00:00 /bin/python /usr/bin/ssserver -c /etc/shadowsocks.json -d start
root     17730 17699  0 15:16 pts/1    00:00:00 grep --color=auto 9381
[root@vultr init.d]#
[root@vultr init.d]# vi /etc/shadowsocks.json
[root@vultr init.d]# ./shadowsocks restart
INFO: loading config from /etc/shadowsocks.json
stopped
Stopping Shadowsocks success
INFO: loading config from /etc/shadowsocks.json
2017-06-27 15:19:33 INFO     loading libcrypto from libcrypto.so.10
started
Starting Shadowsocks success

防火墙设置

[root@vultr ~]# firewall-cmd --version
0.4.3.2
[root@vultr ~]# firewall-cmd --state
running

可以看到防火墙是处于开启的状态的。

这里使用:python -m SimpleHTTPServer 8080 设置任意端口可以看到,其实该防火墙把所有端口都屏蔽了。

这里使用:systemctl stop firewalld 停止该防火墙服务

防火墙常用设置:

systemctl start firewalld # 开启
systemctl restart firewalld # 重启
systemctl status firewalld # 或者 
firewall-cmd --state # 查看状态
systemctl disable firewalld # 禁用
systemctl stop firewalld # 关闭

配置客户端

依次下载客户端进行配置就完成了。

windows客户端下载:https://github.com/shadowsocks/shadowsocks-windows/releases

Mac客户端下载:https://github.com/shadowsocks/shadowsocks-iOS/releases

安卓的和iOS的也在该项目下,

安卓的需要使用Google paly下载,可以使用插件把包抓下来,iOS的只有在美国的商店才有。必须有美国的App Store账户。

Windows phone 用户前往该地址更换新机器:https://www.apple.com/cn/

安装BBR工具加速器

该工具可以有较大感知的提高代理速度

wget –no-check-certificate https://github.com/teddysun/across/raw/master/bbr.sh
chmod +x bbr.sh
./bbr.sh

相关About

两个shell脚本下载:

http://www.imekaku.com/wp-content/uploads/2017/06/v-shell.zip

搭建服务教程:

VULTR搭建shadowsock(ss)服务图文教程

使用 Shadowsocks 搭建服务

VULTR的VPS在CENTOS 7.3的操作系统中出现网站无法访问 80端口被FIREWALL禁止

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

开始在上面输入您的搜索词,然后按回车进行搜索。按ESC取消。

返回顶部