一款好用开源的服务器探针监控面板+美化

前言

哪吒监控是一款功能强大的开源服务器运维监控面板,与ServerStatus探针相似,但更加轻量化。它支持监控多台服务器系统状态,并提供在线SSH、计划任务、备份脚本、服务重启等定期维护任务。而且,它可以实时监测服务器的各个硬件情况,并通过微信、邮件和Telegram等方式及时通知管理员发生故障的情况。虽然相比ServerStatus探针,哪吒监控的安装配置稍显复杂,但本文将为您提供详细的安装部署教程

哪吒监控官方文档地址:https://nezha.wiki/index.html

前言:哪吒监控分主控端和被控端,主控端就是提供访问的面板,被控端则是需要监控的服务器。

安装教程

准备工作:

  • 准备一个域名,用于提供面板访问,独立域名和二级域名皆可,如本站:monitor.nuoyo.cn和xintiao.nuoyo.cn,并解析到用来部署哪吒面板的服务器公网IP地址,同时该服务器需放行8008端口和5555端口或其它自定义端口。

其实只放行5555端口用作于主备服务器之间的心跳检测就可以,8008端口的话使用Nginx反向代理到域名就可以,所以不用放行。

  • 一个 Github 账号 或 Gitlab、Jihulab、Gitee账号,用于哪吒监控管理员账号。

一、获取 Github 的 Client ID 和密钥

1、登录 Github 账户后打开 https://github.com/settings/developers  、然后点击New OAuth App按钮,依次填写昵称,面板访问域名,回调地址;

回调地址:”http://你的域名/oauth2/callback” ,如果你没有配置域名反代,则需要在域名后面加上8008端口或其它自定义端口,如:”http://你的域名:8008

一款好用开源的服务器探针监控面板+美化

2、点击 “Register application”后保存下Client ID,然后点击 “Generate a new client secret“,创建一个新的 Client Secret,新建的密钥仅会显示一次,请妥善保存;

一款好用开源的服务器探针监控面板+美化

二、安装哪吒监控主控端

1、通过SSH工具登录到你要安装哪吒监控的服务器上,执行下列命令:

  • 在面板服务器中,运行安装脚本:

    curl -L -o nezha.sh && chmod +x nezha.sh && sudo ./nezha.sh

    如果你的面板服务器位于中国大陆,可以使用镜像:

    curl -L -o nezha.sh && chmod +x nezha.sh && sudo CN=true ./nezha.sh

    • 等待Docker安装完毕后,分别输入以下值:
      OAuth提供商 – Github,Gitlab,Jihulab,Gitee 中选择一个
      Client ID – 之前保存的 Client ID
      Client Secret – 之前保存的密钥
      用户名 – OAuth 提供商中的用户名
      站点标题 – 自定义站点标题
      访问端口 – 公开访问端口,可自定义,默认 8008
      Agent的通信端口 – Agent与Dashboard的通信端口,默认 5555
    • 输入完成后,等待拉取镜像
    • 将来如果需要再次运行脚本,可以运行:./nezha.sh

    三、反向代理

    打开宝塔,新建一个web,填入你的域名,然后点击反向代理

    一款好用开源的服务器探针监控面板+美化

    四、安装agent端

    1、进入到控制面板并登录管理账户,在设置里填写面板域名或IP地址,接着添加服务器,自定义被控端昵称和分组;然后复制相应的一键安装命令,被控端支持安装到Linux系统和windows系统服务器;

    一款好用开源的服务器探针监控面板+美化

    美化教程

    使用Default默认主题,将代码添加到自定义代码

    [reply]

    [zd-plane title=”美化样式1:“]

    <style>
    /* 屏幕适配 */
    @media only screen and (min-width: 1200px) {
    .ui.container {
    width: 80% !important;
    }
    }

    @media only screen and (max-width: 767px) {
    .ui.card>.content>.header:not(.ui), .ui.cards>.card>.content>.header:not(.ui) {
    margin-top: 0.4em !important;
    }
    }

    /* 整体图标 */
    i.icon {
    color: #000;
    width: 1.2em !important;
    }

    /* 背景图片 */
    body {
    content: ” ” !important;
    background: fixed !important;
    z-index: -1 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    background-position: top !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-image: url(https://cdn.nuoyo.cn/blog/monitor-bg1.jpg) !important;
    font-family: Arial,Helvetica,sans-serif !important;
    }

    /* 导航栏 */
    .ui.large.menu {
    border: 0 !important;
    border-radius: 0px !important;
    background-color: rgba(255, 255, 255, 55%) !important;
    }

    /* 首页按钮 */
    .ui.menu .active.item {
    background-color: transparent !important;
    }

    /* 导航栏下拉框 */
    .ui.dropdown .menu {
    border: 0 !important;
    border-radius: 0 !important;
    background-color: rgba(255, 255, 255, 80%) !important;
    }

    /* 登陆按钮 */
    .nezha-primary-btn {
    background-color: transparent !important;
    color: #000 !important;
    }

    /* 大卡片 */
    #app .ui.fluid.accordion {
    background-color: #fbfbfb26 !important;
    border-radius: 0.4rem !important;
    }

    /* 小卡片 */
    .ui.four.cards>.card {
    border-radius: 0.6rem !important;
    background-color: #fafafaa3 !important;
    }

    .status.cards .wide.column {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    height: 3.3rem !important;
    }

    .status.cards .three.wide.column {
    padding-right: 0rem !important;
    }

    .status.cards .wide.column:nth-child(1) {
    margin-top: 2rem !important;
    }

    .status.cards .wide.column:nth-child(2) {
    margin-top: 2rem !important;
    }

    .status.cards .description {
    padding-bottom: 0 !important;
    }

    /* 小鸡名 */
    .status.cards .flag {
    margin-right: 0.5rem !important;
    }

    /* 弹出卡片图标 */
    .status.cards .header > .info.icon {
    margin-right: 0 !important;
    }

    .nezha-secondary-font {
    color: #21ba45 !important;
    }

    /* 进度条 */
    .ui.progress {
    border-radius: 50rem !important;
    }
    .ui.progress .bar {
    min-width: 1.8em !important;
    border-radius: 15px !important;
    line-height: 1.65em !important;
    color:black
    }
    .ui.fine.progress> .bar {
    background-color: #ba45ac !important;
    }
    .ui.progress> .bar {
    background-color: #000 !important;
    }

    .ui.progress.fine .bar {
    background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);!important;
    }

    .ui.progress.warning .bar {
    background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%); !important;
    }

    .ui.progress.error .bar {
    background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);important;
    }

    .ui.progress.offline .bar {
    background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%); !important;
    }

    /* 上传下载 */
    .status.cards .outline.icon {
    margin-right: 1px !important;
    }

    i.arrow.alternate.circle.down.outline.icon {
    color: #21ba45 !important;
    }

    i.arrow.alternate.circle.up.outline.icon {
    color: red !important;
    }

    /* 弹出卡片小箭头 */
    .ui.right.center.popup {
    margin: -3px 0 0 0.914286em !important;
    -webkit-transform-origin: left 50% !important;
    transform-origin: left 50% !important;
    }

    .ui.bottom.left.popup {
    margin-left: 1px !important;
    margin-top: 3px !important;
    }

    .ui.top.left.popup {
    margin-left: 0 !important;
    margin-bottom: 10px !important;
    }

    .ui.top.right.popup {
    margin-right: 0 !important;
    margin-bottom: 8px !important;
    }

    .ui.left.center.popup {
    margin: -3px .91428571em 0 0 !important;
    -webkit-transform-origin: right 50% !important;
    transform-origin: right 50% !important;
    }

    .ui.right.center.popup:before,
    .ui.left.center.popup:before {
    border: 0px solid #fafafaeb !important;
    background: #fafafaeb !important;
    }
    .ui.top.popup:before {
    border-color: #fafafaeb transparent transparent !important;
    }

    .ui.popup:before {
    border-color: #fafafaeb transparent transparent !important;
    }

    .ui.bottom.left.popup:before {
    border-radius: 0 !important;
    border: 1px solid transparent !important;
    border-color: #fafafaeb transparent transparent !important;
    background: #fafafaeb !important;
    -webkit-box-shadow: 0px 0px 0 0 #fafafaeb !important;
    box-shadow: 0px 0px 0 0 #fafafaeb !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    }

    .ui.bottom.right.popup:before {
    border-radius: 0 !important;
    border: 1px solid transparent !important;
    border-color: #fafafaeb transparent transparent !important;
    background: #fafafaeb !important
    -webkit-box-shadow: 0px 0px 0 0 #fafafaeb !important;
    box-shadow: 0px 0px 0 0 #fafafaeb !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    }

    .ui.top.left.popup:before {
    border-radius: 0 !important;
    border: 1px solid transparent !important;
    border-color: #fafafaeb transparent transparent !important;
    background: #fafafaeb !important;
    -webkit-box-shadow: 0px 0px 0 0 #fafafaeb !important;
    box-shadow: 0px 0px 0 0 #fafafaeb !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    }

    .ui.top.right.popup:before {
    border-radius: 0 !important;
    border: 1px solid transparent !important;
    border-color: #fafafaeb transparent transparent !important;
    background: #fafafaeb !important;
    -webkit-box-shadow: 0px 0px 0 0 #fafafaeb !important;
    box-shadow: 0px 0px 0 0 #fafafaeb !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    }

    .ui.left.center.popup:before {
    border-radius: 0 !important;
    border: 1px solid transparent !important;
    border-color: #fafafaeb transparent transparent !important;
    background: #fafafaeb !important;
    -webkit-box-shadow: 0px 0px 0 0 #fafafaeb !important;
    box-shadow: 0px 0px 0 0 #fafafaeb !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    }

    /* 弹出卡片 */
    .status.cards .ui.content.popup {
    min-width: 20rem !important;
    line-height: 2rem !important;
    border-radius: 5px !important;
    border: 1px solid transparent !important;
    background-color: #fafafaeb !important;
    font-family: Arial,Helvetica,sans-serif !important;
    }

    .ui.content {
    margin: 0 !important;
    padding: 1em !important;
    }

    /* 服务页 */
    .ui.table {
    background: RGB(225,225,225,0.6) !important;
    }

    .ui.table thead th {
    background: transparent !important;
    }

    /* 服务页进度条 */

    /* 版权 */
    .ui.inverted.segment, .ui.primary.inverted.segment {
    color: #000 !important;
    font-weight: bold !important;
    background-color: #fafafaa3 !important;
    }
    </style>

    <script>
    window.onload = function(){
    var avatar=document.querySelector(“.item img”)
    var footer=document.querySelector(“div.is-size-7”)
    document.querySelector(“[rel=’shortcut icon’]”).href = “https://cdn.nuoyo.cn/blog/favicon.love.ico.ico”
    footer.innerHTML=”Copyright © 2023 诺言 All Rights Reserved.”
    footer.style.visibility=”visible”
    avatar.src=”https://q1.qlogo.cn/g?b=qq&nk=2469329338&s=640″
    avatar.style.visibility=”visible”
    }
    </script>

    [/zd-plane]

    [/reply]

    一款好用开源的服务器探针监控面板+美化

    [reply]

    [zd-plane title=”美化样式2″]

    <style>

    @font-face {
    font-family: Bold;
    src: url(“https://cdn.nuoyo.cn/ziti/bold.otf”);
    }
    /* 屏幕适配 */
    @media only screen and (min-width: 1200px) {
    .ui.container {
    width: 80% !important;
    }
    }

    @media only screen and (max-width: 767px) {
    .ui.card>.content>.header:not(.ui), .ui.cards>.card>.content>.header:not(.ui) {
    margin-top: 0.4em !important;
    }
    }

    /* 整体图标 */
    i.icon {
    color: #000;
    width: 1.2em !important;
    }

    /* 背景图片 */
    html{
    font-family: Bold;
    }
    body {
    content: ” ” !important;
    background: fixed !important;
    z-index: -1 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    background-position: top !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-image: url(https://cdn.nuoyo.cn/blog/monitor-bg2.jpg) !important;
    font-family: Bold !important;

    }

    /* 导航栏 */
    .ui.large.menu {
    border: 0 !important;
    border-radius: 0px !important;
    background-color: rgba(255, 255, 255, 55%) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    }

    /* 首页按钮 */
    .ui.menu .active.item {
    background-color: transparent !important;
    }

    /* 导航栏下拉框 */
    .ui.dropdown .menu {
    border: 0 !important;
    border-radius: 0 !important;
    background-color: rgba(255, 255, 255, 80%) !important;
    }

    /* 登陆按钮 */
    .nezha-primary-btn {
    background-color: transparent !important;
    color: #000 !important;
    }

    /* 大卡片 */
    #app .ui.fluid.accordion {
    background-color: #fbfbfb26 !important;
    border-radius: 1rem !important;
    }

    /* 小卡片 */
    .ui.four.cards>.card {
    border-radius: 1rem !important;
    background-color: #fafafa55 !important;
    border: 0 !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    }

    .status.cards .wide.column {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    height: 3.3rem !important;
    }

    .status.cards .three.wide.column {
    padding-right: 0rem !important;
    }

    .status.cards .wide.column:nth-child(1) {
    margin-top: 2rem !important;
    }

    .status.cards .wide.column:nth-child(2) {
    margin-top: 2rem !important;
    }

    .status.cards .description {
    padding-bottom: 0 !important;
    }

    /* 小鸡名 */
    .status.cards .flag {
    margin-right: 0.5rem !important;
    }

    /* 弹出卡片图标 */
    .status.cards .header > .info.icon {
    margin-right: 0 !important;
    }

    .nezha-secondary-font {
    color: #21ba45 !important;
    }

    /* 进度条 */
    .ui.progress {
    border-radius: 50rem !important;
    }

    .ui.progress .bar {
    min-width: 1.8em !important;
    border-radius: 15px !important;
    line-height: 1.65em !important;
    }

    .ui.fine.progress> .bar {
    background-color: #21ba45 !important;
    }

    .ui.progress> .bar {
    background-color: #000 !important;
    }

    .ui.progress.fine .bar {
    background-color: #21ba45 !important;
    }

    .ui.progress.warning .bar {
    background-color: #ff9800 !important;
    }

    .ui.progress.error .bar {
    background-color: #e41e10 !important;
    }

    .ui.progress.offline .bar {
    background-color: #000 !important;
    }

    /* 上传下载 */
    .status.cards .outline.icon {
    margin-right: 1px !important;
    }

    i.arrow.alternate.circle.down.outline.icon {
    color: #21ba45 !important;
    }

    i.arrow.alternate.circle.up.outline.icon {
    color: red !important;
    }

    /* 弹出卡片小箭头 */
    .ui.right.center.popup {
    margin: -3px 0 0 0.914286em !important;
    -webkit-transform-origin: left 50% !important;
    transform-origin: left 50% !important;

    }

    .ui.bottom.left.popup {
    margin-left: 1px !important;
    margin-top: 3px !important;
    }

    .ui.top.left.popup {
    margin-left: 0 !important;
    margin-bottom: 10px !important;
    }

    .ui.top.right.popup {
    margin-right: 0 !important;
    margin-bottom: 8px !important;
    }

    .ui.left.center.popup {
    margin: -3px .91428571em 0 0 !important;
    -webkit-transform-origin: right 50% !important;
    transform-origin: right 50% !important;
    }

    .ui.right.center.popup:before,
    .ui.left.center.popup:before {
    border: 0px solid #fafafaeb !important;
    background: #fafafaeb !important;
    }

    .ui.top.popup:before {
    border-color: #fafafaeb transparent transparent !important;
    }

    .ui.popup:before {
    border-color: #fafafaeb transparent transparent !important;
    }

    .ui.bottom.left.popup:before {
    border-radius: 0 !important;
    border: 1px solid transparent !important;
    border-color: #fafafaeb transparent transparent !important;
    background: #fafafaeb !important;
    -webkit-box-shadow: 0px 0px 0 0 #fafafaeb !important;
    box-shadow: 0px 0px 0 0 #fafafaeb !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    z-index:100;
    }

    .ui.bottom.right.popup:before {
    border-radius: 0 !important;
    border: 1px solid transparent !important;
    border-color: #fafafaeb transparent transparent !important;
    background: #fafafaeb !important
    -webkit-box-shadow: 0px 0px 0 0 #fafafaeb !important;
    box-shadow: 0px 0px 0 0 #fafafaeb !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    z-index:100;
    }

    .ui.top.left.popup:before {
    border-radius: 0 !important;
    border: 1px solid transparent !important;
    border-color: #fafafaeb transparent transparent !important;
    background: #fafafaeb !important;
    -webkit-box-shadow: 0px 0px 0 0 #fafafaeb !important;
    box-shadow: 0px 0px 0 0 #fafafaeb !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    z-index:100;
    }

    .ui.top.right.popup:before {
    border-radius: 0 !important;
    border: 1px solid transparent !important;
    border-color: #fafafaeb transparent transparent !important;
    background: #fafafaeb !important;
    -webkit-box-shadow: 0px 0px 0 0 #fafafaeb !important;
    box-shadow: 0px 0px 0 0 #fafafaeb !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    z-index:100;
    }

    .ui.left.center.popup:before {
    border-radius: 0 !important;
    border: 1px solid transparent !important;
    border-color: #fafafaeb transparent transparent !important;
    background: #fafafaeb !important;
    -webkit-box-shadow: 0px 0px 0 0 #fafafaeb !important;
    box-shadow: 0px 0px 0 0 #fafafaeb !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    z-index:100;
    }

    /* 弹出卡片 */
    .status.cards .ui.content.popup {
    min-width: 20rem !important;
    line-height: 2rem !important;
    border-radius: 10px !important;
    border: 1px solid transparent !important;
    background-color: #fafafaeb !important;
    font-family: Arial,Helvetica,sans-serif !important;
    z-index:100;
    }

    .ui.content {
    margin: 0 !important;
    padding: 1em !important;
    z-index:100;
    }

    /* 服务页 */
    .ui.table {
    background: RGB(225,225,225,0.6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1em;
    }

    .ui.table thead th {
    background: transparent !important;
    }

    /* 服务页进度条 */
    .service-status .good {
    background-color: #21ba45 !important;
    }

    .service-status .danger {
    background-color: red !important;
    }

    .service-status .warning {
    background-color: orange !important;
    }

    /* 版权 */
    .ui.inverted.segment, .ui.primary.inverted.segment {
    color: #000 !important;
    font-weight: bold !important;
    background-color: #fafafaa3 !important;
    }

    nezha-secondary-font info circle icon{
    z-index: 100;
    }
    </style>

    <!–Logo和版权–>
    <script>
    window.onload = function(){
    var avatar=document.querySelector(“.item img”)
    var footer=document.querySelector(“div.is-size-7″)
    footer.innerHTML=”诺言监控 www.nuoyo.cn”
    footer.style.visibility=”visible”
    avatar.src=”https://cdn.nuoyo.cn/blog/favicon.love.ico.ico”
    avatar.style.visibility=”visible”
    }
    </script>

    [/zd-plane]

    [/reply]

    一款好用开源的服务器探针监控面板+美化

    原创文章,作者:AIRF,如若转载,请注明出处:http://www.ai-rf.com/index.php/2023/07/12/%e4%b8%80%e6%ac%be%e5%a5%bd%e7%94%a8%e5%bc%80%e6%ba%90%e7%9a%84%e6%9c%8d%e5%8a%a1%e5%99%a8%e6%8e%a2%e9%92%88%e7%9b%91%e6%8e%a7%e9%9d%a2%e6%9d%bf%e7%be%8e%e5%8c%96/

    (0)
    AIRFAIRF
    上一篇 2023年7月8日
    下一篇 2023年7月12日

    相关推荐

    • 解除申诉失败爆红域名教程

      解除申诉失败爆红域名教程 如果你的域名红了 申请也不能恢复请进来 本次教程测试的是在腾讯云注册的域名(其他自己测试) 教程 1.打开微信搜《腾讯云助手》2.找到在线客服《域名问题》…

      芯片设计 2024年4月25日
    • 心情不好极度抑郁的文案

      1.分享情绪有什么用呢 人的悲欢并不相通 2.微信里有你就够了 偶尔能偷偷看看你就够了 至于你是不是我的 能不能拥有你在不在一起真的没那么重要了 3.我越安静、越忍让、越平和、越无…

      生活情感 2022年10月1日
    • 阿里云时隔一年再现大规模故障,云厂商宕机事故频发

      简介 2023年双十一刚刚落幕,阿里云故障导致阿里系App全线“崩”上热搜,涉及到阿里云盘、淘宝、咸鱼、钉钉、语雀等等产品。 问题原因 故障概况 时间线: 故障始于11月12日傍晚…

      2023年11月15日
    • 如何检查 Linux 服务器是否遭受 DDoS 攻击?

      1. 写在前面 DDoS(Distributed Denial-of-Service)攻击是最常见的服务器安全威胁之一,攻击频率和强度逐年稳步上升。本文主要介绍如何通过资源监控和及…

      芯片设计 2024年1月30日
    • Windows系统文件搜索神器:Listary Pro(带授权码)

      简介 如果你是一个喜欢追求高效率和流畅操作的人,如果你每天需要和 Windows 「资源管理器」打交道,肯定会觉得有时候文件搜索很慢效率很低。 几乎所有软件都会用到“文件浏览”对话…

      软件设计 2023年5月30日
    • 织梦 DeDeCMS转EyouCMS教程

      简介 织梦CMS是一款常用的内容管理系统,但随着市场竞争的加剧,很多用户开始考虑将其迁移到其他平台。 给大家展示转成功的图吧 织梦CMS转易优CMS数据转移步骤: 一、准备步骤 在…

      芯片设计 2023年8月31日
    • 使用VuePress搭建知识库并推送到GitHub Pages

      简介 突发奇想搭建一个知识库文档接口展示页面,看了很多最终选择了vuepress,展示 前期准备 1.安装nvm和nodejs可以看我之前这篇文章(我是用的宝塔面板中的nodejs…

      2023年12月17日
    • Navicat 16中文免授权附安装激活教程

      软件介绍 [c-alert type=”error”]博客所发布的一切文章仅限用于学习和研究目的,需24小时内删除,不得将以下内容用于商业或者非法用途[/c…

      软件设计 2023年8月15日
    • 备胎永远是备胎

      1.好男人都是备胎,因为太多女人,在失去之前,都不明白什么男人才是真正的好男人。 2.有时候,甘愿做备胎,不是因为太爱也不是太缺心眼。只是怀念当初那时下的自己,和找回自己那时候的心…

      生活情感 2022年9月26日
    • 探索与筑梦:人工智能射频设计平台

      连接智能与频谱的未来:为什么我们要创立这个人工智能射频设计平台 在当今科技爆炸的时代,有两个看似独立却正在发生剧烈碰撞的领域:人工智能(AI) 与 射频(RF)技术。 从智能手机到…

      Linux系统 2024年6月15日

    发表回复

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

    评论列表(0条)

    • 访客
      访客 2023年8月2日 下午11:40

      我看行

    • zowei
      zowei 2023年8月7日 下午2:37

      [f=xigua][f=tiaopi] 条评论 条评论

    • well
      well 2023年8月8日 下午7:54

      查看美化

    • 匿名
      匿名 2023年8月31日 下午10:09

      6584654看看吗

    • yuyu
      yuyu 2023年9月10日 上午11:42

      hhhhs[f=xiaoku]支

    • Security0468
      Security0468 2023年9月17日 上午2:42

      看看看看

    • hjx
      hjx 2023年9月22日 下午9:52

      你好

    • hjx
      hjx 2023年9月22日 下午9:54

      随便看看

    • 匿名
      匿名 2023年10月4日 下午9:58

      [f=se]好看

    • 匿名
      匿名 2023年10月5日 上午2:36

      真棒

    • 匿名
      匿名 2023年10月5日 上午10:02

      想看看

    • 匿名
      匿名 2023年10月5日 上午10:03

      想看一下

    • 匿名
      匿名 2023年10月5日 上午10:34

      看看吧

    • 匿名
      匿名 2023年10月5日 下午12:56

      看一看嘛

    • 匿名
      匿名 2023年10月6日 上午2:58

      看看

    • 匿名
      匿名 2023年10月9日 下午7:18

      除残去乱买上告下

    • 都市
      都市 2023年10月14日 下午11:47

      感谢分享

    • 匿名
      匿名 2023年10月17日 下午10:27
    • 1
      1 2023年10月18日 上午1:14

      不错

    • qixuiuya
      qixuiuya 2023年10月20日 下午9:03

      好看

    • 匿名
      匿名 2023年10月28日 上午11:33

      看着不错

    • 匿名
      匿名 2023年10月28日 上午11:33

      看着不错[f=xiaoku]

    • 都市
      都市 2023年10月28日 上午11:34

      感谢分享~~~

    • 可乐
      可乐 2023年11月19日 下午5:29

      感谢分享~~~

    • wwww
      wwww 2023年11月22日 下午2:17

      看看怎么样

    • 夏
      2023年11月30日 下午11:09

      看看

    • 11111
      11111 2023年12月27日 下午8:46

      11111

    • idawn
      idawn 2024年2月7日 上午6:26

      试试看怎么样

    • 1
      1 2024年9月4日 下午6:57

      1

    • lirul
      lirul 2024年10月21日 下午3:08

      1111

    • 30173993
      30173993 2024年10月29日 上午11:53

      111

    • 1
      1 2025年3月18日 上午2:46

      1

    • 545
      545 2025年6月27日 下午4:22

      4945