第一朵阿里云

最近希望有一个私人的流量中转站,即使在办公室也能访问家里的计算和存储,低延迟低流量低配置的乞丐VPS就可以。

抠门的我挑了半天,还是选择了大厂,阿里云成都分云,这次不用红帽系了,因为最近一直在Debian、Ubuntu和Armbian。

初始化

首次登录好习惯改密码(为了方便,应该把zshgitoh-my-zshvimtmuxaria2c装上。):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# VPS上改密码
passwd
# 修改主机名,阿里云默认的太丑了
sudo hostnamectl set-hostname aliyun.mydomain.tech
# 电脑上上传秘钥进行ssh免密登录,要指定秘钥则`ssh-copy-id -i ~/.ssh/id_rsa.pub root@4*.*.*.*`
ssh-copy-id root@4*.*.*.*

sudo apt update && sudo apt dist-upgrade -y
sudo apt install build-essential curl file git -y
sudo apt install zsh git vim tmux aria2
chsh -s $(which zsh)
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

# 安装oh-my-tmux,github不通时,可以用gitclone先顶一下
cd ~
git clone https://gitclone.com/github.com/gpakosz/.tmux.git
ln -s -f .tmux/.tmux.conf
cp .tmux/.tmux.conf.local .

将ssh设置为无法用密码登录(只接受key pair认证),顺便调整ssh超时时间:

1
2
3
4
5
6
7
8
9
# /etc/ssh/sshd_config 中:
# 禁止密码认证
PasswordAuthentication no
# 调整ssh会话一次存活60秒,自动重连60次
ClientAliveInterval 60
ClientAliveCountMax 60

# 重启sshd服务:
sudo systemctl restart ssh.service

开防火墙策略:

1
2
3
4
5
6
sudo ufw default deny incoming
sudo ufw default allow outgoing
sudo ufw allow 22/tcp comment ssh
sudo ufw allow 6800/tcp comment aria2c
sudo ufw allow 2017/tcp comment v2raya
sudo ufw enable

注意:若端口已经打开,使用nc检测端口发现公网IP(即4x.x.x.x)的端口不通,而内网IP(即172.x.x.x)端口正常。则需要在云服务器ESC->网络与安全->安全组里添加端口。

开启虚拟内存:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 检查虚拟内存十分开启:
free -m
# 分配虚拟内存文件的空间,大小为 bs*count
sudo dd if=/dev/zero of=/swapfile bs=1024 count=1048576
# 设置文件权限
chmod 600 /swapfile
# 制作虚拟内存分区
mkswap /swapfile
# 激活虚拟内存
swapon /swapfile
# 此时检查就会有虚拟内存了
free -m
# 要一直使用的话,更改开机挂载虚拟内存
vim /etc/fstab
/swapfile swap swap defaults 0 0

# 检测swappiness值,即系统使用交换空间的优先级,默认为60即可,刚装好的阿里云为0
cat /proc/sys/vm/swappiness
# 临时修改
sysctl vm.swappiness=60
# 永久修改
vim /etc/sysctl.conf
vm.swappiness=60

安装科学冲浪

安装核心,如果install-release.sh不能下载,可以直接浏览器打开复制粘贴,然后chmod +x install-release.sh,运行即可:

1
2
3
4
5
6
7
8
# 安装或更新核心
sudo bash -c "$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)" @ install
# 仅更新核心
sudo bash -c "$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)" @ install-geodata
# 卸载核心
sudo bash -c "$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)" @ remove

sudo systemctl status xray.service

安装UI,直接在release中挑了一个arm64的包。如果实在下不下来,就scp ./installer_debian_amd64_1.5.9.1698.1.deb root@47.109.18.231:./传一个上去吧,或者传到哪个没被ban的公网服务器上下载也行。

1
2
3
4
5
6
wget https://github.com/v2rayA/v2rayA/releases/download/v1.5.9.1698.1/installer_debian_amd64_1.5.9.1698.1.deb
sudo apt install ./installer_debian_arm64_1.5.9.1698.1.deb
# 可以添加为系统服务
sudo systemctl enable v2raya.service
sudo systemctl start v2raya.service
sudo systemctl status v2raya.service

配置aira2c

配置aria2c远程下载服务,本地使用AriaNg搭配风味更佳:

1
2
3
4
mkdir -p ~/.config/aria2
touch ~/.config/aria2/aria2.conf #aria2的配置文件
touch ~/.config/aria2/aria2.session #aria2保存会话的文件
vim ~/.config/aria2/aria2.conf #修改配置文件

配置如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
## '#'开头为注释内容, 选项都有相应的注释说明, 根据需要修改 ##
## 被注释的选项填写的是默认值, 建议在需要修改时再取消注释 ##

## 文件保存相关 ##

# 文件的保存路径(可使用绝对路径或相对路径), 默认: 当前启动位置
dir=/webroot/downloads
# 启用磁盘缓存, 0为禁用缓存, 需1.16以上版本, 默认:16M
#disk-cache=32M
# 文件预分配方式, 能有效降低磁盘碎片, 默认:prealloc
# 预分配所需时间: none < falloc ? trunc < prealloc
# falloc和trunc则需要文件系统和内核支持
# NTFS建议使用falloc, EXT3/4建议trunc, MAC 下需要注释此项
#file-allocation=none
# 断点续传
continue=true

## 下载连接相关 ##

# 最大同时下载任务数, 运行时可修改, 默认:5
#max-concurrent-downloads=5
# 同一服务器连接数, 添加时可指定, 默认:1
max-connection-per-server=16
# 最小文件分片大小, 添加时可指定, 取值范围1M -1024M, 默认:20M
# 假定size=10M, 文件为20MiB 则使用两个来源下载; 文件为15MiB 则使用一个来源下载
min-split-size=4M
# 单个任务最大线程数, 添加时可指定, 默认:5
split=16
# 整体下载速度限制, 运行时可修改, 默认:0
max-overall-download-limit=3000000
# 单个任务下载速度限制, 默认:0
#max-download-limit=0
# 整体上传速度限制, 运行时可修改, 默认:0
max-overall-upload-limit=50000
# 单个任务上传速度限制, 默认:0
#max-upload-limit=0
# 禁用IPv6, 默认:false
disable-ipv6=true
# 连接超时时间, 默认:60
#timeout=60
# 最大重试次数, 设置为0表示不限制重试次数, 默认:5
#max-tries=5
# 设置重试等待的秒数, 默认:0
#retry-wait=0

## 进度保存相关 ##

# 从会话文件中读取下载任务
input-file=/root/.config/aria2/aria2.session
# 在Aria2退出时保存`错误/未完成`的下载任务到会话文件
save-session=/root/.config/aria2/aria2.session
# 定时保存会话, 0为退出时才保存, 需1.16.1以上版本, 默认:0
save-session-interval=60

## RPC相关设置 ##

# 启用RPC, 默认:false
enable-rpc=true
# 允许所有来源, 默认:false
rpc-allow-origin-all=true
# 允许非外部访问, 默认:false
rpc-listen-all=true
# 事件轮询方式, 取值:[epoll, kqueue, port, poll, select], 不同系统默认值不同
#event-poll=select
# RPC监听端口, 端口被占用时可以修改, 默认:6800
rpc-listen-port=6800
# 设置的RPC授权令牌, v1.18.4新增功能, 取代 --rpc-user 和 --rpc-passwd 选项
rpc-secret=<your-rpc-secret>
# 设置的RPC访问用户名, 此选项新版已废弃, 建议改用 --rpc-secret 选项
#rpc-user=<USER>
# 设置的RPC访问密码, 此选项新版已废弃, 建议改用 --rpc-secret 选项
#rpc-passwd=<PASSWD>
# 是否启用 RPC 服务的 SSL/TLS 加密,
# 启用加密后 RPC 服务需要使用 https 或者 wss 协议连接
#rpc-secure=true
# 在 RPC 服务中启用 SSL/TLS 加密时的证书文件,
# 使用 PEM 格式时,您必须通过 --rpc-private-key 指定私钥
#rpc-certificate=/path/to/certificate.pem
# 在 RPC 服务中启用 SSL/TLS 加密时的私钥文件
#rpc-private-key=/path/to/certificate.key

## BT/PT下载相关 ##

# 当下载的是一个种子(以.torrent结尾)时, 自动开始BT任务, 默认:true
follow-torrent=true
# BT监听端口, 当端口被屏蔽时使用, 默认:6881-6999
listen-port=51414
# 单个种子最大连接数, 默认:55
#bt-max-peers=55
# 打开DHT功能, PT需要禁用, 默认:true
enable-dht=true
# 打开IPv6 DHT功能, PT需要禁用
#enable-dht6=false
# DHT网络监听端口, 默认:6881-6999
dht-listen-port=6881-6999
# 本地节点查找, PT需要禁用, 默认:false
bt-enable-lpd=true
# 种子交换, PT需要禁用, 默认:true
enable-peer-exchange=true
# 每个种子限速, 对少种的PT很有用, 默认:50K
bt-request-peer-speed-limit=3M
# 客户端伪装, PT需要
peer-id-prefix=-TR2770-
user-agent=Transmission/2.77
peer-agent=Transmission/2.77
# 当种子的分享率达到这个数时, 自动停止做种, 0为一直做种, 默认:1.0
seed-ratio=1.0
seed-time=0
# 强制保存会话, 即使任务已经完成, 默认:false
# 较新的版本开启后会在任务完成后依然保留.aria2文件
#force-save=false
# BT校验相关, 默认:true
#bt-hash-check-seed=true
# 继续之前的BT任务时, 无需再次校验, 默认:false
bt-seed-unverified=true
# 保存磁力链接元数据为种子文件(.torrent文件), 默认:false
bt-save-metadata=false
# dht-file
dht-file-path=/root/.config/aria2/dht.dat
# 删除未选择的文件
bt-remove-unselected-file=true
# 无速度时自动停止时间
#bt-stop-timeout=1800

启动aria2c:

1
aria2c --conf-path=$HOME/.config/aria2/aria2.conf -D

安装nps内网穿透服务端

小可怜服务器没多少空间舍不得安装golang,直接从release列表中下载相应的二进制运行:

1
2
3
4
5
wget https://github.com/ehang-io/nps/releases/download/v0.26.10/linux_amd64_server.tar.gz
tar -zxvf linux_amd64_server.tar.gz -C linux_amd64_server
sudo ./nps install
# 安装完成后支持的命令:`nps start|stop|restart|uninstall|update or nps-update update`
sudo nps start

修改配置文件/etc/nps/conf/nps.conf的用户名和密码,以及默认的httphttps监听,这台VPS我用打算用来中转流量,所以80443打算暂时留给nginx

1
2
3
4
5
6
7
# ...
web_username=xxx
web_password=xxx
# ...
#http_proxy_port=80
#https_proxy_port=443
# ...

查看日志cat /var/log/nps.log

1
2
3
4
2022/12/03 19:28:15.920 [I] [nps.go:202]  the version of server is 0.26.10 ,allow client core version to be 0.26.0
2022/12/03 19:28:16.496 [I] [server.go:200] tunnel task start mode:httpHostServer port 0
2022/12/03 19:28:16.496 [I] [connection.go:71] web management start, access port is 8080
2022/12/03 19:28:16.508 [I] [connection.go:36] server start, the bridge type is tcp, the bridge port is 8024

在内网Rock-5B上下载客户端:

1
wget https://github.com/ehang-io/nps/releases/download/v0.26.10/linux_arm64_client.tar.gz

或是在内网树莓派3B+上下载客户端:

1
wget https://github.com/ehang-io/nps/releases/download/v0.26.10/linux_arm_v7_client.tar.gz

按照说明添加一个客户端,并在树莓派上尝试连接nps服务器:

1
./npc -server=4x.x.x.x:8024 -vkey=xxxxxxx -type=tcp

此时刷新nps管理页面,客户端已显示线了。在管理页面的TCP隧道中加一条端口映射,就可以从电脑上连接ssh -p 10022 pi@4x.x.x.x了。

自动续期SSL证书

教程,我希望用4*服务器上的nps,将443映射给内网120服务器的443端口,并使得证书能够正常验证。

此时我使用apt update后,apt报错,很明显mirrors.cloud.aliyuncs.com这个地址指向我的Justhost服务器了,ping也是直接被解析成了ping mirrors.cloud.aliyuncs.com.mydomain.tech,此时dignslookup都不行,但resolvectl query mirrors.cloud.aliyuncs.com仍然正常。我查了ping命令,有文章ping的解析靠/etc/nsswitchhost项目的配置,于是我改/etc/nsswitch/etc/hosts都不行。然后搜索这个域名发现有的文章说,需要修改/etc/hosts

1
2
3
4
5
6
7
8
9
10
11
12
13
# 这一组不行,v2rayA DNS hijack,这是v2rayA开启时注入的
#nameserver 127.2.0.17
#nameserver 119.29.29.29
# 这一组不行,这是v2rayA关闭后改回来的
#nameserver 223.6.6.6
#nameserver 119.29.29.29
# 这一组公共DNS也不行
#nameserver 8.8.8.8
#nameserver 114.114.114.114
# 这一组使得`mirrors.cloud.aliyuncs.com`恢复
# 即这个域名需要阿里云vpc下dns才能解析
nameserver 100.100.2.136
nameserver 100.100.2.138

申请SSL证书,

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 安装acme.sh,末尾的`-s email=xxx@xxx.com是用来接受let's encrypt等更新邮件的地址
curl https://get.acme.sh | sh -s email=xxx@xxx.com
# 如果使用standalone模式,acme.sh会需要socat在80或443上建立服务
sudo apt install socat

# 重载shell以生效
source ~/.zshrc
# 验证安装
acme.sh -v
https://github.com/acmesh-official/acme.sh
v3.0.5
# 另外,acme.sh已经将默认CA设置为ZeroSSL,如果要用let's encrypt需要指定服务,
# ZeroSSL只支持http-01 dns-01,不支持tls-alpn-01
acme.sh --set-default-ca --server letsencrypt
# 默认使用443端口,如果要修改需要指定`--httpport 8443`
# 使用前记得停掉443上的进程,比如nps
acme.sh --issue -d aliyun.mydomain.tech --alpn
[Sat Dec 3 09:13:38 PM CST 2022] Your cert is in: /root/.acme.sh/aliyun.mydomain.tech/aliyun.mydomain.tech.cer
[Sat Dec 3 09:13:38 PM CST 2022] Your cert key is in: /root/.acme.sh/aliyun.mydomain.tech/aliyun.mydomain.tech.key
[Sat Dec 3 09:13:38 PM CST 2022] The intermediate CA cert is in: /root/.acme.sh/aliyun.mydomain.tech/ca.cer
[Sat Dec 3 09:13:38 PM CST 2022] And the full chain certs is there: /root/.acme.sh/aliyun.mydomain.tech/fullchain.cer
#申请成功后,查看已申请的证书信息
acme.sh --info -d aliyun.mydomain.tech

安装证书到nginx:

1
2
3
4
acme.sh --install-cert -d aliyun.mydomain.tech \
--key-file /etc/nginx/aliyun.mydomain.tech/key.pem \
--fullchain-file /etc/nginx/aliyun.mydomain.tech/cert.pem \
--reloadcmd "service nginx force-reload"

安装证书到syncthing

1
2
3
acme.sh --install-cert -d aliyun.mydomain.tech \
--key-file /root/.config/syncthing/https-key.pem \
--fullchain-file /root/.config/syncthing/https-cert.pem \

评论

Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×