- #1
- 已编辑
积分兑换
黄色标记替换成你的用户即可直达积分兑换页
https://www.nodeloc.com/u/lusky/exchange
FreeNodeloc开机
- 点击Login to control panel进入机器控台
- 然后开始配置机器
4. 设置登录机器方式这里有两种(密码/密钥)
密钥:需要提前生成这里以termius为例
密码:是直接点”Install with Alpine Linux 3.15“安装之后发送机器密码信息到NL绑定的账户邮箱
6. 这里建议打开VNC,遇到机器本地ssh客户端连接不上可以快速的排查时本地的原因还是机器故障
能显示login说机器就是一个正常的启动状态
登录环境选择合适的SSH方式登录机器
部署能看YouTube
alpine系统部署
apk update
apk upgrade
apk add curl wget sudo bash
echo -e "nameserver 1.1.1.1\nnameserver 8.8.8.8\nnameserver 2606:4700:4700::1111\nnameserver 2001:4860:4860::8888" | sudo tee -a /etc/resolv.conf > /dev/null
#老王工具箱
wget -qO ssh_tool.sh https://raw.githubusercontent.com/eooce/ssh_tool/main/ssh_tool.sh && chmod +x ssh_tool.sh && ./ssh_tool.sh
# 选12>1>2>6 后面看自己需求,然后把生成的节点信息导入自己客户端中
argo固定隧道
访问cloudflare生成totken
命令行输入获取到的token
后面的内容就不方便展示了
访问GitHub针对v6机器
cat >> /etc/hosts << EOF
nameserver 2a00:1098:2b::1
nameserver 2a01:4f9:c010:3f02::1
nameserver 2a01:4f8:c2c:123f::1
nameserver 2a00:1098:2c::1
2a01:4f8:c010:d56::2 github.com
2a01:4f8:c010:d56::3 api.github.com
2a01:4f8:c010:d56::4 codeload.github.com
2a01:4f8:c010:d56::5 objects.githubusercontent.com
2a01:4f8:c010:d56::6 ghcr.io
2a01:4f8:c010:d56::7 pkg.github.com npm.pkg.github.com maven.pkg.github.com nuget.pkg.github.com rubygems.pkg.github.com
EOF
访问GitHub针对v4机器
cat >> /etc/hosts << EOF
nameserver 1.1.1.1
nameserver 8.8.8.8
nameserver 8.8.4.4
nameserver 2606:4700:4700::1111
nameserver 2001:4860:4860::8888
nameserver 2001:4860:4860::8844
EOF
dns流媒体解锁相关
- xrayr
{
"servers": [
"1.1.1.1",
"8.8.8.8",
"localhost",
{
"address": "alicednsIP",
"port": 53,
"domains": [
"geosite:openai"
]
}
],
"tag": "dns_inbound"
}
- singbox
{
"servers": [
{
"address": "localhost", // 本地 DNS 服务器
"port": 53, // 本地 DNS 端口
"domains": ["geosite:cn"] // 这里表示将本地解析优先用于中国域名
},
{
"address": "1.1.1.1",
"port": 53,
"domains": ["geosite:geolocation-!cn"] // 用于其他非中国域名的主解析服务器
}
],
"fallbacks": [
{
"address": "alicednsIP", // 备用 DNS 服务器
"port": 53 // 当前面服务器解析失败时,使用此服务器
}
],
"tag": "dns_inbound"
}
https://www.nodeloc.com/d/13251/
https://www.nodeloc.com/d/13213/
https://www.nodeloc.com/d/11661/