ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    nc测试UDP是否正常

    Jul 11, 20222 min read

    检测UDP端口是否正常

    检测系统的IP为:192.168.50.66 端口为:8888
    检测系统开启UDP的端口8888

    服务端:

    nc -ulp 8888
    

    客户端:

    nc -zvu 192.168.50.66 8888
    

    相关文章

    JavaScript匿名自执行函数的三种写法详解

    本文详细介绍了JavaScript中匿名自执行函数的三种写法:常规形式、立即调用函数表达式(IIFE)、使用逗号操作符以及通过eval函数实现。

    查看和修改青龙面板的用户名和密码

    该命令用于查看和修改青龙面板的用户名和密码。

    为什么页面中引入的静态资源文件没有更新呢?

    页面中引入的静态资源文件未更新可能是由于浏览器缓存,解决方法是在文件URL后添加随机数或版本号以强制浏览器重新加载。

    Curl2Post PRIVACY POLICY

    Curl2Post's Privacy Policy outlines how they collect, use, and share personal information from users of their services, including user-provided and automatically collected data, for service provision, communication, and security, with sharing limited to legal compliance or user consent, and provides user rights and policy update notifications.

    Flutter Dart特殊的 Mixins 写法

    Flutter Dart中使用特殊的Mixins写法,通过组合ElectricEngine和OilEngine到Tyre类中创建Car和Bus类,展示了如何通过混入增强原始类。