FreeNodeloc机器小白入门操作指引

[details="积分兑换"]
  • -

    黄色标记替换成你的用户即可直达积分兑换页
    https://www.nodeloc.com/u/[background=yellow]lusky[/background]/exchange
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729912847-491713-image.png]

  • [/details]
    [details="FreeNodeloc开机"]

    - [访问FreeNodeloc进入开机面板](https://free.nodeloc.com/home)

    - 选择机器
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729913442-338159-image.png]

    - 点击Login to control panel进入机器控台
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729913587-424-image.png]

    - 然后开始配置机器

    1. 设置机器名
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729913795-373283-image.png]

    2. 设置时区
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729913835-892129-image.png]

    3. 设置系统
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729913862-944413-image.png]

    4. 设置登录机器方式这里有两种(密码/密钥)
    密钥:[需要提前生成这里以termius为例](https://www.nodeloc.com/d/13251/)
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729914391-309813-image.png]


    [hr][/hr]

    密码:是直接点”Install with Alpine Linux 3.15“安装之后发送机器密码信息到NL绑定的账户邮箱
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729914220-353469-image.png]

    5. 机器创建成功展示
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729914604-152734-image.png]

    6. 这里建议打开VNC,遇到机器本地ssh客户端连接不上可以快速的排查时本地的原因还是机器故障
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729914647-91419-image.png]
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729914740-818013-image.png]
    能显示login说机器就是一个正常的启动状态
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729914846-58418-image.png]

    [/details]
    [details="登录环境选择合适的SSH方式登录机器"]

    1. 方式一

    - 命令好登录参照开机邮件提供的账户密码机器信息
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729914220-353469-image.png]

    - 终端输入以下命令,正确输入后会提示让你输入[background=yellow]yes[/background],在输入机器密码
    `ssh -p 22 root@机器IP `
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729916875-512671-image.png]
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729917063-57959-image.png]

    2. 方式二

    - [访问在线webssh](https://ssh.hax.co.id/)输入对应机器信息
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729917444-220757-image.png]
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729917497-655478-image.png]

    [/details]
    [details="部署能看YouTube"]
    [details="配置端口映射"]

    要用几个就映射几个,只适用NAT最少配置两个,nginx,和直连个需要一个
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729919797-995384-image.png]

    [/details]

    [details="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 后面看自己需求,然后把生成的节点信息导入自己客户端中 ```
    [details="argo固定隧道"]

    [访问cloudflare](https://fscarmen.cloudflare.now.cc)生成totken
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729919312-989387-image.png]
    命令行输入获取到的token
    [upl-image-preview url=https://s.rmimg.com/2024-10-26/1729919555-873576-image.png]
    后面的内容就不方便展示了

    [/details]
    [/details]
    [/details]
    [details="访问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 ``` [/details]
    [details="访问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 ``` [/details]
    [details="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" } ``` [/details]

    https://www.nodeloc.com/d/13251/
    https://www.nodeloc.com/d/13213/
    https://www.nodeloc.com/d/11661/

    不错 不错 让论坛新人更容易接触:front_facing_baby_chick:

    好贴,整理的很清楚

    很不错哦,图文并茂,简单易懂。

    整理总结的不错哦 点个赞

    [[2],[2,40]]

    [[2,40],[2,34,40]]

    感谢大佬整理,新人求问获取能量只能通过发布帖子获得吗? 长期不不发布帖子会被清理吗?期限是多久呀?

    @“mir_xiong”#p149325

    后门渠道:还可以走后门去舔James的:foot:哈哈:ac01:

    正规渠道:https://www.nodeloc.com/d/12012

    @“lusky”#p149330 这是可以说的吗:ac10:

    需要1000能量哇,这能量来源有点慢呀。

    太棒了 感谢佬 小白福音 感谢大佬

    对我这个小白很有帮助,嘻嘻嘻