神代綺凛

[Arukas] 樱花免费Docker | 日本原生IP | 部署ss
Arukas 是日本的一家 Docker 服务提供商,其实在挺早之前就已经有了,最近听人提到才知道,于是去薅了羊毛...
扫描右侧二维码阅读全文
23
2018/02

[Arukas] 樱花免费Docker | 日本原生IP | 部署ss

Arukas 是日本的一家 Docker 服务提供商,其实在挺早之前就已经有了,最近听人提到才知道,于是去薅了羊毛(我™羊毛专业户,既然见到了就没有不薅的道理(大雾

Head Pic: 「きつね」/「美咲ゆう」[pixiv]

Arukas

目前应该是被墙 TCP,请自行配合 KCPTUN 等 UDP 科技使用

你可以薅到下图所示配置的免费 Docker

最后两句的意思是“储存空间不限”和“流量不限”

不过实际上 Docker 本身默认就有储存空间100GB的限制
而且如果你把官网语言切换到 English,就变成限制100GB流量了……

!> 目前说是樱花 Docker 处于公测期间,流量无限,等正式运营之后就限制100G流量了

另外,搭建酸酸的话,速度什么的就不要太指望了,毕竟是免费的东西,上个网玩个手游还行

实测天威联通这边看油管稳定速度在350~550KiB/s,突发速度能达到1MiB/s

注册

打开 Arukas 官网,右上角注册流程走一遍,然后你会收到这样一封邮件,接着你只需要等就可以了

这家注册是需要人工审核的,所以不是即注册即开通的,不过一般都会给过,这时你会收到这样一封邮件

点击链接完成激活,就可以进入后台了

然后先别急,你还需要认证信用卡,没有信用卡是不能薅羊毛的(虚拟信用卡不知道能不能过,实体卡是没问题的)
初次登录应该会直接提示你绑定信用卡,如果错过了也可以点左侧小人图标然后点“Billing”进入设置

这样所有准备工作就完成了,下面开始愉快的薅羊毛

创建 Docker

直接点击左侧大大的“Create”按钮,然后填写对应信息:

  • APP Name
    应用名称,随意
  • Image
    根据你偏好的系统选一个填写:
    (alpine是极轻量版的Linux系统,如果需要搭建ss请勿选择)
    • ilemonrain/alpine-sshd
    • ilemonrain/centos-sshd
    • ilemonrain/ubuntu-sshd
    • ilemonrain/debian-sshd
  • Service Plan
    选第一个免费的那个,没什么好讲的
  • Instances
    免费 Docker 只能建立一个,不用动
  • Endpoint
    不知道是啥(。)
    • 虽然说上面写着你可以留空,系统会自动生成,但是我创建的时候如果不填会报错,所以还是自己填上吧
    • 不能使用别人已使用的名字,你输入之后下面会提示这个名字是否可以使用
  • Port(很关键)
    在这里设置所有你将要使用到的端口
    由于 Docker 是一个容器(你可以理解成一台宿主机中的一个虚拟机),同一台宿主机中的所有 Docker 都共用一个公网 IP,因此你所使用的端口都是通过宿主机 NAT 出来的
    注意:
    • 必须添加22的 TCP 端口(不然你咋ssh叻)
    • 由于 NAT 映射出来的时候,即使是你添加了同一个端口的 TCP 和 UDP,它依然会给你两个不一样的端口分别映射,就像这样:

      因此,如果你是用原版酸酸,你只能使用 TCP 代理,而不能代理 UDP,因为 TCP 与 UDP 端口不同
      如果你想代理 UDP,那么就用酸酸乳,因为酸酸乳的 PC 客户端可以自定义 UDP 端口,这样就可以让 TCP 与 UDP 使用两个不同的端口了
    • 最多设置20个端口,而且请一次性设置完,后期不能再修改(如果修改的话需要重启 Docker 才能生效,这就意味着你原来 Docker 上面的数据都会美丽)
  • ENV
    不勾选,不用动
  • Command
    Docker 启动后运行的命令,如果你没有需求就留空不用管

然后点下面的“Create Application”,就建立完成了

此时你需要立即进入 SSH 并更改默认的 SSH 密码

首先根据 NAT 映射后的端口进入 Docker 的 SSH,用户名为root,教程所提供的那四个 Docker 的 SSH 密码为系统名(例如 CentOS 系统的密码就是centos,Ubuntu 系统的密码就是ubuntu,以此类推)

进入后,执行passwd命令,根据提示输入你的新密码

说明

以上 Docker 镜像均由 极光柠檬 编写

以下为上述四个 Docker 镜像的地址:

搭建酸酸

首先先安装wget程序,因为 Docker 镜像十分精简,除了sshd之外几乎什么都没装……

# CentOS
yum install -y wget

# Debian / Ubuntu
apt-get install -y wget

安装会超级慢,因为 Docker 是 0.1vCPU,频率限制的很死……

耐心等吧

下面的脚本都使用的是“秋水逸冰”的一键脚本

原版酸酸

wget --no-check-certificate -O shadowsocks.sh https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocks.sh && chmod +x shadowsocks.sh
./shadowsocks.sh 2>&1 | tee shadowsocks.log

然后根据脚本提示选择酸酸配置

个人(强烈)建议:
加密:aes-256-gcm或者chacha20-ietf-poly1305,总之使用 AEAD 加密

酸酸乳

wget --no-check-certificate https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocksR.sh && chmod +x shadowsocksR.sh
./shadowsocksR.sh 2>&1 | tee shadowsocksR.log

然后根据脚本提示选择酸酸配置

个人(强烈)建议:
加密:none
协议:auth_chain_a
混淆:根据你自己的需求,选择plain或者http_simple
个人极其不建议使用tls1.2_ticket_auth系列混淆

搬瓦工VPS优惠套餐,建站稳如狗,支持支付宝,循环出账94折优惠码BWH3HYATVBJW
年付$47CN2线路,1核/1G内存/20G硬盘/1T@1Gbps【点击购买
季付$47CN2 GIA线路,1核/1G内存/20G硬盘/1T@2.5Gbps【点击购买
Last modification:April 24th, 2019 at 10:40 pm
If you think my article is useful to you, please feel free to appreciate

Comment here is closed

42 comments

  1. Frank  Windows 8.1 x64 Edition(Windows 8.1 x64 Edition) / Google Chrome 36.0.1941.0(Google Chrome 36.0.1941.0)
    现在需要验证手机号码了?
    1. 神代綺凜  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 73.0.3683.103(Google Chrome 73.0.3683.103)
      @Frank 不清楚,我已经没有在使用了
  2. oversimplify  GNU/Linux x64(GNU/Linux x64) / Google Chrome 72.0.3626.105(Google Chrome 72.0.3626.105)
    现在IP还有能用吗? 博主用的是什么卡过的呀?
    1. 神代綺凜  Mac OS X(Mac OS X) / Safari(Safari)
      @oversimplify 以前我用中行双币信用卡过的,后来很久没管了,再去看的时候这个认证已经被ban了
      所以现在什么情况我也不清楚了
  3. 露姆莉  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 72.0.3626.121(Google Chrome 72.0.3626.121)
    那个 装酸酸之后 obfs 有必要开启嘛
    1. 神代綺凜  Mac OS X(Mac OS X) / Safari(Safari)
      @露姆莉 目前不建议使用 tls 混淆,如果你有特殊需要比如伪装免流之类的可以使用 http_simple,如无这种特殊需求就不要开,没有意义
  4. pagy  Android 8.1.0(Android 8.1.0) / QQbrowser(QQbrowser)
    我觉得很棒,但是我搞不定,没有卡,好麻烦 大雾(/ω\)
    1. 神代綺凜  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 71.0.3578.98(Google Chrome 71.0.3578.98)
      @pagy 没有卡就没有办法了
  5. 老刘  Windows 7 x64 Edition(Windows 7 x64 Edition) / Firefox 64.0(Firefox 64.0)
    现在可以用哦,撸了两个
    1. Xavi  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 71.0.3578.98(Google Chrome 71.0.3578.98)
      @老刘 请问用的是什么镜像或者代码啊……
      SSH连上,配置好了,本地的SS却连不上服务器
    2. 神代綺凜  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 71.0.3578.98(Google Chrome 71.0.3578.98)
      @老刘 |´・ω・)ノ 那挺好
  6. moe  Android 8.0.0(Android 8.0.0) / Google Chrome 71.0.3578.99(Google Chrome 71.0.3578.99)
    以前内测的时候用过,请问现在还能用吗?
    1. 神代綺凜  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 71.0.3578.98(Google Chrome 71.0.3578.98)
      @moe 不清楚,自从内测后来被墙之后我也没再管过了
  7. sakuya  GNU/Linux x64(GNU/Linux x64) / Google Chrome 68.0.3440.106(Google Chrome 68.0.3440.106)
    用哪个镜像都起不来,是打开方式不对么……
  8. aribeth  Windows 7(Windows 7) / Firefox 61.0(Firefox 61.0)
    悲。昨晚搭好了一切正常 今天就炸了。不断重启换各种ip都没用,能ping通,ssh 连不上,100%是ip段被墙
    1. wnxd  Mac OS X 10.13.5(Mac OS X 10.13.5) / Google Chrome 69.0.3493.3(Google Chrome 69.0.3493.3)
      @aribeth 可以用kcp连 ios上没什么kcptun客户端好用 直接换vmess了 kitsunebi 可以用 vmess_kcp
    2. 神代綺凜  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 67.0.3396.99(Google Chrome 67.0.3396.99)
      @aribeth 很久以前就墙过一次了……看楼下是又放出来了,现在又墙了么
      1. wnxd  Mac OS X 10.13.5(Mac OS X 10.13.5) / Google Chrome 69.0.3493.3(Google Chrome 69.0.3493.3)
        @神代綺凜 23333 现在只能kcp连了 直接用这个 wnxd/docker-v2ray
        配置一下环境变量就OK了
        环境变量名参考 https://hub.docker.com/r/wnxd/docker-v2ray/
        1. MoyuFischer  Mac OS X 10.13.6(Mac OS X 10.13.6) / Safari 11.1.2(Safari 11.1.2)
          @wnxd MacOS上用V2RayX做客户端吗
        2. 神代綺凜  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 67.0.3396.99(Google Chrome 67.0.3396.99)
  9. wnxd  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 67.0.3396.99(Google Chrome 67.0.3396.99)
    感谢推荐, arukas速度挺快的
    试用后入坑了
    我自己建了个docker, 可以一键布置ssh+shadowsocks+kcptun
    wnxd/docker-shadowsocks-kcp
    1. 神代綺凜  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 67.0.3396.99(Google Chrome 67.0.3396.99)
      @wnxd 现在没墙了么2333
      1. wnxd  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 67.0.3396.99(Google Chrome 67.0.3396.99)
        @神代綺凜 app.arukas.io 被墙了. 服务器IP没被墙 233
        1. 神代綺凜  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 67.0.3396.99(Google Chrome 67.0.3396.99)
          @wnxd
  10. MoyuFischer  Mac OS X 10.13.5(Mac OS X 10.13.5) / Safari 11.1.1(Safari 11.1.1)
    直接用了dockerhost的镜像,ip ping得通,但是似乎不能用╮(╯▽╰)╭
    1. 神代綺凜  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 67.0.3396.87(Google Chrome 67.0.3396.87)
      @MoyuFischer 已经不管了,墙来墙去的我已经下车了
  11. MuYu  Mac OS X 10.12.4(Mac OS X 10.12.4) / Google Chrome 66.0.3359.181(Google Chrome 66.0.3359.181)
    docker没要这样子了

    Image用 woodenfish42/shadowsocks-go-docker:multi_stage

    Command填 -p 端口 -k 密码 -m 加密方式

    就行了

    1. cx  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 68.0.3440.106(Google Chrome 68.0.3440.106)
      @MuYu 感谢镜像,今天ip放出来了,赶紧装一个ss。之前脚本安装全失败了,就这个docker一安就成(๑•̀ㅁ•́ฅ)
    2. 神代綺凜  Mac OS X(Mac OS X) / Safari(Safari)
      @MuYu 当时是因为有很多ss镜像都被樱花屏蔽
      1. MuYu  Mac OS X 10.12.4(Mac OS X 10.12.4) / Google Chrome 66.0.3359.181(Google Chrome 66.0.3359.181)
        @神代綺凜 自己写个Dockerfile就行,一行FROM就结束了,然后docker hub开个自动构建,美滋滋
  12. 和泉纱雾  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 64.0.3282.186(Google Chrome 64.0.3282.186)
    运行不了啊
    アプリは停止状態です
    1. 神代綺凜  Mac OS X(Mac OS X) / Safari(Safari)
      @和泉纱雾 不清楚
      不过已经凉了,不管了
  13. WeiYuan  Mac OS X(Mac OS X) / Safari 9.0(Safari 9.0)
    方教授。你家长城又调皮了。想了想我存在CC的五美金...劳资机子想等到考完高考再开机子.现在居然被一群人玩成这样....欲哭无泪
    1. 神代綺凜  Mac OS X(Mac OS X) / Safari(Safari)
  14. 123  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 64.0.3282.186(Google Chrome 64.0.3282.186)
    可怕,评论头像怎么自动生成了
    1. 神代綺凜  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 64.0.3282.140(Google Chrome 64.0.3282.140)
      @123 因为是QQ邮箱
  15. 123  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 64.0.3282.186(Google Chrome 64.0.3282.186)
    也大概是前天吧我也申请了,不过没给我发邮件
    1. 神代綺凜  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 64.0.3282.140(Google Chrome 64.0.3282.140)
      @123 怕是申请的人越来越多了,这种迟早被薅爆
  16. 思绪的空中生活  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 63.0.3239.132(Google Chrome 63.0.3239.132)
    卡在了绑卡
    1. 神代綺凜  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 64.0.3282.140(Google Chrome 64.0.3282.140)
      @思绪的空中生活 银联信用卡不知道行不行
      我国内办的visa可以过
      1. 思绪的空中生活  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 63.0.3239.132(Google Chrome 63.0.3239.132)
        @神代綺凜 嘿嘿 我没有信用卡
        1. 神代綺凜  Windows 10 x64 Edition(Windows 10 x64 Edition) / Google Chrome 64.0.3282.140(Google Chrome 64.0.3282.140)
          @思绪的空中生活 没有那就没办法了……