分类: 办公网络

42 篇文章

Zerotier一些常用的命令
1.安装 curl -s https://install.zerotier.com | sudo bash 2.加入网络 sudo zerotier-cli join <network_id> 3.查看状态 sudo zerotier-cli status zerotier-cli listnetworks 4.离开网络 sudo ze…
nps内网穿透常用操作
1.客户端和服务器端下载 Linux arm架构客户端 https://github.com/ehang-io/nps/releases/download/v0.26.10/linux_arm_v7_client.tar.gz Linux x86_64架构服务器端 https://github.com/ehang-io/nps/releases/d…
搭建的中国传统农历日历API
1.代码演示 curl -X 'POST' \ 'http://c2n.e-123.cn:8081/api/lunar' \ -H 'accept: application/json' \ -H 'Content-Type: application/json' \ -d '{ "year": 2024, "month": 4, "day": 23,…
如何翻译WordPress插件
1.检查插件配置文件是否加载语言翻译文件及路径(以simple-location插件为便) # 插件配置文件位置 index/wp-content/plugins/simple-location/simple-location.php # 加载翻译文件的代码 add_action( 'plugins_loaded', function() { lo…
电商Navicat常用SQL语句
1.Lazada销售订单/结算订单日期转换 =IFERROR(TEXT(DATEVALUE(I2),"YYYY-MM-DD")&" "&TEXT(TIME(HOUR(I2),MINUTE(I2),0),"hh:mm"),"") =IFERROR(TEXT(DATEVALUE(J2),"YYYY-MM-DD"),"") 为2024年的…
群晖NAS用Docker安装Opnewrt教程
1.首先开启网卡混杂模式 sudo ip link set eth0 promisc on 虚拟机搭建的黑群晖将eth0改成ovs_eth0 2.新建一个macnet网络 docker network create -d macvlan --subnet=192.168.1.0/24 --gateway=192.168.1.1 -o parent=…